(1.1ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  DROP TABLE IF EXISTS "cclasses"
 (2.7ms)  CREATE TABLE "cclasses" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "code" varchar, "semester" varchar, "time" varchar, "subject_id" bigint NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.2ms)  CREATE INDEX "index_cclasses_on_subject_id" ON "cclasses" ("subject_id")
 (0.1ms)  DROP TABLE IF EXISTS "enrollments"
 (2.1ms)  CREATE TABLE "enrollments" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "cclass_id" bigint NOT NULL, "member_id" bigint NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.1ms)  CREATE INDEX "index_enrollments_on_cclass_id" ON "enrollments" ("cclass_id")
 (2.2ms)  CREATE INDEX "index_enrollments_on_member_id" ON "enrollments" ("member_id")
 (0.1ms)  DROP TABLE IF EXISTS "jwt_denylist"
 (2.4ms)  CREATE TABLE "jwt_denylist" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "jti" varchar NOT NULL, "exp" datetime(6) NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.8ms)  CREATE INDEX "index_jwt_denylist_on_jti" ON "jwt_denylist" ("jti")
 (0.1ms)  DROP TABLE IF EXISTS "likert_scale_answers"
 (2.3ms)  CREATE TABLE "likert_scale_answers" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "answer" integer, "likert_scale_question_id" bigint, "question_answer_id" bigint, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.3ms)  CREATE INDEX "index_likert_scale_answers_on_likert_scale_question_id" ON "likert_scale_answers" ("likert_scale_question_id")
 (2.2ms)  CREATE INDEX "index_likert_scale_answers_on_question_answer_id" ON "likert_scale_answers" ("question_answer_id")
 (0.1ms)  DROP TABLE IF EXISTS "likert_scale_questions"
 (2.7ms)  CREATE TABLE "likert_scale_questions" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "question" text, "question_number" integer, "scale_points" integer, "survey_question_id" bigint, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.7ms)  CREATE INDEX "index_likert_scale_questions_on_survey_question_id" ON "likert_scale_questions" ("survey_question_id")
 (0.1ms)  DROP TABLE IF EXISTS "members"
 (3.9ms)  CREATE TABLE "members" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar NOT NULL, "registration" varchar NOT NULL, "username" varchar NOT NULL, "degree" varchar NOT NULL, "course" varchar NOT NULL, "email" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "role_id" integer)
 (2.2ms)  CREATE UNIQUE INDEX "index_members_on_registration" ON "members" ("registration")
 (2.3ms)  CREATE INDEX "index_members_on_role_id" ON "members" ("role_id")
 (0.1ms)  DROP TABLE IF EXISTS "question_answers"
 (2.2ms)  CREATE TABLE "question_answers" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "answer" text, "survey_answer_id" bigint, "survey_question_id" bigint, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.0ms)  CREATE INDEX "index_question_answers_on_survey_answer_id" ON "question_answers" ("survey_answer_id")
 (2.1ms)  CREATE INDEX "index_question_answers_on_survey_question_id" ON "question_answers" ("survey_question_id")
 (0.1ms)  DROP TABLE IF EXISTS "question_options"
 (2.5ms)  CREATE TABLE "question_options" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "option_number" integer, "content" text, "survey_question_id" bigint, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.3ms)  CREATE INDEX "index_question_options_on_survey_question_id" ON "question_options" ("survey_question_id")
 (0.1ms)  DROP TABLE IF EXISTS "question_types"
 (2.4ms)  CREATE TABLE "question_types" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  DROP TABLE IF EXISTS "roles"
 (2.2ms)  CREATE TABLE "roles" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  DROP TABLE IF EXISTS "subjects"
 (2.2ms)  CREATE TABLE "subjects" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "code" varchar NOT NULL, "name" varchar NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.3ms)  CREATE UNIQUE INDEX "index_subjects_on_code" ON "subjects" ("code")
 (2.8ms)  CREATE UNIQUE INDEX "index_subjects_on_name" ON "subjects" ("name")
 (0.1ms)  DROP TABLE IF EXISTS "survey_answers"
 (2.3ms)  CREATE TABLE "survey_answers" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "survey_id" bigint NOT NULL, "member_id" bigint NOT NULL, "cclass_id" bigint NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.1ms)  CREATE INDEX "index_survey_answers_on_cclass_id" ON "survey_answers" ("cclass_id")
 (2.2ms)  CREATE INDEX "index_survey_answers_on_member_id" ON "survey_answers" ("member_id")
 (2.2ms)  CREATE INDEX "index_survey_answers_on_survey_id" ON "survey_answers" ("survey_id")
 (0.1ms)  DROP TABLE IF EXISTS "survey_questions"
 (2.6ms)  CREATE TABLE "survey_questions" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "question" text, "question_number" integer, "optional" boolean DEFAULT 0, "survey_id" bigint, "question_type_id" bigint, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (2.4ms)  CREATE INDEX "index_survey_questions_on_question_type_id" ON "survey_questions" ("question_type_id")
 (2.4ms)  CREATE INDEX "index_survey_questions_on_survey_id" ON "survey_questions" ("survey_id")
 (0.1ms)  DROP TABLE IF EXISTS "surveys"
 (2.2ms)  CREATE TABLE "surveys" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "description" text, "expiration_date" datetime(6), "semester" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "role_id" integer)
 (2.2ms)  CREATE INDEX "index_surveys_on_role_id" ON "surveys" ("role_id")
 (0.1ms)  DROP TABLE IF EXISTS "users"
 (2.3ms)  CREATE TABLE "users" ("id" integer PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar, "reset_password_sent_at" datetime(6), "remember_created_at" datetime(6), "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "member_id" integer)
 (2.3ms)  CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
 (2.3ms)  CREATE INDEX "index_users_on_member_id" ON "users" ("member_id")
 (2.4ms)  CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "acclasses" ("id" integer NOT NULL PRIMARY KEY, "code" varchar DEFAULT NULL, "semester" varchar DEFAULT NULL, "time" varchar DEFAULT NULL, "subject_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_acclasses_on_subject_id" ON "acclasses" ("subject_id")
 (0.1ms)  INSERT INTO "acclasses" ("id","code","semester","time","subject_id","created_at","updated_at")
                   SELECT "id","code","semester","time","subject_id","created_at","updated_at" FROM "cclasses"
 (0.2ms)  DROP TABLE "cclasses"
 (0.2ms)  CREATE TABLE "cclasses" ("id" integer NOT NULL PRIMARY KEY, "code" varchar DEFAULT NULL, "semester" varchar DEFAULT NULL, "time" varchar DEFAULT NULL, "subject_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_c3b5141fb1"

FOREIGN KEY (“subject_id”)

REFERENCES "subjects" ("id")

)

 (0.1ms)  CREATE INDEX "index_cclasses_on_subject_id" ON "cclasses" ("subject_id")
 (0.1ms)  INSERT INTO "cclasses" ("id","code","semester","time","subject_id","created_at","updated_at")
                   SELECT "id","code","semester","time","subject_id","created_at","updated_at" FROM "acclasses"
 (0.1ms)  DROP TABLE "acclasses"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "aenrollments" ("id" integer NOT NULL PRIMARY KEY, "cclass_id" integer NOT NULL, "member_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_aenrollments_on_member_id" ON "aenrollments" ("member_id")
 (0.1ms)  CREATE INDEX "tindex_aenrollments_on_cclass_id" ON "aenrollments" ("cclass_id")
 (0.1ms)  INSERT INTO "aenrollments" ("id","cclass_id","member_id","created_at","updated_at")
                   SELECT "id","cclass_id","member_id","created_at","updated_at" FROM "enrollments"
 (0.2ms)  DROP TABLE "enrollments"
 (0.1ms)  CREATE TABLE "enrollments" ("id" integer NOT NULL PRIMARY KEY, "cclass_id" integer NOT NULL, "member_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_9e19ce69ba"

FOREIGN KEY (“cclass_id”)

REFERENCES "cclasses" ("id")

)

 (0.1ms)  CREATE INDEX "index_enrollments_on_cclass_id" ON "enrollments" ("cclass_id")
 (0.1ms)  CREATE INDEX "index_enrollments_on_member_id" ON "enrollments" ("member_id")
 (0.1ms)  INSERT INTO "enrollments" ("id","cclass_id","member_id","created_at","updated_at")
                   SELECT "id","cclass_id","member_id","created_at","updated_at" FROM "aenrollments"
 (0.1ms)  DROP TABLE "aenrollments"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "aenrollments" ("id" integer NOT NULL PRIMARY KEY, "cclass_id" integer NOT NULL, "member_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_aenrollments_on_member_id" ON "aenrollments" ("member_id")
 (0.1ms)  CREATE INDEX "tindex_aenrollments_on_cclass_id" ON "aenrollments" ("cclass_id")
 (0.1ms)  INSERT INTO "aenrollments" ("id","cclass_id","member_id","created_at","updated_at")
                   SELECT "id","cclass_id","member_id","created_at","updated_at" FROM "enrollments"
 (0.2ms)  DROP TABLE "enrollments"
 (0.1ms)  CREATE TABLE "enrollments" ("id" integer NOT NULL PRIMARY KEY, "cclass_id" integer NOT NULL, "member_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_9e19ce69ba"

FOREIGN KEY (“cclass_id”)

REFERENCES "cclasses" ("id")

, CONSTRAINT “fk_rails_1e92348025” FOREIGN KEY (“member_id”)

REFERENCES "members" ("id")

)

 (0.1ms)  CREATE INDEX "index_enrollments_on_cclass_id" ON "enrollments" ("cclass_id")
 (0.3ms)  CREATE INDEX "index_enrollments_on_member_id" ON "enrollments" ("member_id")
 (0.1ms)  INSERT INTO "enrollments" ("id","cclass_id","member_id","created_at","updated_at")
                   SELECT "id","cclass_id","member_id","created_at","updated_at" FROM "aenrollments"
 (0.1ms)  DROP TABLE "aenrollments"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (2.3ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.1ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "alikert_scale_answers" ("id" integer NOT NULL PRIMARY KEY, "answer" integer DEFAULT NULL, "likert_scale_question_id" integer DEFAULT NULL, "question_answer_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_alikert_scale_answers_on_question_answer_id" ON "alikert_scale_answers" ("question_answer_id")
 (0.1ms)  CREATE INDEX "tindex_alikert_scale_answers_on_likert_scale_question_id" ON "alikert_scale_answers" ("likert_scale_question_id")
 (0.1ms)  INSERT INTO "alikert_scale_answers" ("id","answer","likert_scale_question_id","question_answer_id","created_at","updated_at")
                   SELECT "id","answer","likert_scale_question_id","question_answer_id","created_at","updated_at" FROM "likert_scale_answers"
 (0.2ms)  DROP TABLE "likert_scale_answers"
 (0.1ms)  CREATE TABLE "likert_scale_answers" ("id" integer NOT NULL PRIMARY KEY, "answer" integer DEFAULT NULL, "likert_scale_question_id" integer DEFAULT NULL, "question_answer_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_186c40fa84"

FOREIGN KEY (“likert_scale_question_id”)

REFERENCES "likert_scale_questions" ("id")

)

 (0.1ms)  CREATE INDEX "index_likert_scale_answers_on_likert_scale_question_id" ON "likert_scale_answers" ("likert_scale_question_id")
 (0.1ms)  CREATE INDEX "index_likert_scale_answers_on_question_answer_id" ON "likert_scale_answers" ("question_answer_id")
 (0.1ms)  INSERT INTO "likert_scale_answers" ("id","answer","likert_scale_question_id","question_answer_id","created_at","updated_at")
                   SELECT "id","answer","likert_scale_question_id","question_answer_id","created_at","updated_at" FROM "alikert_scale_answers"
 (0.1ms)  DROP TABLE "alikert_scale_answers"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (2.4ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "alikert_scale_answers" ("id" integer NOT NULL PRIMARY KEY, "answer" integer DEFAULT NULL, "likert_scale_question_id" integer DEFAULT NULL, "question_answer_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_alikert_scale_answers_on_question_answer_id" ON "alikert_scale_answers" ("question_answer_id")
 (0.1ms)  CREATE INDEX "tindex_alikert_scale_answers_on_likert_scale_question_id" ON "alikert_scale_answers" ("likert_scale_question_id")
 (0.1ms)  INSERT INTO "alikert_scale_answers" ("id","answer","likert_scale_question_id","question_answer_id","created_at","updated_at")
                   SELECT "id","answer","likert_scale_question_id","question_answer_id","created_at","updated_at" FROM "likert_scale_answers"
 (0.3ms)  DROP TABLE "likert_scale_answers"
 (0.1ms)  CREATE TABLE "likert_scale_answers" ("id" integer NOT NULL PRIMARY KEY, "answer" integer DEFAULT NULL, "likert_scale_question_id" integer DEFAULT NULL, "question_answer_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_186c40fa84"

FOREIGN KEY (“likert_scale_question_id”)

REFERENCES "likert_scale_questions" ("id")

, CONSTRAINT “fk_rails_701d140bb5” FOREIGN KEY (“question_answer_id”)

REFERENCES "question_answers" ("id")

)

 (0.1ms)  CREATE INDEX "index_likert_scale_answers_on_likert_scale_question_id" ON "likert_scale_answers" ("likert_scale_question_id")
 (0.1ms)  CREATE INDEX "index_likert_scale_answers_on_question_answer_id" ON "likert_scale_answers" ("question_answer_id")
 (0.1ms)  INSERT INTO "likert_scale_answers" ("id","answer","likert_scale_question_id","question_answer_id","created_at","updated_at")
                   SELECT "id","answer","likert_scale_question_id","question_answer_id","created_at","updated_at" FROM "alikert_scale_answers"
 (0.1ms)  DROP TABLE "alikert_scale_answers"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (2.0ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "alikert_scale_questions" ("id" integer NOT NULL PRIMARY KEY, "question" text DEFAULT NULL, "question_number" integer DEFAULT NULL, "scale_points" integer DEFAULT NULL, "survey_question_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_alikert_scale_questions_on_survey_question_id" ON "alikert_scale_questions" ("survey_question_id")
 (0.1ms)  INSERT INTO "alikert_scale_questions" ("id","question","question_number","scale_points","survey_question_id","created_at","updated_at")
                   SELECT "id","question","question_number","scale_points","survey_question_id","created_at","updated_at" FROM "likert_scale_questions"
 (0.2ms)  DROP TABLE "likert_scale_questions"
 (0.2ms)  CREATE TABLE "likert_scale_questions" ("id" integer NOT NULL PRIMARY KEY, "question" text DEFAULT NULL, "question_number" integer DEFAULT NULL, "scale_points" integer DEFAULT NULL, "survey_question_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_8e07bb7acd"

FOREIGN KEY (“survey_question_id”)

REFERENCES "survey_questions" ("id")

)

 (0.1ms)  CREATE INDEX "index_likert_scale_questions_on_survey_question_id" ON "likert_scale_questions" ("survey_question_id")
 (0.1ms)  INSERT INTO "likert_scale_questions" ("id","question","question_number","scale_points","survey_question_id","created_at","updated_at")
                   SELECT "id","question","question_number","scale_points","survey_question_id","created_at","updated_at" FROM "alikert_scale_questions"
 (0.1ms)  DROP TABLE "alikert_scale_questions"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "amembers" ("id" integer NOT NULL PRIMARY KEY, "name" varchar NOT NULL, "registration" varchar NOT NULL, "username" varchar NOT NULL, "degree" varchar NOT NULL, "course" varchar NOT NULL, "email" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "role_id" integer DEFAULT NULL)
 (0.1ms)  CREATE INDEX "tindex_amembers_on_role_id" ON "amembers" ("role_id")
 (0.1ms)  CREATE UNIQUE INDEX "tindex_amembers_on_registration" ON "amembers" ("registration")
 (0.1ms)  INSERT INTO "amembers" ("id","name","registration","username","degree","course","email","created_at","updated_at","role_id")
                   SELECT "id","name","registration","username","degree","course","email","created_at","updated_at","role_id" FROM "members"
 (0.2ms)  DROP TABLE "members"
 (0.1ms)  CREATE TABLE "members" ("id" integer NOT NULL PRIMARY KEY, "name" varchar NOT NULL, "registration" varchar NOT NULL, "username" varchar NOT NULL, "degree" varchar NOT NULL, "course" varchar NOT NULL, "email" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "role_id" integer DEFAULT NULL, CONSTRAINT "fk_rails_ba7343b1aa"

FOREIGN KEY (“role_id”)

REFERENCES "roles" ("id")

)

 (0.1ms)  CREATE UNIQUE INDEX "index_members_on_registration" ON "members" ("registration")
 (0.1ms)  CREATE INDEX "index_members_on_role_id" ON "members" ("role_id")
 (0.1ms)  INSERT INTO "members" ("id","name","registration","username","degree","course","email","created_at","updated_at","role_id")
                   SELECT "id","name","registration","username","degree","course","email","created_at","updated_at","role_id" FROM "amembers"
 (0.1ms)  DROP TABLE "amembers"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (2.1ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "aquestion_answers" ("id" integer NOT NULL PRIMARY KEY, "answer" text DEFAULT NULL, "survey_answer_id" integer DEFAULT NULL, "survey_question_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_aquestion_answers_on_survey_question_id" ON "aquestion_answers" ("survey_question_id")
 (0.1ms)  CREATE INDEX "tindex_aquestion_answers_on_survey_answer_id" ON "aquestion_answers" ("survey_answer_id")
 (0.1ms)  INSERT INTO "aquestion_answers" ("id","answer","survey_answer_id","survey_question_id","created_at","updated_at")
                   SELECT "id","answer","survey_answer_id","survey_question_id","created_at","updated_at" FROM "question_answers"
 (0.2ms)  DROP TABLE "question_answers"
 (0.4ms)  CREATE TABLE "question_answers" ("id" integer NOT NULL PRIMARY KEY, "answer" text DEFAULT NULL, "survey_answer_id" integer DEFAULT NULL, "survey_question_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_b2830903db"

FOREIGN KEY (“survey_answer_id”)

REFERENCES "survey_answers" ("id")

)

 (0.1ms)  CREATE INDEX "index_question_answers_on_survey_answer_id" ON "question_answers" ("survey_answer_id")
 (0.1ms)  CREATE INDEX "index_question_answers_on_survey_question_id" ON "question_answers" ("survey_question_id")
 (0.1ms)  INSERT INTO "question_answers" ("id","answer","survey_answer_id","survey_question_id","created_at","updated_at")
                   SELECT "id","answer","survey_answer_id","survey_question_id","created_at","updated_at" FROM "aquestion_answers"
 (0.1ms)  DROP TABLE "aquestion_answers"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "aquestion_answers" ("id" integer NOT NULL PRIMARY KEY, "answer" text DEFAULT NULL, "survey_answer_id" integer DEFAULT NULL, "survey_question_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_aquestion_answers_on_survey_question_id" ON "aquestion_answers" ("survey_question_id")
 (0.1ms)  CREATE INDEX "tindex_aquestion_answers_on_survey_answer_id" ON "aquestion_answers" ("survey_answer_id")
 (0.1ms)  INSERT INTO "aquestion_answers" ("id","answer","survey_answer_id","survey_question_id","created_at","updated_at")
                   SELECT "id","answer","survey_answer_id","survey_question_id","created_at","updated_at" FROM "question_answers"
 (0.2ms)  DROP TABLE "question_answers"
 (0.1ms)  CREATE TABLE "question_answers" ("id" integer NOT NULL PRIMARY KEY, "answer" text DEFAULT NULL, "survey_answer_id" integer DEFAULT NULL, "survey_question_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_b2830903db"

FOREIGN KEY (“survey_answer_id”)

REFERENCES "survey_answers" ("id")

, CONSTRAINT “fk_rails_6fe6ed5151” FOREIGN KEY (“survey_question_id”)

REFERENCES "survey_questions" ("id")

)

 (0.1ms)  CREATE INDEX "index_question_answers_on_survey_answer_id" ON "question_answers" ("survey_answer_id")
 (0.1ms)  CREATE INDEX "index_question_answers_on_survey_question_id" ON "question_answers" ("survey_question_id")
 (0.1ms)  INSERT INTO "question_answers" ("id","answer","survey_answer_id","survey_question_id","created_at","updated_at")
                   SELECT "id","answer","survey_answer_id","survey_question_id","created_at","updated_at" FROM "aquestion_answers"
 (0.1ms)  DROP TABLE "aquestion_answers"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  CREATE TEMPORARY TABLE "aquestion_options" ("id" integer NOT NULL PRIMARY KEY, "option_number" integer DEFAULT NULL, "content" text DEFAULT NULL, "survey_question_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_aquestion_options_on_survey_question_id" ON "aquestion_options" ("survey_question_id")
 (0.1ms)  INSERT INTO "aquestion_options" ("id","option_number","content","survey_question_id","created_at","updated_at")
                   SELECT "id","option_number","content","survey_question_id","created_at","updated_at" FROM "question_options"
 (0.2ms)  DROP TABLE "question_options"
 (0.1ms)  CREATE TABLE "question_options" ("id" integer NOT NULL PRIMARY KEY, "option_number" integer DEFAULT NULL, "content" text DEFAULT NULL, "survey_question_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_7f2d28fe1a"

FOREIGN KEY (“survey_question_id”)

REFERENCES "survey_questions" ("id")

)

 (0.1ms)  CREATE INDEX "index_question_options_on_survey_question_id" ON "question_options" ("survey_question_id")
 (0.1ms)  INSERT INTO "question_options" ("id","option_number","content","survey_question_id","created_at","updated_at")
                   SELECT "id","option_number","content","survey_question_id","created_at","updated_at" FROM "aquestion_options"
 (0.1ms)  DROP TABLE "aquestion_options"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (2.1ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "asurvey_answers" ("id" integer NOT NULL PRIMARY KEY, "survey_id" integer NOT NULL, "member_id" integer NOT NULL, "cclass_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_asurvey_answers_on_survey_id" ON "asurvey_answers" ("survey_id")
 (0.1ms)  CREATE INDEX "tindex_asurvey_answers_on_member_id" ON "asurvey_answers" ("member_id")
 (0.1ms)  CREATE INDEX "tindex_asurvey_answers_on_cclass_id" ON "asurvey_answers" ("cclass_id")
 (0.1ms)  INSERT INTO "asurvey_answers" ("id","survey_id","member_id","cclass_id","created_at","updated_at")
                   SELECT "id","survey_id","member_id","cclass_id","created_at","updated_at" FROM "survey_answers"
 (0.3ms)  DROP TABLE "survey_answers"
 (0.2ms)  CREATE TABLE "survey_answers" ("id" integer NOT NULL PRIMARY KEY, "survey_id" integer NOT NULL, "member_id" integer NOT NULL, "cclass_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_b856e9f8b7"

FOREIGN KEY (“cclass_id”)

REFERENCES "cclasses" ("id")

)

 (0.1ms)  CREATE INDEX "index_survey_answers_on_cclass_id" ON "survey_answers" ("cclass_id")
 (0.1ms)  CREATE INDEX "index_survey_answers_on_member_id" ON "survey_answers" ("member_id")
 (0.1ms)  CREATE INDEX "index_survey_answers_on_survey_id" ON "survey_answers" ("survey_id")
 (0.1ms)  INSERT INTO "survey_answers" ("id","survey_id","member_id","cclass_id","created_at","updated_at")
                   SELECT "id","survey_id","member_id","cclass_id","created_at","updated_at" FROM "asurvey_answers"
 (0.1ms)  DROP TABLE "asurvey_answers"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (2.4ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.1ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "asurvey_answers" ("id" integer NOT NULL PRIMARY KEY, "survey_id" integer NOT NULL, "member_id" integer NOT NULL, "cclass_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_asurvey_answers_on_survey_id" ON "asurvey_answers" ("survey_id")
 (0.1ms)  CREATE INDEX "tindex_asurvey_answers_on_member_id" ON "asurvey_answers" ("member_id")
 (0.1ms)  CREATE INDEX "tindex_asurvey_answers_on_cclass_id" ON "asurvey_answers" ("cclass_id")
 (0.1ms)  INSERT INTO "asurvey_answers" ("id","survey_id","member_id","cclass_id","created_at","updated_at")
                   SELECT "id","survey_id","member_id","cclass_id","created_at","updated_at" FROM "survey_answers"
 (0.2ms)  DROP TABLE "survey_answers"
 (0.1ms)  CREATE TABLE "survey_answers" ("id" integer NOT NULL PRIMARY KEY, "survey_id" integer NOT NULL, "member_id" integer NOT NULL, "cclass_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_b856e9f8b7"

FOREIGN KEY (“cclass_id”)

REFERENCES "cclasses" ("id")

, CONSTRAINT “fk_rails_48cc484704” FOREIGN KEY (“member_id”)

REFERENCES "members" ("id")

)

 (0.1ms)  CREATE INDEX "index_survey_answers_on_cclass_id" ON "survey_answers" ("cclass_id")
 (0.1ms)  CREATE INDEX "index_survey_answers_on_member_id" ON "survey_answers" ("member_id")
 (0.1ms)  CREATE INDEX "index_survey_answers_on_survey_id" ON "survey_answers" ("survey_id")
 (0.1ms)  INSERT INTO "survey_answers" ("id","survey_id","member_id","cclass_id","created_at","updated_at")
                   SELECT "id","survey_id","member_id","cclass_id","created_at","updated_at" FROM "asurvey_answers"
 (0.1ms)  DROP TABLE "asurvey_answers"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (2.0ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.1ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "asurvey_answers" ("id" integer NOT NULL PRIMARY KEY, "survey_id" integer NOT NULL, "member_id" integer NOT NULL, "cclass_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_asurvey_answers_on_survey_id" ON "asurvey_answers" ("survey_id")
 (0.1ms)  CREATE INDEX "tindex_asurvey_answers_on_member_id" ON "asurvey_answers" ("member_id")
 (0.1ms)  CREATE INDEX "tindex_asurvey_answers_on_cclass_id" ON "asurvey_answers" ("cclass_id")
 (0.1ms)  INSERT INTO "asurvey_answers" ("id","survey_id","member_id","cclass_id","created_at","updated_at")
                   SELECT "id","survey_id","member_id","cclass_id","created_at","updated_at" FROM "survey_answers"
 (0.2ms)  DROP TABLE "survey_answers"
 (0.1ms)  CREATE TABLE "survey_answers" ("id" integer NOT NULL PRIMARY KEY, "survey_id" integer NOT NULL, "member_id" integer NOT NULL, "cclass_id" integer NOT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_48cc484704"

FOREIGN KEY (“member_id”)

REFERENCES "members" ("id")

, CONSTRAINT “fk_rails_b856e9f8b7” FOREIGN KEY (“cclass_id”)

REFERENCES "cclasses" ("id")

, CONSTRAINT “fk_rails_3869acb601” FOREIGN KEY (“survey_id”)

REFERENCES "surveys" ("id")

)

 (0.1ms)  CREATE INDEX "index_survey_answers_on_cclass_id" ON "survey_answers" ("cclass_id")
 (0.1ms)  CREATE INDEX "index_survey_answers_on_member_id" ON "survey_answers" ("member_id")
 (0.1ms)  CREATE INDEX "index_survey_answers_on_survey_id" ON "survey_answers" ("survey_id")
 (0.1ms)  INSERT INTO "survey_answers" ("id","survey_id","member_id","cclass_id","created_at","updated_at")
                   SELECT "id","survey_id","member_id","cclass_id","created_at","updated_at" FROM "asurvey_answers"
 (0.1ms)  DROP TABLE "asurvey_answers"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "asurvey_questions" ("id" integer NOT NULL PRIMARY KEY, "question" text DEFAULT NULL, "question_number" integer DEFAULT NULL, "optional" boolean DEFAULT 0, "survey_id" integer DEFAULT NULL, "question_type_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_asurvey_questions_on_survey_id" ON "asurvey_questions" ("survey_id")
 (0.1ms)  CREATE INDEX "tindex_asurvey_questions_on_question_type_id" ON "asurvey_questions" ("question_type_id")
 (0.1ms)  INSERT INTO "asurvey_questions" ("id","question","question_number","optional","survey_id","question_type_id","created_at","updated_at")
                   SELECT "id","question","question_number","optional","survey_id","question_type_id","created_at","updated_at" FROM "survey_questions"
 (0.4ms)  DROP TABLE "survey_questions"
 (0.2ms)  CREATE TABLE "survey_questions" ("id" integer NOT NULL PRIMARY KEY, "question" text DEFAULT NULL, "question_number" integer DEFAULT NULL, "optional" boolean DEFAULT 0, "survey_id" integer DEFAULT NULL, "question_type_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_df5a3fdccc"

FOREIGN KEY (“question_type_id”)

REFERENCES "question_types" ("id")

)

 (0.1ms)  CREATE INDEX "index_survey_questions_on_question_type_id" ON "survey_questions" ("question_type_id")
 (0.2ms)  CREATE INDEX "index_survey_questions_on_survey_id" ON "survey_questions" ("survey_id")
 (0.1ms)  INSERT INTO "survey_questions" ("id","question","question_number","optional","survey_id","question_type_id","created_at","updated_at")
                   SELECT "id","question","question_number","optional","survey_id","question_type_id","created_at","updated_at" FROM "asurvey_questions"
 (0.1ms)  DROP TABLE "asurvey_questions"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "asurvey_questions" ("id" integer NOT NULL PRIMARY KEY, "question" text DEFAULT NULL, "question_number" integer DEFAULT NULL, "optional" boolean DEFAULT 0, "survey_id" integer DEFAULT NULL, "question_type_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
 (0.1ms)  CREATE INDEX "tindex_asurvey_questions_on_survey_id" ON "asurvey_questions" ("survey_id")
 (0.1ms)  CREATE INDEX "tindex_asurvey_questions_on_question_type_id" ON "asurvey_questions" ("question_type_id")
 (0.1ms)  INSERT INTO "asurvey_questions" ("id","question","question_number","optional","survey_id","question_type_id","created_at","updated_at")
                   SELECT "id","question","question_number","optional","survey_id","question_type_id","created_at","updated_at" FROM "survey_questions"
 (0.3ms)  DROP TABLE "survey_questions"
 (0.2ms)  CREATE TABLE "survey_questions" ("id" integer NOT NULL PRIMARY KEY, "question" text DEFAULT NULL, "question_number" integer DEFAULT NULL, "optional" boolean DEFAULT 0, "survey_id" integer DEFAULT NULL, "question_type_id" integer DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, CONSTRAINT "fk_rails_df5a3fdccc"

FOREIGN KEY (“question_type_id”)

REFERENCES "question_types" ("id")

, CONSTRAINT “fk_rails_d0558bfd89” FOREIGN KEY (“survey_id”)

REFERENCES "surveys" ("id")

)

 (0.1ms)  CREATE INDEX "index_survey_questions_on_question_type_id" ON "survey_questions" ("question_type_id")
 (0.1ms)  CREATE INDEX "index_survey_questions_on_survey_id" ON "survey_questions" ("survey_id")
 (0.1ms)  INSERT INTO "survey_questions" ("id","question","question_number","optional","survey_id","question_type_id","created_at","updated_at")
                   SELECT "id","question","question_number","optional","survey_id","question_type_id","created_at","updated_at" FROM "asurvey_questions"
 (0.1ms)  DROP TABLE "asurvey_questions"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (1.8ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.2ms)  CREATE TEMPORARY TABLE "asurveys" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "description" text DEFAULT NULL, "expiration_date" datetime(6) DEFAULT NULL, "semester" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "role_id" integer DEFAULT NULL)
 (0.1ms)  CREATE INDEX "tindex_asurveys_on_role_id" ON "asurveys" ("role_id")
 (0.1ms)  INSERT INTO "asurveys" ("id","name","description","expiration_date","semester","created_at","updated_at","role_id")
                   SELECT "id","name","description","expiration_date","semester","created_at","updated_at","role_id" FROM "surveys"
 (0.2ms)  DROP TABLE "surveys"
 (0.2ms)  CREATE TABLE "surveys" ("id" integer NOT NULL PRIMARY KEY, "name" varchar DEFAULT NULL, "description" text DEFAULT NULL, "expiration_date" datetime(6) DEFAULT NULL, "semester" varchar DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "role_id" integer DEFAULT NULL, CONSTRAINT "fk_rails_89f607bc8f"

FOREIGN KEY (“role_id”)

REFERENCES "roles" ("id")

)

 (0.1ms)  CREATE INDEX "index_surveys_on_role_id" ON "surveys" ("role_id")
 (0.1ms)  INSERT INTO "surveys" ("id","name","description","expiration_date","semester","created_at","updated_at","role_id")
                   SELECT "id","name","description","expiration_date","semester","created_at","updated_at","role_id" FROM "asurveys"
 (0.1ms)  DROP TABLE "asurveys"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction
 (0.0ms)  PRAGMA foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys
 (0.0ms)  PRAGMA defer_foreign_keys = ON
 (0.0ms)  PRAGMA foreign_keys = OFF
 (0.1ms)  CREATE TEMPORARY TABLE "ausers" ("id" integer NOT NULL PRIMARY KEY, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar DEFAULT NULL, "reset_password_sent_at" datetime(6) DEFAULT NULL, "remember_created_at" datetime(6) DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "member_id" integer DEFAULT NULL)
 (0.1ms)  CREATE UNIQUE INDEX "tindex_ausers_on_reset_password_token" ON "ausers" ("reset_password_token")
 (0.1ms)  CREATE INDEX "tindex_ausers_on_member_id" ON "ausers" ("member_id")
 (0.1ms)  CREATE UNIQUE INDEX "tindex_ausers_on_email" ON "ausers" ("email")
 (0.1ms)  INSERT INTO "ausers" ("id","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","created_at","updated_at","member_id")
                   SELECT "id","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","created_at","updated_at","member_id" FROM "users"
 (0.3ms)  DROP TABLE "users"
 (0.2ms)  CREATE TABLE "users" ("id" integer NOT NULL PRIMARY KEY, "email" varchar DEFAULT '' NOT NULL, "encrypted_password" varchar DEFAULT '' NOT NULL, "reset_password_token" varchar DEFAULT NULL, "reset_password_sent_at" datetime(6) DEFAULT NULL, "remember_created_at" datetime(6) DEFAULT NULL, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL, "member_id" integer DEFAULT NULL, CONSTRAINT "fk_rails_172a24c10d"

FOREIGN KEY (“member_id”)

REFERENCES "members" ("id")

)

 (0.2ms)  CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
 (0.1ms)  CREATE INDEX "index_users_on_member_id" ON "users" ("member_id")
 (0.1ms)  CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
 (0.1ms)  INSERT INTO "users" ("id","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","created_at","updated_at","member_id")
                   SELECT "id","email","encrypted_password","reset_password_token","reset_password_sent_at","remember_created_at","created_at","updated_at","member_id" FROM "ausers"
 (0.1ms)  DROP TABLE "ausers"
 (0.0ms)  PRAGMA defer_foreign_keys = 0
 (0.0ms)  PRAGMA foreign_keys = 1
TRANSACTION (2.0ms)  commit transaction
 (2.4ms)  CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.1ms)  INSERT INTO "schema_migrations" (version) VALUES (20220710144002)
 (2.1ms)  INSERT INTO "schema_migrations" (version) VALUES

(20220323215116), (20220323215131), (20220410195542), (20220410224827), (20220410232452), (20220410235739), (20220411022317), (20220419232602), (20220419232814), (20220419232815), (20220419232816), (20220419233026), (20220419233135), (20220615141718), (20220615142129), (20220615142242), (20220710143538);



 (2.3ms)  CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime(6) NOT NULL, "updated_at" datetime(6) NOT NULL)
ActiveRecord::InternalMetadata Load (0.3ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "environment"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
ActiveRecord::InternalMetadata Create (0.2ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["key", "environment"], ["value", "test"], ["created_at", "2023-01-18 00:40:22.879683"], ["updated_at", "2023-01-18 00:40:22.879683"]]
TRANSACTION (1.9ms)  commit transaction
ActiveRecord::InternalMetadata Load (0.1ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "environment"], ["LIMIT", 1]]
ActiveRecord::InternalMetadata Load (0.1ms)  SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
ActiveRecord::InternalMetadata Create (0.2ms)  INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["key", "schema_sha1"], ["value", "d595b256e4b5d99eeeca0814ec9c482b6f62784e"], ["created_at", "2023-01-18 00:40:22.885537"], ["updated_at", "2023-01-18 00:40:22.885537"]]
TRANSACTION (1.8ms)  commit transaction
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:41:22.242379"], ["updated_at", "2023-01-18 00:41:22.242379"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-01-18 00:41:22.255679"], ["updated_at", "2023-01-18 00:41:22.255679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-01-18 00:41:22.261170"], ["updated_at", "2023-01-18 00:41:22.261170"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 1], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:41:22.270460"], ["updated_at", "2023-01-18 00:41:22.270460"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:41:22.276976"], ["updated_at", "2023-01-18 00:41:22.276976"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 1], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-01-18 00:41:22.280174"], ["updated_at", "2023-01-18 00:41:22.280174"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:41:22.282467"], ["updated_at", "2023-01-18 00:41:22.282467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 50ms (Views: 0.2ms | ActiveRecord: 4.5ms | Allocations: 28608)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 5764)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:41:22.314686"], ["updated_at", "2023-01-18 00:41:22.314686"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:41:22.316100"], ["updated_at", "2023-01-18 00:41:22.316100"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:41:22.318794"], ["updated_at", "2023-01-18 00:41:22.318794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:41:22.319966"], ["updated_at", "2023-01-18 00:41:22.319966"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:41:22.322551"], ["updated_at", "2023-01-18 00:41:22.322551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:41:22.323681"], ["updated_at", "2023-01-18 00:41:22.323681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:41:22.325780"], ["updated_at", "2023-01-18 00:41:22.325780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:41:22.327152"], ["updated_at", "2023-01-18 00:41:22.327152"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:41:22.328609"], ["updated_at", "2023-01-18 00:41:22.328609"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:41:22.329878"], ["updated_at", "2023-01-18 00:41:22.329878"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:41:22.331407"], ["updated_at", "2023-01-18 00:41:22.331407"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:41:22.332685"], ["updated_at", "2023-01-18 00:41:22.332685"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:41:22.334031"], ["updated_at", "2023-01-18 00:41:22.334031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:41:22.335204"], ["updated_at", "2023-01-18 00:41:22.335204"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:41:22.336495"], ["updated_at", "2023-01-18 00:41:22.336495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:41:22.337655"], ["updated_at", "2023-01-18 00:41:22.337655"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:41:22.339045"], ["updated_at", "2023-01-18 00:41:22.339045"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:41:22.340239"], ["updated_at", "2023-01-18 00:41:22.340239"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:41:22.341573"], ["updated_at", "2023-01-18 00:41:22.341573"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:41:22.342793"], ["updated_at", "2023-01-18 00:41:22.342793"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:41:22.344097"], ["updated_at", "2023-01-18 00:41:22.344097"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:41:22.345250"], ["updated_at", "2023-01-18 00:41:22.345250"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:41:22.346586"], ["updated_at", "2023-01-18 00:41:22.346586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:41:22.347908"], ["updated_at", "2023-01-18 00:41:22.347908"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:41:22.349281"], ["updated_at", "2023-01-18 00:41:22.349281"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:41:22.350466"], ["updated_at", "2023-01-18 00:41:22.350466"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:41:22.351767"], ["updated_at", "2023-01-18 00:41:22.351767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:41:22.352924"], ["updated_at", "2023-01-18 00:41:22.352924"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:41:22.354245"], ["updated_at", "2023-01-18 00:41:22.354245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:41:22.355403"], ["updated_at", "2023-01-18 00:41:22.355403"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:41:22.356724"], ["updated_at", "2023-01-18 00:41:22.356724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:41:22.357892"], ["updated_at", "2023-01-18 00:41:22.357892"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:41:22.359183"], ["updated_at", "2023-01-18 00:41:22.359183"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:41:22.360321"], ["updated_at", "2023-01-18 00:41:22.360321"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:41:22.361652"], ["updated_at", "2023-01-18 00:41:22.361652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:41:22.362826"], ["updated_at", "2023-01-18 00:41:22.362826"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:41:22.364272"], ["updated_at", "2023-01-18 00:41:22.364272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:41:22.365505"], ["updated_at", "2023-01-18 00:41:22.365505"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:41:22.366876"], ["updated_at", "2023-01-18 00:41:22.366876"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:41:22.368024"], ["updated_at", "2023-01-18 00:41:22.368024"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:41:22.369349"], ["updated_at", "2023-01-18 00:41:22.369349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:41:22.370532"], ["updated_at", "2023-01-18 00:41:22.370532"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:41:22.371864"], ["updated_at", "2023-01-18 00:41:22.371864"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:41:22.372993"], ["updated_at", "2023-01-18 00:41:22.372993"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:41:22.374306"], ["updated_at", "2023-01-18 00:41:22.374306"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:41:22.375478"], ["updated_at", "2023-01-18 00:41:22.375478"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:41:22.376798"], ["updated_at", "2023-01-18 00:41:22.376798"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:41:22.377952"], ["updated_at", "2023-01-18 00:41:22.377952"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:41:22.379300"], ["updated_at", "2023-01-18 00:41:22.379300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:41:22.380550"], ["updated_at", "2023-01-18 00:41:22.380550"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:41:22.381991"], ["updated_at", "2023-01-18 00:41:22.381991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:41:22.383166"], ["updated_at", "2023-01-18 00:41:22.383166"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:41:22.384511"], ["updated_at", "2023-01-18 00:41:22.384511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:41:22.385649"], ["updated_at", "2023-01-18 00:41:22.385649"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:41:22.387034"], ["updated_at", "2023-01-18 00:41:22.387034"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:41:22.388180"], ["updated_at", "2023-01-18 00:41:22.388180"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:41:22.389484"], ["updated_at", "2023-01-18 00:41:22.389484"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:41:22.390635"], ["updated_at", "2023-01-18 00:41:22.390635"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:41:22.391968"], ["updated_at", "2023-01-18 00:41:22.391968"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:41:22.393116"], ["updated_at", "2023-01-18 00:41:22.393116"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:41:22.394452"], ["updated_at", "2023-01-18 00:41:22.394452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:41:22.395638"], ["updated_at", "2023-01-18 00:41:22.395638"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:41:22.397023"], ["updated_at", "2023-01-18 00:41:22.397023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:41:22.398333"], ["updated_at", "2023-01-18 00:41:22.398333"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:41:22.399702"], ["updated_at", "2023-01-18 00:41:22.399702"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:41:22.400858"], ["updated_at", "2023-01-18 00:41:22.400858"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:41:22.402222"], ["updated_at", "2023-01-18 00:41:22.402222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:41:22.403379"], ["updated_at", "2023-01-18 00:41:22.403379"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:41:22.404681"], ["updated_at", "2023-01-18 00:41:22.404681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:41:22.405867"], ["updated_at", "2023-01-18 00:41:22.405867"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:41:22.407216"], ["updated_at", "2023-01-18 00:41:22.407216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:41:22.408358"], ["updated_at", "2023-01-18 00:41:22.408358"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:41:22.409705"], ["updated_at", "2023-01-18 00:41:22.409705"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:41:22.410869"], ["updated_at", "2023-01-18 00:41:22.410869"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:41:22.412215"], ["updated_at", "2023-01-18 00:41:22.412215"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:41:22.413444"], ["updated_at", "2023-01-18 00:41:22.413444"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:41:22.414911"], ["updated_at", "2023-01-18 00:41:22.414911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:41:22.416086"], ["updated_at", "2023-01-18 00:41:22.416086"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:41:22.417412"], ["updated_at", "2023-01-18 00:41:22.417412"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:41:22.418588"], ["updated_at", "2023-01-18 00:41:22.418588"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:41:22.419914"], ["updated_at", "2023-01-18 00:41:22.419914"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:41:22.421084"], ["updated_at", "2023-01-18 00:41:22.421084"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:41:22.422408"], ["updated_at", "2023-01-18 00:41:22.422408"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:41:22.423540"], ["updated_at", "2023-01-18 00:41:22.423540"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:41:22.424888"], ["updated_at", "2023-01-18 00:41:22.424888"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:41:22.426237"], ["updated_at", "2023-01-18 00:41:22.426237"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:41:22.427685"], ["updated_at", "2023-01-18 00:41:22.427685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:41:22.428886"], ["updated_at", "2023-01-18 00:41:22.428886"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:41:22.430713"], ["updated_at", "2023-01-18 00:41:22.430713"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:41:22.432142"], ["updated_at", "2023-01-18 00:41:22.432142"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:41:22.433537"], ["updated_at", "2023-01-18 00:41:22.433537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:41:22.434756"], ["updated_at", "2023-01-18 00:41:22.434756"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:41:22.436137"], ["updated_at", "2023-01-18 00:41:22.436137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:41:22.437279"], ["updated_at", "2023-01-18 00:41:22.437279"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:41:22.438631"], ["updated_at", "2023-01-18 00:41:22.438631"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:41:22.439771"], ["updated_at", "2023-01-18 00:41:22.439771"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:41:22.441111"], ["updated_at", "2023-01-18 00:41:22.441111"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:41:22.442538"], ["updated_at", "2023-01-18 00:41:22.442538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:41:22.446617"], ["updated_at", "2023-01-18 00:41:22.446617"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:41:22.448267"], ["updated_at", "2023-01-18 00:41:22.448267"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:41:22.449596"], ["updated_at", "2023-01-18 00:41:22.449596"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:22.486708"], ["updated_at", "2023-01-18 00:41:22.486708"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:22.488342"], ["updated_at", "2023-01-18 00:41:22.488342"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:22.489377"], ["updated_at", "2023-01-18 00:41:22.489377"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.490268"], ["updated_at", "2023-01-18 00:41:22.490268"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.491073"], ["updated_at", "2023-01-18 00:41:22.491073"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.491797"], ["updated_at", "2023-01-18 00:41:22.491797"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.492497"], ["updated_at", "2023-01-18 00:41:22.492497"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.493166"], ["updated_at", "2023-01-18 00:41:22.493166"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:22.493907"], ["updated_at", "2023-01-18 00:41:22.493907"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.494743"], ["updated_at", "2023-01-18 00:41:22.494743"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.495613"], ["updated_at", "2023-01-18 00:41:22.495613"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.496350"], ["updated_at", "2023-01-18 00:41:22.496350"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.497482"], ["updated_at", "2023-01-18 00:41:22.497482"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.498482"], ["updated_at", "2023-01-18 00:41:22.498482"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.499253"], ["updated_at", "2023-01-18 00:41:22.499253"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.499963"], ["updated_at", "2023-01-18 00:41:22.499963"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.500741"], ["updated_at", "2023-01-18 00:41:22.500741"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.501462"], ["updated_at", "2023-01-18 00:41:22.501462"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.502205"], ["updated_at", "2023-01-18 00:41:22.502205"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.502910"], ["updated_at", "2023-01-18 00:41:22.502910"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.503653"], ["updated_at", "2023-01-18 00:41:22.503653"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:22.515194"], ["updated_at", "2023-01-18 00:41:22.515194"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:22.516407"], ["updated_at", "2023-01-18 00:41:22.516407"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:22.517326"], ["updated_at", "2023-01-18 00:41:22.517326"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:22.518162"], ["updated_at", "2023-01-18 00:41:22.518162"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:22.518917"], ["updated_at", "2023-01-18 00:41:22.518917"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:22.519629"], ["updated_at", "2023-01-18 00:41:22.519629"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:22.520282"], ["updated_at", "2023-01-18 00:41:22.520282"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:22.520978"], ["updated_at", "2023-01-18 00:41:22.520978"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:22.521736"], ["updated_at", "2023-01-18 00:41:22.521736"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.522621"], ["updated_at", "2023-01-18 00:41:22.522621"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.523383"], ["updated_at", "2023-01-18 00:41:22.523383"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.524128"], ["updated_at", "2023-01-18 00:41:22.524128"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.524876"], ["updated_at", "2023-01-18 00:41:22.524876"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.525646"], ["updated_at", "2023-01-18 00:41:22.525646"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.526343"], ["updated_at", "2023-01-18 00:41:22.526343"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.527082"], ["updated_at", "2023-01-18 00:41:22.527082"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.527788"], ["updated_at", "2023-01-18 00:41:22.527788"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.528523"], ["updated_at", "2023-01-18 00:41:22.528523"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.529235"], ["updated_at", "2023-01-18 00:41:22.529235"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.530291"], ["updated_at", "2023-01-18 00:41:22.530291"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.531219"], ["updated_at", "2023-01-18 00:41:22.531219"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:22.561870"], ["updated_at", "2023-01-18 00:41:22.561870"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:22.562981"], ["updated_at", "2023-01-18 00:41:22.562981"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.564119"], ["updated_at", "2023-01-18 00:41:22.564119"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.564898"], ["updated_at", "2023-01-18 00:41:22.564898"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.565726"], ["updated_at", "2023-01-18 00:41:22.565726"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.566553"], ["updated_at", "2023-01-18 00:41:22.566553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.567290"], ["updated_at", "2023-01-18 00:41:22.567290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.567955"], ["updated_at", "2023-01-18 00:41:22.567955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.568650"], ["updated_at", "2023-01-18 00:41:22.568650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.569325"], ["updated_at", "2023-01-18 00:41:22.569325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.570009"], ["updated_at", "2023-01-18 00:41:22.570009"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.570735"], ["updated_at", "2023-01-18 00:41:22.570735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.571407"], ["updated_at", "2023-01-18 00:41:22.571407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.572104"], ["updated_at", "2023-01-18 00:41:22.572104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.572916"], ["updated_at", "2023-01-18 00:41:22.572916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.573648"], ["updated_at", "2023-01-18 00:41:22.573648"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:22.589265"], ["updated_at", "2023-01-18 00:41:22.589265"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:22.590251"], ["updated_at", "2023-01-18 00:41:22.590251"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.591009"], ["updated_at", "2023-01-18 00:41:22.591009"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.591706"], ["updated_at", "2023-01-18 00:41:22.591706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.592464"], ["updated_at", "2023-01-18 00:41:22.592464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.593238"], ["updated_at", "2023-01-18 00:41:22.593238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.593957"], ["updated_at", "2023-01-18 00:41:22.593957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.594660"], ["updated_at", "2023-01-18 00:41:22.594660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.595359"], ["updated_at", "2023-01-18 00:41:22.595359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.596108"], ["updated_at", "2023-01-18 00:41:22.596108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.597054"], ["updated_at", "2023-01-18 00:41:22.597054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.598121"], ["updated_at", "2023-01-18 00:41:22.598121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.599043"], ["updated_at", "2023-01-18 00:41:22.599043"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.599922"], ["updated_at", "2023-01-18 00:41:22.599922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.600781"], ["updated_at", "2023-01-18 00:41:22.600781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.601560"], ["updated_at", "2023-01-18 00:41:22.601560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:22.617903"], ["updated_at", "2023-01-18 00:41:22.617903"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:22.618863"], ["updated_at", "2023-01-18 00:41:22.618863"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.619575"], ["updated_at", "2023-01-18 00:41:22.619575"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.620299"], ["updated_at", "2023-01-18 00:41:22.620299"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.621045"], ["updated_at", "2023-01-18 00:41:22.621045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.621804"], ["updated_at", "2023-01-18 00:41:22.621804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.622490"], ["updated_at", "2023-01-18 00:41:22.622490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.623194"], ["updated_at", "2023-01-18 00:41:22.623194"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.623906"], ["updated_at", "2023-01-18 00:41:22.623906"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.624586"], ["updated_at", "2023-01-18 00:41:22.624586"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.625312"], ["updated_at", "2023-01-18 00:41:22.625312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.626098"], ["updated_at", "2023-01-18 00:41:22.626098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.626842"], ["updated_at", "2023-01-18 00:41:22.626842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.627563"], ["updated_at", "2023-01-18 00:41:22.627563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.628235"], ["updated_at", "2023-01-18 00:41:22.628235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.628901"], ["updated_at", "2023-01-18 00:41:22.628901"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:22.644719"], ["updated_at", "2023-01-18 00:41:22.644719"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:22.645738"], ["updated_at", "2023-01-18 00:41:22.645738"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.646732"], ["updated_at", "2023-01-18 00:41:22.646732"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.647746"], ["updated_at", "2023-01-18 00:41:22.647746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.648646"], ["updated_at", "2023-01-18 00:41:22.648646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.649416"], ["updated_at", "2023-01-18 00:41:22.649416"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.650184"], ["updated_at", "2023-01-18 00:41:22.650184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.650913"], ["updated_at", "2023-01-18 00:41:22.650913"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.651633"], ["updated_at", "2023-01-18 00:41:22.651633"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.652326"], ["updated_at", "2023-01-18 00:41:22.652326"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.653013"], ["updated_at", "2023-01-18 00:41:22.653013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.653743"], ["updated_at", "2023-01-18 00:41:22.653743"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.654429"], ["updated_at", "2023-01-18 00:41:22.654429"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.655107"], ["updated_at", "2023-01-18 00:41:22.655107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.655818"], ["updated_at", "2023-01-18 00:41:22.655818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:22.656517"], ["updated_at", "2023-01-18 00:41:22.656517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:22.672083"], ["updated_at", "2023-01-18 00:41:22.672083"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:22.673036"], ["updated_at", "2023-01-18 00:41:22.673036"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.673828"], ["updated_at", "2023-01-18 00:41:22.673828"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.674605"], ["updated_at", "2023-01-18 00:41:22.674605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.675353"], ["updated_at", "2023-01-18 00:41:22.675353"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.676058"], ["updated_at", "2023-01-18 00:41:22.676058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.676761"], ["updated_at", "2023-01-18 00:41:22.676761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.677456"], ["updated_at", "2023-01-18 00:41:22.677456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.678258"], ["updated_at", "2023-01-18 00:41:22.678258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.679011"], ["updated_at", "2023-01-18 00:41:22.679011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.679915"], ["updated_at", "2023-01-18 00:41:22.679915"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.680838"], ["updated_at", "2023-01-18 00:41:22.680838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.681595"], ["updated_at", "2023-01-18 00:41:22.681595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.682332"], ["updated_at", "2023-01-18 00:41:22.682332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.683019"], ["updated_at", "2023-01-18 00:41:22.683019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:22.683689"], ["updated_at", "2023-01-18 00:41:22.683689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:22.699008"], ["updated_at", "2023-01-18 00:41:22.699008"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:22.699948"], ["updated_at", "2023-01-18 00:41:22.699948"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.700707"], ["updated_at", "2023-01-18 00:41:22.700707"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.701410"], ["updated_at", "2023-01-18 00:41:22.701410"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.702189"], ["updated_at", "2023-01-18 00:41:22.702189"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.702888"], ["updated_at", "2023-01-18 00:41:22.702888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.703567"], ["updated_at", "2023-01-18 00:41:22.703567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.704268"], ["updated_at", "2023-01-18 00:41:22.704268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.704957"], ["updated_at", "2023-01-18 00:41:22.704957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.705667"], ["updated_at", "2023-01-18 00:41:22.705667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.706418"], ["updated_at", "2023-01-18 00:41:22.706418"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.707131"], ["updated_at", "2023-01-18 00:41:22.707131"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.707824"], ["updated_at", "2023-01-18 00:41:22.707824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.708528"], ["updated_at", "2023-01-18 00:41:22.708528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.709216"], ["updated_at", "2023-01-18 00:41:22.709216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:22.709897"], ["updated_at", "2023-01-18 00:41:22.709897"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-01-17 21:41:22 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.3ms | Allocations: 3135)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:41:22.733085"], ["updated_at", "2023-01-18 00:41:22.733085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:41:22.734555"], ["updated_at", "2023-01-18 00:41:22.734555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:41:22.737296"], ["updated_at", "2023-01-18 00:41:22.737296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:41:22.738455"], ["updated_at", "2023-01-18 00:41:22.738455"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:41:22.741048"], ["updated_at", "2023-01-18 00:41:22.741048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:41:22.742196"], ["updated_at", "2023-01-18 00:41:22.742196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:41:22.744151"], ["updated_at", "2023-01-18 00:41:22.744151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:41:22.745547"], ["updated_at", "2023-01-18 00:41:22.745547"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:41:22.747152"], ["updated_at", "2023-01-18 00:41:22.747152"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:41:22.748565"], ["updated_at", "2023-01-18 00:41:22.748565"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:41:22.749992"], ["updated_at", "2023-01-18 00:41:22.749992"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:41:22.751154"], ["updated_at", "2023-01-18 00:41:22.751154"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:41:22.752494"], ["updated_at", "2023-01-18 00:41:22.752494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:41:22.753671"], ["updated_at", "2023-01-18 00:41:22.753671"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:41:22.755081"], ["updated_at", "2023-01-18 00:41:22.755081"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:41:22.756242"], ["updated_at", "2023-01-18 00:41:22.756242"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:41:22.757582"], ["updated_at", "2023-01-18 00:41:22.757582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:41:22.758732"], ["updated_at", "2023-01-18 00:41:22.758732"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:41:22.760053"], ["updated_at", "2023-01-18 00:41:22.760053"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:41:22.761227"], ["updated_at", "2023-01-18 00:41:22.761227"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:41:22.762575"], ["updated_at", "2023-01-18 00:41:22.762575"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:41:22.763880"], ["updated_at", "2023-01-18 00:41:22.763880"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:41:22.765405"], ["updated_at", "2023-01-18 00:41:22.765405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:41:22.766580"], ["updated_at", "2023-01-18 00:41:22.766580"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:41:22.767926"], ["updated_at", "2023-01-18 00:41:22.767926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:41:22.769078"], ["updated_at", "2023-01-18 00:41:22.769078"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:41:22.770446"], ["updated_at", "2023-01-18 00:41:22.770446"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:41:22.771616"], ["updated_at", "2023-01-18 00:41:22.771616"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:41:22.772925"], ["updated_at", "2023-01-18 00:41:22.772925"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:41:22.774138"], ["updated_at", "2023-01-18 00:41:22.774138"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:41:22.775479"], ["updated_at", "2023-01-18 00:41:22.775479"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:41:22.776631"], ["updated_at", "2023-01-18 00:41:22.776631"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:41:22.778036"], ["updated_at", "2023-01-18 00:41:22.778036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:41:22.779227"], ["updated_at", "2023-01-18 00:41:22.779227"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:41:22.780750"], ["updated_at", "2023-01-18 00:41:22.780750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:41:22.782050"], ["updated_at", "2023-01-18 00:41:22.782050"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:41:22.783435"], ["updated_at", "2023-01-18 00:41:22.783435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:41:22.784620"], ["updated_at", "2023-01-18 00:41:22.784620"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:41:22.785979"], ["updated_at", "2023-01-18 00:41:22.785979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:41:22.787124"], ["updated_at", "2023-01-18 00:41:22.787124"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:41:22.788452"], ["updated_at", "2023-01-18 00:41:22.788452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:41:22.789617"], ["updated_at", "2023-01-18 00:41:22.789617"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:41:22.790952"], ["updated_at", "2023-01-18 00:41:22.790952"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:41:22.792115"], ["updated_at", "2023-01-18 00:41:22.792115"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:41:22.793459"], ["updated_at", "2023-01-18 00:41:22.793459"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:41:22.794740"], ["updated_at", "2023-01-18 00:41:22.794740"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:41:22.796072"], ["updated_at", "2023-01-18 00:41:22.796072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:41:22.797463"], ["updated_at", "2023-01-18 00:41:22.797463"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:41:22.798910"], ["updated_at", "2023-01-18 00:41:22.798910"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:41:22.800117"], ["updated_at", "2023-01-18 00:41:22.800117"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:41:22.801509"], ["updated_at", "2023-01-18 00:41:22.801509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:41:22.802770"], ["updated_at", "2023-01-18 00:41:22.802770"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:41:22.804116"], ["updated_at", "2023-01-18 00:41:22.804116"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:41:22.805289"], ["updated_at", "2023-01-18 00:41:22.805289"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:41:22.806689"], ["updated_at", "2023-01-18 00:41:22.806689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:41:22.807865"], ["updated_at", "2023-01-18 00:41:22.807865"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:41:22.809181"], ["updated_at", "2023-01-18 00:41:22.809181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:41:22.810409"], ["updated_at", "2023-01-18 00:41:22.810409"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:41:22.811788"], ["updated_at", "2023-01-18 00:41:22.811788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:41:22.812978"], ["updated_at", "2023-01-18 00:41:22.812978"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:41:22.814570"], ["updated_at", "2023-01-18 00:41:22.814570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:41:22.815804"], ["updated_at", "2023-01-18 00:41:22.815804"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:41:22.817142"], ["updated_at", "2023-01-18 00:41:22.817142"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:41:22.818331"], ["updated_at", "2023-01-18 00:41:22.818331"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:41:22.819677"], ["updated_at", "2023-01-18 00:41:22.819677"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:41:22.820837"], ["updated_at", "2023-01-18 00:41:22.820837"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:41:22.822186"], ["updated_at", "2023-01-18 00:41:22.822186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:41:22.823355"], ["updated_at", "2023-01-18 00:41:22.823355"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:41:22.824685"], ["updated_at", "2023-01-18 00:41:22.824685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:41:22.825884"], ["updated_at", "2023-01-18 00:41:22.825884"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:41:22.827285"], ["updated_at", "2023-01-18 00:41:22.827285"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:41:22.828457"], ["updated_at", "2023-01-18 00:41:22.828457"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:41:22.829815"], ["updated_at", "2023-01-18 00:41:22.829815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:41:22.831243"], ["updated_at", "2023-01-18 00:41:22.831243"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:41:22.832690"], ["updated_at", "2023-01-18 00:41:22.832690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:41:22.833905"], ["updated_at", "2023-01-18 00:41:22.833905"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:41:22.835265"], ["updated_at", "2023-01-18 00:41:22.835265"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:41:22.836489"], ["updated_at", "2023-01-18 00:41:22.836489"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:41:22.837858"], ["updated_at", "2023-01-18 00:41:22.837858"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:41:22.839030"], ["updated_at", "2023-01-18 00:41:22.839030"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:41:22.840379"], ["updated_at", "2023-01-18 00:41:22.840379"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:41:22.841537"], ["updated_at", "2023-01-18 00:41:22.841537"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:41:22.842980"], ["updated_at", "2023-01-18 00:41:22.842980"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:41:22.844197"], ["updated_at", "2023-01-18 00:41:22.844197"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:41:22.845565"], ["updated_at", "2023-01-18 00:41:22.845565"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:41:22.846808"], ["updated_at", "2023-01-18 00:41:22.846808"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:41:22.848421"], ["updated_at", "2023-01-18 00:41:22.848421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:41:22.849655"], ["updated_at", "2023-01-18 00:41:22.849655"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:41:22.851065"], ["updated_at", "2023-01-18 00:41:22.851065"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:41:22.852224"], ["updated_at", "2023-01-18 00:41:22.852224"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:41:22.853585"], ["updated_at", "2023-01-18 00:41:22.853585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:41:22.854761"], ["updated_at", "2023-01-18 00:41:22.854761"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:41:22.856095"], ["updated_at", "2023-01-18 00:41:22.856095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:41:22.857275"], ["updated_at", "2023-01-18 00:41:22.857275"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:41:22.858687"], ["updated_at", "2023-01-18 00:41:22.858687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:41:22.859730"], ["updated_at", "2023-01-18 00:41:22.859730"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:41:22.860931"], ["updated_at", "2023-01-18 00:41:22.860931"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:41:22.862295"], ["updated_at", "2023-01-18 00:41:22.862295"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:41:22.863839"], ["updated_at", "2023-01-18 00:41:22.863839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:41:22.865128"], ["updated_at", "2023-01-18 00:41:22.865128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:41:22.866160"], ["updated_at", "2023-01-18 00:41:22.866160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:22.877075"], ["updated_at", "2023-01-18 00:41:22.877075"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:22.878344"], ["updated_at", "2023-01-18 00:41:22.878344"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:22.879283"], ["updated_at", "2023-01-18 00:41:22.879283"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.880237"], ["updated_at", "2023-01-18 00:41:22.880237"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.881222"], ["updated_at", "2023-01-18 00:41:22.881222"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.882036"], ["updated_at", "2023-01-18 00:41:22.882036"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.882760"], ["updated_at", "2023-01-18 00:41:22.882760"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.883425"], ["updated_at", "2023-01-18 00:41:22.883425"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:22.884198"], ["updated_at", "2023-01-18 00:41:22.884198"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.885043"], ["updated_at", "2023-01-18 00:41:22.885043"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.885928"], ["updated_at", "2023-01-18 00:41:22.885928"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.886663"], ["updated_at", "2023-01-18 00:41:22.886663"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.887400"], ["updated_at", "2023-01-18 00:41:22.887400"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.888112"], ["updated_at", "2023-01-18 00:41:22.888112"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.888831"], ["updated_at", "2023-01-18 00:41:22.888831"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.889610"], ["updated_at", "2023-01-18 00:41:22.889610"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.890360"], ["updated_at", "2023-01-18 00:41:22.890360"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.891105"], ["updated_at", "2023-01-18 00:41:22.891105"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.891836"], ["updated_at", "2023-01-18 00:41:22.891836"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.892562"], ["updated_at", "2023-01-18 00:41:22.892562"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.893357"], ["updated_at", "2023-01-18 00:41:22.893357"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:22.904627"], ["updated_at", "2023-01-18 00:41:22.904627"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:22.905897"], ["updated_at", "2023-01-18 00:41:22.905897"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:22.906902"], ["updated_at", "2023-01-18 00:41:22.906902"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:22.907724"], ["updated_at", "2023-01-18 00:41:22.907724"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:22.908512"], ["updated_at", "2023-01-18 00:41:22.908512"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:22.909199"], ["updated_at", "2023-01-18 00:41:22.909199"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:22.909890"], ["updated_at", "2023-01-18 00:41:22.909890"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:22.910556"], ["updated_at", "2023-01-18 00:41:22.910556"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:22.911311"], ["updated_at", "2023-01-18 00:41:22.911311"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.912148"], ["updated_at", "2023-01-18 00:41:22.912148"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.913097"], ["updated_at", "2023-01-18 00:41:22.913097"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.913986"], ["updated_at", "2023-01-18 00:41:22.913986"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.914723"], ["updated_at", "2023-01-18 00:41:22.914723"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.915481"], ["updated_at", "2023-01-18 00:41:22.915481"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.916200"], ["updated_at", "2023-01-18 00:41:22.916200"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.916935"], ["updated_at", "2023-01-18 00:41:22.916935"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.917665"], ["updated_at", "2023-01-18 00:41:22.917665"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.918372"], ["updated_at", "2023-01-18 00:41:22.918372"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.919116"], ["updated_at", "2023-01-18 00:41:22.919116"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.919828"], ["updated_at", "2023-01-18 00:41:22.919828"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:22.920562"], ["updated_at", "2023-01-18 00:41:22.920562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:22.936705"], ["updated_at", "2023-01-18 00:41:22.936705"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:22.937825"], ["updated_at", "2023-01-18 00:41:22.937825"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.938984"], ["updated_at", "2023-01-18 00:41:22.938984"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.940104"], ["updated_at", "2023-01-18 00:41:22.940104"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.941317"], ["updated_at", "2023-01-18 00:41:22.941317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.942377"], ["updated_at", "2023-01-18 00:41:22.942377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.943132"], ["updated_at", "2023-01-18 00:41:22.943132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.943846"], ["updated_at", "2023-01-18 00:41:22.943846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.944562"], ["updated_at", "2023-01-18 00:41:22.944562"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.945250"], ["updated_at", "2023-01-18 00:41:22.945250"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.946070"], ["updated_at", "2023-01-18 00:41:22.946070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.947088"], ["updated_at", "2023-01-18 00:41:22.947088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.947899"], ["updated_at", "2023-01-18 00:41:22.947899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.948947"], ["updated_at", "2023-01-18 00:41:22.948947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.949811"], ["updated_at", "2023-01-18 00:41:22.949811"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:22.950571"], ["updated_at", "2023-01-18 00:41:22.950571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:22.966149"], ["updated_at", "2023-01-18 00:41:22.966149"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:22.967121"], ["updated_at", "2023-01-18 00:41:22.967121"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.967892"], ["updated_at", "2023-01-18 00:41:22.967892"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.968612"], ["updated_at", "2023-01-18 00:41:22.968612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.969385"], ["updated_at", "2023-01-18 00:41:22.969385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.970108"], ["updated_at", "2023-01-18 00:41:22.970108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.970792"], ["updated_at", "2023-01-18 00:41:22.970792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.971489"], ["updated_at", "2023-01-18 00:41:22.971489"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.972161"], ["updated_at", "2023-01-18 00:41:22.972161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.972840"], ["updated_at", "2023-01-18 00:41:22.972840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.973555"], ["updated_at", "2023-01-18 00:41:22.973555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.974240"], ["updated_at", "2023-01-18 00:41:22.974240"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.974933"], ["updated_at", "2023-01-18 00:41:22.974933"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.975606"], ["updated_at", "2023-01-18 00:41:22.975606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.976315"], ["updated_at", "2023-01-18 00:41:22.976315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:22.976990"], ["updated_at", "2023-01-18 00:41:22.976990"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:22.992456"], ["updated_at", "2023-01-18 00:41:22.992456"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:22.993415"], ["updated_at", "2023-01-18 00:41:22.993415"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:22.994236"], ["updated_at", "2023-01-18 00:41:22.994236"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:22.994942"], ["updated_at", "2023-01-18 00:41:22.994942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.995703"], ["updated_at", "2023-01-18 00:41:22.995703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.996566"], ["updated_at", "2023-01-18 00:41:22.996566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.997442"], ["updated_at", "2023-01-18 00:41:22.997442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.998191"], ["updated_at", "2023-01-18 00:41:22.998191"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.998892"], ["updated_at", "2023-01-18 00:41:22.998892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:22.999610"], ["updated_at", "2023-01-18 00:41:22.999610"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.000290"], ["updated_at", "2023-01-18 00:41:23.000290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.000980"], ["updated_at", "2023-01-18 00:41:23.000980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.001691"], ["updated_at", "2023-01-18 00:41:23.001691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.002397"], ["updated_at", "2023-01-18 00:41:23.002397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.003104"], ["updated_at", "2023-01-18 00:41:23.003104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.003796"], ["updated_at", "2023-01-18 00:41:23.003796"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.018993"], ["updated_at", "2023-01-18 00:41:23.018993"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.019973"], ["updated_at", "2023-01-18 00:41:23.019973"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.020712"], ["updated_at", "2023-01-18 00:41:23.020712"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.021431"], ["updated_at", "2023-01-18 00:41:23.021431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.022178"], ["updated_at", "2023-01-18 00:41:23.022178"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.022893"], ["updated_at", "2023-01-18 00:41:23.022893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.023591"], ["updated_at", "2023-01-18 00:41:23.023591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.024273"], ["updated_at", "2023-01-18 00:41:23.024273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.024979"], ["updated_at", "2023-01-18 00:41:23.024979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.025689"], ["updated_at", "2023-01-18 00:41:23.025689"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.026407"], ["updated_at", "2023-01-18 00:41:23.026407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.027094"], ["updated_at", "2023-01-18 00:41:23.027094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.027797"], ["updated_at", "2023-01-18 00:41:23.027797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.028479"], ["updated_at", "2023-01-18 00:41:23.028479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.029232"], ["updated_at", "2023-01-18 00:41:23.029232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.030124"], ["updated_at", "2023-01-18 00:41:23.030124"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.045086"], ["updated_at", "2023-01-18 00:41:23.045086"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.046084"], ["updated_at", "2023-01-18 00:41:23.046084"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.047032"], ["updated_at", "2023-01-18 00:41:23.047032"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.047837"], ["updated_at", "2023-01-18 00:41:23.047837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.048580"], ["updated_at", "2023-01-18 00:41:23.048580"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.049334"], ["updated_at", "2023-01-18 00:41:23.049334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.050057"], ["updated_at", "2023-01-18 00:41:23.050057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.050757"], ["updated_at", "2023-01-18 00:41:23.050757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.051472"], ["updated_at", "2023-01-18 00:41:23.051472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.052149"], ["updated_at", "2023-01-18 00:41:23.052149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.052860"], ["updated_at", "2023-01-18 00:41:23.052860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.053547"], ["updated_at", "2023-01-18 00:41:23.053547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.054224"], ["updated_at", "2023-01-18 00:41:23.054224"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.054932"], ["updated_at", "2023-01-18 00:41:23.054932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.055600"], ["updated_at", "2023-01-18 00:41:23.055600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.056296"], ["updated_at", "2023-01-18 00:41:23.056296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.071657"], ["updated_at", "2023-01-18 00:41:23.071657"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.072661"], ["updated_at", "2023-01-18 00:41:23.072661"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.073461"], ["updated_at", "2023-01-18 00:41:23.073461"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.074219"], ["updated_at", "2023-01-18 00:41:23.074219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.075000"], ["updated_at", "2023-01-18 00:41:23.075000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.075757"], ["updated_at", "2023-01-18 00:41:23.075757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.076474"], ["updated_at", "2023-01-18 00:41:23.076474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.077210"], ["updated_at", "2023-01-18 00:41:23.077210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.077929"], ["updated_at", "2023-01-18 00:41:23.077929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.078684"], ["updated_at", "2023-01-18 00:41:23.078684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.079405"], ["updated_at", "2023-01-18 00:41:23.079405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.080338"], ["updated_at", "2023-01-18 00:41:23.080338"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.081137"], ["updated_at", "2023-01-18 00:41:23.081137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.081848"], ["updated_at", "2023-01-18 00:41:23.081848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.082578"], ["updated_at", "2023-01-18 00:41:23.082578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.083272"], ["updated_at", "2023-01-18 00:41:23.083272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-01-17 21:41:23 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 383)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:41:23.091994"], ["updated_at", "2023-01-18 00:41:23.091994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:41:23.093484"], ["updated_at", "2023-01-18 00:41:23.093484"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:41:23.096281"], ["updated_at", "2023-01-18 00:41:23.096281"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:41:23.097666"], ["updated_at", "2023-01-18 00:41:23.097666"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:41:23.100516"], ["updated_at", "2023-01-18 00:41:23.100516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:41:23.101719"], ["updated_at", "2023-01-18 00:41:23.101719"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:41:23.103770"], ["updated_at", "2023-01-18 00:41:23.103770"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:41:23.105147"], ["updated_at", "2023-01-18 00:41:23.105147"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:41:23.106778"], ["updated_at", "2023-01-18 00:41:23.106778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:41:23.108122"], ["updated_at", "2023-01-18 00:41:23.108122"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:41:23.109566"], ["updated_at", "2023-01-18 00:41:23.109566"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:41:23.110785"], ["updated_at", "2023-01-18 00:41:23.110785"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:41:23.112151"], ["updated_at", "2023-01-18 00:41:23.112151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:41:23.113536"], ["updated_at", "2023-01-18 00:41:23.113536"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:41:23.115101"], ["updated_at", "2023-01-18 00:41:23.115101"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:41:23.116300"], ["updated_at", "2023-01-18 00:41:23.116300"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:41:23.117710"], ["updated_at", "2023-01-18 00:41:23.117710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:41:23.118911"], ["updated_at", "2023-01-18 00:41:23.118911"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:41:23.120272"], ["updated_at", "2023-01-18 00:41:23.120272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:41:23.121465"], ["updated_at", "2023-01-18 00:41:23.121465"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:41:23.122878"], ["updated_at", "2023-01-18 00:41:23.122878"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:41:23.124063"], ["updated_at", "2023-01-18 00:41:23.124063"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:41:23.125458"], ["updated_at", "2023-01-18 00:41:23.125458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:41:23.126676"], ["updated_at", "2023-01-18 00:41:23.126676"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:41:23.128122"], ["updated_at", "2023-01-18 00:41:23.128122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:41:23.129370"], ["updated_at", "2023-01-18 00:41:23.129370"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:41:23.140728"], ["updated_at", "2023-01-18 00:41:23.140728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:41:23.142038"], ["updated_at", "2023-01-18 00:41:23.142038"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:41:23.143534"], ["updated_at", "2023-01-18 00:41:23.143534"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:41:23.145078"], ["updated_at", "2023-01-18 00:41:23.145078"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:41:23.146801"], ["updated_at", "2023-01-18 00:41:23.146801"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:41:23.148091"], ["updated_at", "2023-01-18 00:41:23.148091"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:41:23.149450"], ["updated_at", "2023-01-18 00:41:23.149450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:41:23.150617"], ["updated_at", "2023-01-18 00:41:23.150617"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:41:23.152179"], ["updated_at", "2023-01-18 00:41:23.152179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:41:23.153715"], ["updated_at", "2023-01-18 00:41:23.153715"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:41:23.155411"], ["updated_at", "2023-01-18 00:41:23.155411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:41:23.156658"], ["updated_at", "2023-01-18 00:41:23.156658"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:41:23.158005"], ["updated_at", "2023-01-18 00:41:23.158005"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:41:23.159177"], ["updated_at", "2023-01-18 00:41:23.159177"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:41:23.160724"], ["updated_at", "2023-01-18 00:41:23.160724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:41:23.162277"], ["updated_at", "2023-01-18 00:41:23.162277"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:41:23.164010"], ["updated_at", "2023-01-18 00:41:23.164010"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.165309"], ["updated_at", "2023-01-18 00:41:23.165309"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:41:23.166666"], ["updated_at", "2023-01-18 00:41:23.166666"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:41:23.167840"], ["updated_at", "2023-01-18 00:41:23.167840"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:41:23.169317"], ["updated_at", "2023-01-18 00:41:23.169317"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:41:23.170996"], ["updated_at", "2023-01-18 00:41:23.170996"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:41:23.172784"], ["updated_at", "2023-01-18 00:41:23.172784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:41:23.174303"], ["updated_at", "2023-01-18 00:41:23.174303"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:41:23.175761"], ["updated_at", "2023-01-18 00:41:23.175761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:41:23.176925"], ["updated_at", "2023-01-18 00:41:23.176925"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:41:23.178248"], ["updated_at", "2023-01-18 00:41:23.178248"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:41:23.179523"], ["updated_at", "2023-01-18 00:41:23.179523"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:41:23.181357"], ["updated_at", "2023-01-18 00:41:23.181357"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:41:23.183034"], ["updated_at", "2023-01-18 00:41:23.183034"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:41:23.184928"], ["updated_at", "2023-01-18 00:41:23.184928"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:41:23.186651"], ["updated_at", "2023-01-18 00:41:23.186651"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:41:23.188232"], ["updated_at", "2023-01-18 00:41:23.188232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:41:23.189491"], ["updated_at", "2023-01-18 00:41:23.189491"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:41:23.190821"], ["updated_at", "2023-01-18 00:41:23.190821"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:41:23.191952"], ["updated_at", "2023-01-18 00:41:23.191952"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:41:23.193287"], ["updated_at", "2023-01-18 00:41:23.193287"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.194460"], ["updated_at", "2023-01-18 00:41:23.194460"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:41:23.195785"], ["updated_at", "2023-01-18 00:41:23.195785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:41:23.196937"], ["updated_at", "2023-01-18 00:41:23.196937"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:41:23.198286"], ["updated_at", "2023-01-18 00:41:23.198286"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:41:23.199563"], ["updated_at", "2023-01-18 00:41:23.199563"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:41:23.200896"], ["updated_at", "2023-01-18 00:41:23.200896"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.202051"], ["updated_at", "2023-01-18 00:41:23.202051"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:41:23.203385"], ["updated_at", "2023-01-18 00:41:23.203385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:41:23.204518"], ["updated_at", "2023-01-18 00:41:23.204518"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:41:23.205835"], ["updated_at", "2023-01-18 00:41:23.205835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:41:23.206990"], ["updated_at", "2023-01-18 00:41:23.206990"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:41:23.208286"], ["updated_at", "2023-01-18 00:41:23.208286"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:41:23.209418"], ["updated_at", "2023-01-18 00:41:23.209418"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:41:23.210737"], ["updated_at", "2023-01-18 00:41:23.210737"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:41:23.211878"], ["updated_at", "2023-01-18 00:41:23.211878"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:41:23.213234"], ["updated_at", "2023-01-18 00:41:23.213234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:41:23.214438"], ["updated_at", "2023-01-18 00:41:23.214438"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:41:23.215764"], ["updated_at", "2023-01-18 00:41:23.215764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.216905"], ["updated_at", "2023-01-18 00:41:23.216905"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:41:23.218229"], ["updated_at", "2023-01-18 00:41:23.218229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:41:23.219362"], ["updated_at", "2023-01-18 00:41:23.219362"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:41:23.220686"], ["updated_at", "2023-01-18 00:41:23.220686"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:41:23.221858"], ["updated_at", "2023-01-18 00:41:23.221858"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:41:23.223187"], ["updated_at", "2023-01-18 00:41:23.223187"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:41:23.224312"], ["updated_at", "2023-01-18 00:41:23.224312"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:41:23.225618"], ["updated_at", "2023-01-18 00:41:23.225618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:41:23.226748"], ["updated_at", "2023-01-18 00:41:23.226748"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:41:23.228047"], ["updated_at", "2023-01-18 00:41:23.228047"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:41:23.229190"], ["updated_at", "2023-01-18 00:41:23.229190"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:41:23.230531"], ["updated_at", "2023-01-18 00:41:23.230531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:41:23.231706"], ["updated_at", "2023-01-18 00:41:23.231706"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:41:23.233012"], ["updated_at", "2023-01-18 00:41:23.233012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:41:23.234076"], ["updated_at", "2023-01-18 00:41:23.234076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:41:23.235225"], ["updated_at", "2023-01-18 00:41:23.235225"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:41:23.236574"], ["updated_at", "2023-01-18 00:41:23.236574"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:41:23.238006"], ["updated_at", "2023-01-18 00:41:23.238006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:41:23.239091"], ["updated_at", "2023-01-18 00:41:23.239091"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:41:23.240094"], ["updated_at", "2023-01-18 00:41:23.240094"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:23.250965"], ["updated_at", "2023-01-18 00:41:23.250965"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:23.252233"], ["updated_at", "2023-01-18 00:41:23.252233"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:23.253206"], ["updated_at", "2023-01-18 00:41:23.253206"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.254084"], ["updated_at", "2023-01-18 00:41:23.254084"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.254850"], ["updated_at", "2023-01-18 00:41:23.254850"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.255515"], ["updated_at", "2023-01-18 00:41:23.255515"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.256183"], ["updated_at", "2023-01-18 00:41:23.256183"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.256842"], ["updated_at", "2023-01-18 00:41:23.256842"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:23.257591"], ["updated_at", "2023-01-18 00:41:23.257591"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.258413"], ["updated_at", "2023-01-18 00:41:23.258413"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.259207"], ["updated_at", "2023-01-18 00:41:23.259207"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.259913"], ["updated_at", "2023-01-18 00:41:23.259913"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.260626"], ["updated_at", "2023-01-18 00:41:23.260626"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.261346"], ["updated_at", "2023-01-18 00:41:23.261346"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.262047"], ["updated_at", "2023-01-18 00:41:23.262047"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.262756"], ["updated_at", "2023-01-18 00:41:23.262756"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.263480"], ["updated_at", "2023-01-18 00:41:23.263480"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.264201"], ["updated_at", "2023-01-18 00:41:23.264201"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.264905"], ["updated_at", "2023-01-18 00:41:23.264905"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.265629"], ["updated_at", "2023-01-18 00:41:23.265629"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.266332"], ["updated_at", "2023-01-18 00:41:23.266332"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:23.277120"], ["updated_at", "2023-01-18 00:41:23.277120"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:23.278310"], ["updated_at", "2023-01-18 00:41:23.278310"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:23.279181"], ["updated_at", "2023-01-18 00:41:23.279181"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:23.279995"], ["updated_at", "2023-01-18 00:41:23.279995"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:23.280720"], ["updated_at", "2023-01-18 00:41:23.280720"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:23.281518"], ["updated_at", "2023-01-18 00:41:23.281518"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:23.282436"], ["updated_at", "2023-01-18 00:41:23.282436"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:23.283317"], ["updated_at", "2023-01-18 00:41:23.283317"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:23.284187"], ["updated_at", "2023-01-18 00:41:23.284187"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.285092"], ["updated_at", "2023-01-18 00:41:23.285092"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.285934"], ["updated_at", "2023-01-18 00:41:23.285934"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.287063"], ["updated_at", "2023-01-18 00:41:23.287063"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.288172"], ["updated_at", "2023-01-18 00:41:23.288172"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.289001"], ["updated_at", "2023-01-18 00:41:23.289001"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.289767"], ["updated_at", "2023-01-18 00:41:23.289767"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.290491"], ["updated_at", "2023-01-18 00:41:23.290491"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.291187"], ["updated_at", "2023-01-18 00:41:23.291187"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.291900"], ["updated_at", "2023-01-18 00:41:23.291900"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.292670"], ["updated_at", "2023-01-18 00:41:23.292670"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.293708"], ["updated_at", "2023-01-18 00:41:23.293708"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.294689"], ["updated_at", "2023-01-18 00:41:23.294689"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.309847"], ["updated_at", "2023-01-18 00:41:23.309847"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.310932"], ["updated_at", "2023-01-18 00:41:23.310932"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.311782"], ["updated_at", "2023-01-18 00:41:23.311782"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.312501"], ["updated_at", "2023-01-18 00:41:23.312501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.313435"], ["updated_at", "2023-01-18 00:41:23.313435"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.314274"], ["updated_at", "2023-01-18 00:41:23.314274"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.314962"], ["updated_at", "2023-01-18 00:41:23.314962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.315651"], ["updated_at", "2023-01-18 00:41:23.315651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.316333"], ["updated_at", "2023-01-18 00:41:23.316333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.316997"], ["updated_at", "2023-01-18 00:41:23.316997"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.317694"], ["updated_at", "2023-01-18 00:41:23.317694"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.318383"], ["updated_at", "2023-01-18 00:41:23.318383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.319052"], ["updated_at", "2023-01-18 00:41:23.319052"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.319736"], ["updated_at", "2023-01-18 00:41:23.319736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.320395"], ["updated_at", "2023-01-18 00:41:23.320395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.321073"], ["updated_at", "2023-01-18 00:41:23.321073"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.335996"], ["updated_at", "2023-01-18 00:41:23.335996"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.336966"], ["updated_at", "2023-01-18 00:41:23.336966"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.337716"], ["updated_at", "2023-01-18 00:41:23.337716"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.338381"], ["updated_at", "2023-01-18 00:41:23.338381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.339119"], ["updated_at", "2023-01-18 00:41:23.339119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.339820"], ["updated_at", "2023-01-18 00:41:23.339820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.340489"], ["updated_at", "2023-01-18 00:41:23.340489"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.341182"], ["updated_at", "2023-01-18 00:41:23.341182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.341885"], ["updated_at", "2023-01-18 00:41:23.341885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.342561"], ["updated_at", "2023-01-18 00:41:23.342561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.343247"], ["updated_at", "2023-01-18 00:41:23.343247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.343932"], ["updated_at", "2023-01-18 00:41:23.343932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.344595"], ["updated_at", "2023-01-18 00:41:23.344595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.345283"], ["updated_at", "2023-01-18 00:41:23.345283"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.345987"], ["updated_at", "2023-01-18 00:41:23.345987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.346720"], ["updated_at", "2023-01-18 00:41:23.346720"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.361587"], ["updated_at", "2023-01-18 00:41:23.361587"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.362563"], ["updated_at", "2023-01-18 00:41:23.362563"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.363320"], ["updated_at", "2023-01-18 00:41:23.363320"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.364006"], ["updated_at", "2023-01-18 00:41:23.364006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.364772"], ["updated_at", "2023-01-18 00:41:23.364772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.365501"], ["updated_at", "2023-01-18 00:41:23.365501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.366220"], ["updated_at", "2023-01-18 00:41:23.366220"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.366903"], ["updated_at", "2023-01-18 00:41:23.366903"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.367589"], ["updated_at", "2023-01-18 00:41:23.367589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.368253"], ["updated_at", "2023-01-18 00:41:23.368253"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.368932"], ["updated_at", "2023-01-18 00:41:23.368932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.369625"], ["updated_at", "2023-01-18 00:41:23.369625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.370289"], ["updated_at", "2023-01-18 00:41:23.370289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.370969"], ["updated_at", "2023-01-18 00:41:23.370969"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.371644"], ["updated_at", "2023-01-18 00:41:23.371644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.372317"], ["updated_at", "2023-01-18 00:41:23.372317"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.387081"], ["updated_at", "2023-01-18 00:41:23.387081"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.388077"], ["updated_at", "2023-01-18 00:41:23.388077"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.388817"], ["updated_at", "2023-01-18 00:41:23.388817"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.389504"], ["updated_at", "2023-01-18 00:41:23.389504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.390261"], ["updated_at", "2023-01-18 00:41:23.390261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.390951"], ["updated_at", "2023-01-18 00:41:23.390951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.391627"], ["updated_at", "2023-01-18 00:41:23.391627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.392295"], ["updated_at", "2023-01-18 00:41:23.392295"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.392962"], ["updated_at", "2023-01-18 00:41:23.392962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.393643"], ["updated_at", "2023-01-18 00:41:23.393643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.394309"], ["updated_at", "2023-01-18 00:41:23.394309"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.394984"], ["updated_at", "2023-01-18 00:41:23.394984"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.395660"], ["updated_at", "2023-01-18 00:41:23.395660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.396348"], ["updated_at", "2023-01-18 00:41:23.396348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.397031"], ["updated_at", "2023-01-18 00:41:23.397031"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.397735"], ["updated_at", "2023-01-18 00:41:23.397735"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.412463"], ["updated_at", "2023-01-18 00:41:23.412463"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.413426"], ["updated_at", "2023-01-18 00:41:23.413426"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.414190"], ["updated_at", "2023-01-18 00:41:23.414190"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.414880"], ["updated_at", "2023-01-18 00:41:23.414880"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.415597"], ["updated_at", "2023-01-18 00:41:23.415597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.416303"], ["updated_at", "2023-01-18 00:41:23.416303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.416987"], ["updated_at", "2023-01-18 00:41:23.416987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.417673"], ["updated_at", "2023-01-18 00:41:23.417673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.418369"], ["updated_at", "2023-01-18 00:41:23.418369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.419060"], ["updated_at", "2023-01-18 00:41:23.419060"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.419724"], ["updated_at", "2023-01-18 00:41:23.419724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.420399"], ["updated_at", "2023-01-18 00:41:23.420399"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.421062"], ["updated_at", "2023-01-18 00:41:23.421062"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.421754"], ["updated_at", "2023-01-18 00:41:23.421754"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.422429"], ["updated_at", "2023-01-18 00:41:23.422429"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.423087"], ["updated_at", "2023-01-18 00:41:23.423087"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.437790"], ["updated_at", "2023-01-18 00:41:23.437790"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.438739"], ["updated_at", "2023-01-18 00:41:23.438739"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.439468"], ["updated_at", "2023-01-18 00:41:23.439468"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.440133"], ["updated_at", "2023-01-18 00:41:23.440133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.440882"], ["updated_at", "2023-01-18 00:41:23.440882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.441617"], ["updated_at", "2023-01-18 00:41:23.441617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.442293"], ["updated_at", "2023-01-18 00:41:23.442293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.442979"], ["updated_at", "2023-01-18 00:41:23.442979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.443656"], ["updated_at", "2023-01-18 00:41:23.443656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.444319"], ["updated_at", "2023-01-18 00:41:23.444319"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.444996"], ["updated_at", "2023-01-18 00:41:23.444996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.445673"], ["updated_at", "2023-01-18 00:41:23.445673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.446359"], ["updated_at", "2023-01-18 00:41:23.446359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.447052"], ["updated_at", "2023-01-18 00:41:23.447052"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.447723"], ["updated_at", "2023-01-18 00:41:23.447723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.448414"], ["updated_at", "2023-01-18 00:41:23.448414"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-01-17 21:41:23 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.3ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 14ms (Views: 10.7ms | ActiveRecord: 0.4ms | Allocations: 9578)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:41:23.470877"], ["updated_at", "2023-01-18 00:41:23.470877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:41:23.472367"], ["updated_at", "2023-01-18 00:41:23.472367"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:41:23.475459"], ["updated_at", "2023-01-18 00:41:23.475459"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:41:23.476664"], ["updated_at", "2023-01-18 00:41:23.476664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:41:23.479382"], ["updated_at", "2023-01-18 00:41:23.479382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:41:23.480651"], ["updated_at", "2023-01-18 00:41:23.480651"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:41:23.482720"], ["updated_at", "2023-01-18 00:41:23.482720"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:41:23.484158"], ["updated_at", "2023-01-18 00:41:23.484158"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:41:23.485725"], ["updated_at", "2023-01-18 00:41:23.485725"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:41:23.487009"], ["updated_at", "2023-01-18 00:41:23.487009"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:41:23.488365"], ["updated_at", "2023-01-18 00:41:23.488365"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:41:23.489587"], ["updated_at", "2023-01-18 00:41:23.489587"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:41:23.490936"], ["updated_at", "2023-01-18 00:41:23.490936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:41:23.492127"], ["updated_at", "2023-01-18 00:41:23.492127"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:41:23.493612"], ["updated_at", "2023-01-18 00:41:23.493612"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:41:23.494805"], ["updated_at", "2023-01-18 00:41:23.494805"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:41:23.496293"], ["updated_at", "2023-01-18 00:41:23.496293"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:41:23.497881"], ["updated_at", "2023-01-18 00:41:23.497881"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:41:23.499310"], ["updated_at", "2023-01-18 00:41:23.499310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:41:23.500454"], ["updated_at", "2023-01-18 00:41:23.500454"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:41:23.501799"], ["updated_at", "2023-01-18 00:41:23.501799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:41:23.502931"], ["updated_at", "2023-01-18 00:41:23.502931"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:41:23.504265"], ["updated_at", "2023-01-18 00:41:23.504265"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:41:23.505415"], ["updated_at", "2023-01-18 00:41:23.505415"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:41:23.506734"], ["updated_at", "2023-01-18 00:41:23.506734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:41:23.507914"], ["updated_at", "2023-01-18 00:41:23.507914"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:41:23.509249"], ["updated_at", "2023-01-18 00:41:23.509249"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:41:23.510390"], ["updated_at", "2023-01-18 00:41:23.510390"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:41:23.511715"], ["updated_at", "2023-01-18 00:41:23.511715"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:41:23.512837"], ["updated_at", "2023-01-18 00:41:23.512837"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:41:23.514177"], ["updated_at", "2023-01-18 00:41:23.514177"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:41:23.515308"], ["updated_at", "2023-01-18 00:41:23.515308"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:41:23.516640"], ["updated_at", "2023-01-18 00:41:23.516640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:41:23.517792"], ["updated_at", "2023-01-18 00:41:23.517792"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:41:23.519103"], ["updated_at", "2023-01-18 00:41:23.519103"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:41:23.520227"], ["updated_at", "2023-01-18 00:41:23.520227"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:41:23.521554"], ["updated_at", "2023-01-18 00:41:23.521554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:41:23.522678"], ["updated_at", "2023-01-18 00:41:23.522678"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:41:23.523986"], ["updated_at", "2023-01-18 00:41:23.523986"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:41:23.525116"], ["updated_at", "2023-01-18 00:41:23.525116"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:41:23.526451"], ["updated_at", "2023-01-18 00:41:23.526451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:41:23.527588"], ["updated_at", "2023-01-18 00:41:23.527588"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:41:23.528902"], ["updated_at", "2023-01-18 00:41:23.528902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.530070"], ["updated_at", "2023-01-18 00:41:23.530070"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:41:23.531412"], ["updated_at", "2023-01-18 00:41:23.531412"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:41:23.532559"], ["updated_at", "2023-01-18 00:41:23.532559"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:41:23.533892"], ["updated_at", "2023-01-18 00:41:23.533892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:41:23.535063"], ["updated_at", "2023-01-18 00:41:23.535063"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:41:23.536411"], ["updated_at", "2023-01-18 00:41:23.536411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:41:23.537543"], ["updated_at", "2023-01-18 00:41:23.537543"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:41:23.538886"], ["updated_at", "2023-01-18 00:41:23.538886"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:41:23.540030"], ["updated_at", "2023-01-18 00:41:23.540030"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:41:23.541394"], ["updated_at", "2023-01-18 00:41:23.541394"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:41:23.542549"], ["updated_at", "2023-01-18 00:41:23.542549"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:41:23.543922"], ["updated_at", "2023-01-18 00:41:23.543922"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:41:23.545078"], ["updated_at", "2023-01-18 00:41:23.545078"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:41:23.546416"], ["updated_at", "2023-01-18 00:41:23.546416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:41:23.547552"], ["updated_at", "2023-01-18 00:41:23.547552"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:41:23.548861"], ["updated_at", "2023-01-18 00:41:23.548861"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:41:23.549995"], ["updated_at", "2023-01-18 00:41:23.549995"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:41:23.551299"], ["updated_at", "2023-01-18 00:41:23.551299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:41:23.552438"], ["updated_at", "2023-01-18 00:41:23.552438"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:41:23.553794"], ["updated_at", "2023-01-18 00:41:23.553794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.554932"], ["updated_at", "2023-01-18 00:41:23.554932"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:41:23.556285"], ["updated_at", "2023-01-18 00:41:23.556285"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:41:23.557456"], ["updated_at", "2023-01-18 00:41:23.557456"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:41:23.558779"], ["updated_at", "2023-01-18 00:41:23.558779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:41:23.559904"], ["updated_at", "2023-01-18 00:41:23.559904"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:41:23.561243"], ["updated_at", "2023-01-18 00:41:23.561243"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.562400"], ["updated_at", "2023-01-18 00:41:23.562400"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:41:23.563927"], ["updated_at", "2023-01-18 00:41:23.563927"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:41:23.565244"], ["updated_at", "2023-01-18 00:41:23.565244"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:41:23.566602"], ["updated_at", "2023-01-18 00:41:23.566602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:41:23.567738"], ["updated_at", "2023-01-18 00:41:23.567738"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:41:23.569096"], ["updated_at", "2023-01-18 00:41:23.569096"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:41:23.570256"], ["updated_at", "2023-01-18 00:41:23.570256"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:41:23.571600"], ["updated_at", "2023-01-18 00:41:23.571600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:41:23.572732"], ["updated_at", "2023-01-18 00:41:23.572732"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:41:23.574098"], ["updated_at", "2023-01-18 00:41:23.574098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:41:23.575233"], ["updated_at", "2023-01-18 00:41:23.575233"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:41:23.576558"], ["updated_at", "2023-01-18 00:41:23.576558"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.577704"], ["updated_at", "2023-01-18 00:41:23.577704"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:41:23.579050"], ["updated_at", "2023-01-18 00:41:23.579050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:41:23.580219"], ["updated_at", "2023-01-18 00:41:23.580219"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:41:23.581618"], ["updated_at", "2023-01-18 00:41:23.581618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:41:23.582795"], ["updated_at", "2023-01-18 00:41:23.582795"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:41:23.584109"], ["updated_at", "2023-01-18 00:41:23.584109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:41:23.585246"], ["updated_at", "2023-01-18 00:41:23.585246"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:41:23.586559"], ["updated_at", "2023-01-18 00:41:23.586559"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:41:23.587683"], ["updated_at", "2023-01-18 00:41:23.587683"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:41:23.589036"], ["updated_at", "2023-01-18 00:41:23.589036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:41:23.590195"], ["updated_at", "2023-01-18 00:41:23.590195"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:41:23.591518"], ["updated_at", "2023-01-18 00:41:23.591518"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:41:23.592645"], ["updated_at", "2023-01-18 00:41:23.592645"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:41:23.593975"], ["updated_at", "2023-01-18 00:41:23.593975"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:41:23.595006"], ["updated_at", "2023-01-18 00:41:23.595006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:41:23.596156"], ["updated_at", "2023-01-18 00:41:23.596156"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:41:23.597555"], ["updated_at", "2023-01-18 00:41:23.597555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:41:23.599079"], ["updated_at", "2023-01-18 00:41:23.599079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:41:23.600200"], ["updated_at", "2023-01-18 00:41:23.600200"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:41:23.601137"], ["updated_at", "2023-01-18 00:41:23.601137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:23.612131"], ["updated_at", "2023-01-18 00:41:23.612131"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:23.613423"], ["updated_at", "2023-01-18 00:41:23.613423"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:23.614389"], ["updated_at", "2023-01-18 00:41:23.614389"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.615242"], ["updated_at", "2023-01-18 00:41:23.615242"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.615999"], ["updated_at", "2023-01-18 00:41:23.615999"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.616732"], ["updated_at", "2023-01-18 00:41:23.616732"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.617414"], ["updated_at", "2023-01-18 00:41:23.617414"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.618070"], ["updated_at", "2023-01-18 00:41:23.618070"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:23.618816"], ["updated_at", "2023-01-18 00:41:23.618816"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.619655"], ["updated_at", "2023-01-18 00:41:23.619655"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.620477"], ["updated_at", "2023-01-18 00:41:23.620477"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.621220"], ["updated_at", "2023-01-18 00:41:23.621220"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.621955"], ["updated_at", "2023-01-18 00:41:23.621955"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.622719"], ["updated_at", "2023-01-18 00:41:23.622719"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.623439"], ["updated_at", "2023-01-18 00:41:23.623439"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.624168"], ["updated_at", "2023-01-18 00:41:23.624168"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.624888"], ["updated_at", "2023-01-18 00:41:23.624888"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.625608"], ["updated_at", "2023-01-18 00:41:23.625608"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.626328"], ["updated_at", "2023-01-18 00:41:23.626328"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.627049"], ["updated_at", "2023-01-18 00:41:23.627049"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.627755"], ["updated_at", "2023-01-18 00:41:23.627755"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:23.638768"], ["updated_at", "2023-01-18 00:41:23.638768"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:23.640000"], ["updated_at", "2023-01-18 00:41:23.640000"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:23.640884"], ["updated_at", "2023-01-18 00:41:23.640884"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:23.641754"], ["updated_at", "2023-01-18 00:41:23.641754"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:23.642478"], ["updated_at", "2023-01-18 00:41:23.642478"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:23.643168"], ["updated_at", "2023-01-18 00:41:23.643168"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:23.643837"], ["updated_at", "2023-01-18 00:41:23.643837"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:23.644482"], ["updated_at", "2023-01-18 00:41:23.644482"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:23.645223"], ["updated_at", "2023-01-18 00:41:23.645223"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.646073"], ["updated_at", "2023-01-18 00:41:23.646073"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.646875"], ["updated_at", "2023-01-18 00:41:23.646875"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.647596"], ["updated_at", "2023-01-18 00:41:23.647596"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.648324"], ["updated_at", "2023-01-18 00:41:23.648324"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.649046"], ["updated_at", "2023-01-18 00:41:23.649046"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.649764"], ["updated_at", "2023-01-18 00:41:23.649764"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.650490"], ["updated_at", "2023-01-18 00:41:23.650490"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.651216"], ["updated_at", "2023-01-18 00:41:23.651216"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.651921"], ["updated_at", "2023-01-18 00:41:23.651921"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.652655"], ["updated_at", "2023-01-18 00:41:23.652655"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.653391"], ["updated_at", "2023-01-18 00:41:23.653391"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:23.654101"], ["updated_at", "2023-01-18 00:41:23.654101"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.669168"], ["updated_at", "2023-01-18 00:41:23.669168"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.670270"], ["updated_at", "2023-01-18 00:41:23.670270"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.671104"], ["updated_at", "2023-01-18 00:41:23.671104"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.671793"], ["updated_at", "2023-01-18 00:41:23.671793"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.672575"], ["updated_at", "2023-01-18 00:41:23.672575"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.673375"], ["updated_at", "2023-01-18 00:41:23.673375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.674098"], ["updated_at", "2023-01-18 00:41:23.674098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.674795"], ["updated_at", "2023-01-18 00:41:23.674795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.675499"], ["updated_at", "2023-01-18 00:41:23.675499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.676195"], ["updated_at", "2023-01-18 00:41:23.676195"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.676874"], ["updated_at", "2023-01-18 00:41:23.676874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.677590"], ["updated_at", "2023-01-18 00:41:23.677590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.678285"], ["updated_at", "2023-01-18 00:41:23.678285"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.678971"], ["updated_at", "2023-01-18 00:41:23.678971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.679646"], ["updated_at", "2023-01-18 00:41:23.679646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:23.680327"], ["updated_at", "2023-01-18 00:41:23.680327"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.694970"], ["updated_at", "2023-01-18 00:41:23.694970"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.695985"], ["updated_at", "2023-01-18 00:41:23.695985"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.696751"], ["updated_at", "2023-01-18 00:41:23.696751"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.697441"], ["updated_at", "2023-01-18 00:41:23.697441"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.698184"], ["updated_at", "2023-01-18 00:41:23.698184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.698909"], ["updated_at", "2023-01-18 00:41:23.698909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.699606"], ["updated_at", "2023-01-18 00:41:23.699606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.700388"], ["updated_at", "2023-01-18 00:41:23.700388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.701203"], ["updated_at", "2023-01-18 00:41:23.701203"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.701914"], ["updated_at", "2023-01-18 00:41:23.701914"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.702583"], ["updated_at", "2023-01-18 00:41:23.702583"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.703268"], ["updated_at", "2023-01-18 00:41:23.703268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.703964"], ["updated_at", "2023-01-18 00:41:23.703964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.704632"], ["updated_at", "2023-01-18 00:41:23.704632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.705437"], ["updated_at", "2023-01-18 00:41:23.705437"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:23.706212"], ["updated_at", "2023-01-18 00:41:23.706212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.721597"], ["updated_at", "2023-01-18 00:41:23.721597"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.722589"], ["updated_at", "2023-01-18 00:41:23.722589"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.723429"], ["updated_at", "2023-01-18 00:41:23.723429"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.724140"], ["updated_at", "2023-01-18 00:41:23.724140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.724879"], ["updated_at", "2023-01-18 00:41:23.724879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.725588"], ["updated_at", "2023-01-18 00:41:23.725588"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.726341"], ["updated_at", "2023-01-18 00:41:23.726341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.727052"], ["updated_at", "2023-01-18 00:41:23.727052"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.727747"], ["updated_at", "2023-01-18 00:41:23.727747"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.728488"], ["updated_at", "2023-01-18 00:41:23.728488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.729173"], ["updated_at", "2023-01-18 00:41:23.729173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.729955"], ["updated_at", "2023-01-18 00:41:23.729955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.730822"], ["updated_at", "2023-01-18 00:41:23.730822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.731876"], ["updated_at", "2023-01-18 00:41:23.731876"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.732698"], ["updated_at", "2023-01-18 00:41:23.732698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:23.733734"], ["updated_at", "2023-01-18 00:41:23.733734"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.750616"], ["updated_at", "2023-01-18 00:41:23.750616"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.751609"], ["updated_at", "2023-01-18 00:41:23.751609"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.752381"], ["updated_at", "2023-01-18 00:41:23.752381"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.753096"], ["updated_at", "2023-01-18 00:41:23.753096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.753906"], ["updated_at", "2023-01-18 00:41:23.753906"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.754659"], ["updated_at", "2023-01-18 00:41:23.754659"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.755375"], ["updated_at", "2023-01-18 00:41:23.755375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.756086"], ["updated_at", "2023-01-18 00:41:23.756086"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.756783"], ["updated_at", "2023-01-18 00:41:23.756783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.757497"], ["updated_at", "2023-01-18 00:41:23.757497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.758210"], ["updated_at", "2023-01-18 00:41:23.758210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.759112"], ["updated_at", "2023-01-18 00:41:23.759112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.760063"], ["updated_at", "2023-01-18 00:41:23.760063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.760855"], ["updated_at", "2023-01-18 00:41:23.760855"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.761596"], ["updated_at", "2023-01-18 00:41:23.761596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:23.762324"], ["updated_at", "2023-01-18 00:41:23.762324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.777713"], ["updated_at", "2023-01-18 00:41:23.777713"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.778705"], ["updated_at", "2023-01-18 00:41:23.778705"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.779476"], ["updated_at", "2023-01-18 00:41:23.779476"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.780287"], ["updated_at", "2023-01-18 00:41:23.780287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.781264"], ["updated_at", "2023-01-18 00:41:23.781264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.782063"], ["updated_at", "2023-01-18 00:41:23.782063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.782820"], ["updated_at", "2023-01-18 00:41:23.782820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.783626"], ["updated_at", "2023-01-18 00:41:23.783626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.784360"], ["updated_at", "2023-01-18 00:41:23.784360"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.785049"], ["updated_at", "2023-01-18 00:41:23.785049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.785771"], ["updated_at", "2023-01-18 00:41:23.785771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.786503"], ["updated_at", "2023-01-18 00:41:23.786503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.787197"], ["updated_at", "2023-01-18 00:41:23.787197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.787907"], ["updated_at", "2023-01-18 00:41:23.787907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.788616"], ["updated_at", "2023-01-18 00:41:23.788616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:23.789345"], ["updated_at", "2023-01-18 00:41:23.789345"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:23.804856"], ["updated_at", "2023-01-18 00:41:23.804856"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:23.805857"], ["updated_at", "2023-01-18 00:41:23.805857"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.806663"], ["updated_at", "2023-01-18 00:41:23.806663"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.807379"], ["updated_at", "2023-01-18 00:41:23.807379"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.808140"], ["updated_at", "2023-01-18 00:41:23.808140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.808895"], ["updated_at", "2023-01-18 00:41:23.808895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.809639"], ["updated_at", "2023-01-18 00:41:23.809639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.810389"], ["updated_at", "2023-01-18 00:41:23.810389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.811135"], ["updated_at", "2023-01-18 00:41:23.811135"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.811793"], ["updated_at", "2023-01-18 00:41:23.811793"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.812443"], ["updated_at", "2023-01-18 00:41:23.812443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.813295"], ["updated_at", "2023-01-18 00:41:23.813295"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.814223"], ["updated_at", "2023-01-18 00:41:23.814223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.814939"], ["updated_at", "2023-01-18 00:41:23.814939"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.815671"], ["updated_at", "2023-01-18 00:41:23.815671"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:23.816353"], ["updated_at", "2023-01-18 00:41:23.816353"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-01-17 21:41:23 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:41:23.834197"], ["updated_at", "2023-01-18 00:41:23.834197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:41:23.835750"], ["updated_at", "2023-01-18 00:41:23.835750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:41:23.839042"], ["updated_at", "2023-01-18 00:41:23.839042"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:41:23.840434"], ["updated_at", "2023-01-18 00:41:23.840434"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:41:23.843766"], ["updated_at", "2023-01-18 00:41:23.843766"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:41:23.845189"], ["updated_at", "2023-01-18 00:41:23.845189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:41:23.847666"], ["updated_at", "2023-01-18 00:41:23.847666"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:41:23.849430"], ["updated_at", "2023-01-18 00:41:23.849430"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:41:23.851279"], ["updated_at", "2023-01-18 00:41:23.851279"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:41:23.852784"], ["updated_at", "2023-01-18 00:41:23.852784"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:41:23.854341"], ["updated_at", "2023-01-18 00:41:23.854341"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:41:23.855678"], ["updated_at", "2023-01-18 00:41:23.855678"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:41:23.857195"], ["updated_at", "2023-01-18 00:41:23.857195"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:41:23.858579"], ["updated_at", "2023-01-18 00:41:23.858579"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:41:23.860124"], ["updated_at", "2023-01-18 00:41:23.860124"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:41:23.861480"], ["updated_at", "2023-01-18 00:41:23.861480"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:41:23.863053"], ["updated_at", "2023-01-18 00:41:23.863053"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:41:23.864373"], ["updated_at", "2023-01-18 00:41:23.864373"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:41:23.865939"], ["updated_at", "2023-01-18 00:41:23.865939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:41:23.867385"], ["updated_at", "2023-01-18 00:41:23.867385"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:41:23.868933"], ["updated_at", "2023-01-18 00:41:23.868933"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:41:23.870314"], ["updated_at", "2023-01-18 00:41:23.870314"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:41:23.871859"], ["updated_at", "2023-01-18 00:41:23.871859"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:41:23.873280"], ["updated_at", "2023-01-18 00:41:23.873280"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:41:23.874818"], ["updated_at", "2023-01-18 00:41:23.874818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:41:23.876192"], ["updated_at", "2023-01-18 00:41:23.876192"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:41:23.877762"], ["updated_at", "2023-01-18 00:41:23.877762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:41:23.879139"], ["updated_at", "2023-01-18 00:41:23.879139"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:41:23.880676"], ["updated_at", "2023-01-18 00:41:23.880676"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:41:23.881926"], ["updated_at", "2023-01-18 00:41:23.881926"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:41:23.883304"], ["updated_at", "2023-01-18 00:41:23.883304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:41:23.884691"], ["updated_at", "2023-01-18 00:41:23.884691"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:41:23.886318"], ["updated_at", "2023-01-18 00:41:23.886318"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:41:23.887707"], ["updated_at", "2023-01-18 00:41:23.887707"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:41:23.889323"], ["updated_at", "2023-01-18 00:41:23.889323"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:41:23.890753"], ["updated_at", "2023-01-18 00:41:23.890753"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:41:23.892382"], ["updated_at", "2023-01-18 00:41:23.892382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:41:23.893862"], ["updated_at", "2023-01-18 00:41:23.893862"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:41:23.895395"], ["updated_at", "2023-01-18 00:41:23.895395"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:41:23.896611"], ["updated_at", "2023-01-18 00:41:23.896611"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:41:23.897960"], ["updated_at", "2023-01-18 00:41:23.897960"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:41:23.899223"], ["updated_at", "2023-01-18 00:41:23.899223"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:41:23.900577"], ["updated_at", "2023-01-18 00:41:23.900577"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.901725"], ["updated_at", "2023-01-18 00:41:23.901725"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:41:23.903098"], ["updated_at", "2023-01-18 00:41:23.903098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:41:23.904206"], ["updated_at", "2023-01-18 00:41:23.904206"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:41:23.905629"], ["updated_at", "2023-01-18 00:41:23.905629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:41:23.906781"], ["updated_at", "2023-01-18 00:41:23.906781"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:41:23.908065"], ["updated_at", "2023-01-18 00:41:23.908065"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:41:23.909212"], ["updated_at", "2023-01-18 00:41:23.909212"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:41:23.910568"], ["updated_at", "2023-01-18 00:41:23.910568"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:41:23.911704"], ["updated_at", "2023-01-18 00:41:23.911704"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:41:23.913037"], ["updated_at", "2023-01-18 00:41:23.913037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:41:23.914254"], ["updated_at", "2023-01-18 00:41:23.914254"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:41:23.915619"], ["updated_at", "2023-01-18 00:41:23.915619"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:41:23.916797"], ["updated_at", "2023-01-18 00:41:23.916797"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:41:23.918181"], ["updated_at", "2023-01-18 00:41:23.918181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:41:23.919338"], ["updated_at", "2023-01-18 00:41:23.919338"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:41:23.920647"], ["updated_at", "2023-01-18 00:41:23.920647"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:41:23.921801"], ["updated_at", "2023-01-18 00:41:23.921801"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:41:23.923146"], ["updated_at", "2023-01-18 00:41:23.923146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:41:23.924305"], ["updated_at", "2023-01-18 00:41:23.924305"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:41:23.925639"], ["updated_at", "2023-01-18 00:41:23.925639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.926796"], ["updated_at", "2023-01-18 00:41:23.926796"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:41:23.928112"], ["updated_at", "2023-01-18 00:41:23.928112"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:41:23.929272"], ["updated_at", "2023-01-18 00:41:23.929272"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:41:23.930585"], ["updated_at", "2023-01-18 00:41:23.930585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:41:23.931755"], ["updated_at", "2023-01-18 00:41:23.931755"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:41:23.933065"], ["updated_at", "2023-01-18 00:41:23.933065"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.934227"], ["updated_at", "2023-01-18 00:41:23.934227"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:41:23.935529"], ["updated_at", "2023-01-18 00:41:23.935529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:41:23.936677"], ["updated_at", "2023-01-18 00:41:23.936677"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:41:23.938018"], ["updated_at", "2023-01-18 00:41:23.938018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:41:23.939180"], ["updated_at", "2023-01-18 00:41:23.939180"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:41:23.940518"], ["updated_at", "2023-01-18 00:41:23.940518"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:41:23.941671"], ["updated_at", "2023-01-18 00:41:23.941671"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:41:23.942989"], ["updated_at", "2023-01-18 00:41:23.942989"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:41:23.944118"], ["updated_at", "2023-01-18 00:41:23.944118"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:41:23.945449"], ["updated_at", "2023-01-18 00:41:23.945449"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:41:23.946598"], ["updated_at", "2023-01-18 00:41:23.946598"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:41:23.947910"], ["updated_at", "2023-01-18 00:41:23.947910"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:41:23.949045"], ["updated_at", "2023-01-18 00:41:23.949045"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:41:23.950403"], ["updated_at", "2023-01-18 00:41:23.950403"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:41:23.951542"], ["updated_at", "2023-01-18 00:41:23.951542"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:41:23.952847"], ["updated_at", "2023-01-18 00:41:23.952847"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:41:23.954013"], ["updated_at", "2023-01-18 00:41:23.954013"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:41:23.955330"], ["updated_at", "2023-01-18 00:41:23.955330"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:41:23.956468"], ["updated_at", "2023-01-18 00:41:23.956468"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:41:23.957792"], ["updated_at", "2023-01-18 00:41:23.957792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:41:23.958958"], ["updated_at", "2023-01-18 00:41:23.958958"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:41:23.960280"], ["updated_at", "2023-01-18 00:41:23.960280"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:41:23.961432"], ["updated_at", "2023-01-18 00:41:23.961432"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:41:23.962756"], ["updated_at", "2023-01-18 00:41:23.962756"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:41:23.963882"], ["updated_at", "2023-01-18 00:41:23.963882"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:41:23.965217"], ["updated_at", "2023-01-18 00:41:23.965217"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:41:23.966260"], ["updated_at", "2023-01-18 00:41:23.966260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:41:23.967456"], ["updated_at", "2023-01-18 00:41:23.967456"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:41:23.968810"], ["updated_at", "2023-01-18 00:41:23.968810"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:41:23.970252"], ["updated_at", "2023-01-18 00:41:23.970252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:41:23.971331"], ["updated_at", "2023-01-18 00:41:23.971331"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:41:23.972300"], ["updated_at", "2023-01-18 00:41:23.972300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:23.983190"], ["updated_at", "2023-01-18 00:41:23.983190"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:23.984507"], ["updated_at", "2023-01-18 00:41:23.984507"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:23.985482"], ["updated_at", "2023-01-18 00:41:23.985482"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.986352"], ["updated_at", "2023-01-18 00:41:23.986352"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.987113"], ["updated_at", "2023-01-18 00:41:23.987113"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.987795"], ["updated_at", "2023-01-18 00:41:23.987795"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.988474"], ["updated_at", "2023-01-18 00:41:23.988474"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:23.989146"], ["updated_at", "2023-01-18 00:41:23.989146"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:23.989891"], ["updated_at", "2023-01-18 00:41:23.989891"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.990718"], ["updated_at", "2023-01-18 00:41:23.990718"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.991532"], ["updated_at", "2023-01-18 00:41:23.991532"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.992259"], ["updated_at", "2023-01-18 00:41:23.992259"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.992988"], ["updated_at", "2023-01-18 00:41:23.992988"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.993736"], ["updated_at", "2023-01-18 00:41:23.993736"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.994438"], ["updated_at", "2023-01-18 00:41:23.994438"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.995171"], ["updated_at", "2023-01-18 00:41:23.995171"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.995884"], ["updated_at", "2023-01-18 00:41:23.995884"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.996608"], ["updated_at", "2023-01-18 00:41:23.996608"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.997340"], ["updated_at", "2023-01-18 00:41:23.997340"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.998086"], ["updated_at", "2023-01-18 00:41:23.998086"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:23.998817"], ["updated_at", "2023-01-18 00:41:23.998817"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:24.009888"], ["updated_at", "2023-01-18 00:41:24.009888"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:24.011091"], ["updated_at", "2023-01-18 00:41:24.011091"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:24.011989"], ["updated_at", "2023-01-18 00:41:24.011989"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.012810"], ["updated_at", "2023-01-18 00:41:24.012810"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.013559"], ["updated_at", "2023-01-18 00:41:24.013559"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.014243"], ["updated_at", "2023-01-18 00:41:24.014243"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.014901"], ["updated_at", "2023-01-18 00:41:24.014901"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.015583"], ["updated_at", "2023-01-18 00:41:24.015583"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:24.016324"], ["updated_at", "2023-01-18 00:41:24.016324"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.017175"], ["updated_at", "2023-01-18 00:41:24.017175"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.017986"], ["updated_at", "2023-01-18 00:41:24.017986"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.018729"], ["updated_at", "2023-01-18 00:41:24.018729"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.019457"], ["updated_at", "2023-01-18 00:41:24.019457"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.020165"], ["updated_at", "2023-01-18 00:41:24.020165"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.020877"], ["updated_at", "2023-01-18 00:41:24.020877"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.021628"], ["updated_at", "2023-01-18 00:41:24.021628"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.022356"], ["updated_at", "2023-01-18 00:41:24.022356"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.023069"], ["updated_at", "2023-01-18 00:41:24.023069"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.023776"], ["updated_at", "2023-01-18 00:41:24.023776"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.024485"], ["updated_at", "2023-01-18 00:41:24.024485"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.025207"], ["updated_at", "2023-01-18 00:41:24.025207"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.040281"], ["updated_at", "2023-01-18 00:41:24.040281"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.041367"], ["updated_at", "2023-01-18 00:41:24.041367"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.042193"], ["updated_at", "2023-01-18 00:41:24.042193"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.042873"], ["updated_at", "2023-01-18 00:41:24.042873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.043683"], ["updated_at", "2023-01-18 00:41:24.043683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.044443"], ["updated_at", "2023-01-18 00:41:24.044443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.045165"], ["updated_at", "2023-01-18 00:41:24.045165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.045847"], ["updated_at", "2023-01-18 00:41:24.045847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.046544"], ["updated_at", "2023-01-18 00:41:24.046544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.047210"], ["updated_at", "2023-01-18 00:41:24.047210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.047895"], ["updated_at", "2023-01-18 00:41:24.047895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.048567"], ["updated_at", "2023-01-18 00:41:24.048567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.049252"], ["updated_at", "2023-01-18 00:41:24.049252"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.049932"], ["updated_at", "2023-01-18 00:41:24.049932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.050615"], ["updated_at", "2023-01-18 00:41:24.050615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.051305"], ["updated_at", "2023-01-18 00:41:24.051305"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.066222"], ["updated_at", "2023-01-18 00:41:24.066222"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.067202"], ["updated_at", "2023-01-18 00:41:24.067202"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.067953"], ["updated_at", "2023-01-18 00:41:24.067953"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.068718"], ["updated_at", "2023-01-18 00:41:24.068718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.069479"], ["updated_at", "2023-01-18 00:41:24.069479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.070196"], ["updated_at", "2023-01-18 00:41:24.070196"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.070888"], ["updated_at", "2023-01-18 00:41:24.070888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.071576"], ["updated_at", "2023-01-18 00:41:24.071576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.072263"], ["updated_at", "2023-01-18 00:41:24.072263"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.072944"], ["updated_at", "2023-01-18 00:41:24.072944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.073643"], ["updated_at", "2023-01-18 00:41:24.073643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.074328"], ["updated_at", "2023-01-18 00:41:24.074328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.075020"], ["updated_at", "2023-01-18 00:41:24.075020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.075703"], ["updated_at", "2023-01-18 00:41:24.075703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.076404"], ["updated_at", "2023-01-18 00:41:24.076404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.077083"], ["updated_at", "2023-01-18 00:41:24.077083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.092060"], ["updated_at", "2023-01-18 00:41:24.092060"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.093022"], ["updated_at", "2023-01-18 00:41:24.093022"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.093771"], ["updated_at", "2023-01-18 00:41:24.093771"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.094451"], ["updated_at", "2023-01-18 00:41:24.094451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.095185"], ["updated_at", "2023-01-18 00:41:24.095185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.095888"], ["updated_at", "2023-01-18 00:41:24.095888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.096585"], ["updated_at", "2023-01-18 00:41:24.096585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.097278"], ["updated_at", "2023-01-18 00:41:24.097278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.097965"], ["updated_at", "2023-01-18 00:41:24.097965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.098663"], ["updated_at", "2023-01-18 00:41:24.098663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.099352"], ["updated_at", "2023-01-18 00:41:24.099352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.100046"], ["updated_at", "2023-01-18 00:41:24.100046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.100713"], ["updated_at", "2023-01-18 00:41:24.100713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.101415"], ["updated_at", "2023-01-18 00:41:24.101415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.102100"], ["updated_at", "2023-01-18 00:41:24.102100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.102788"], ["updated_at", "2023-01-18 00:41:24.102788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.117615"], ["updated_at", "2023-01-18 00:41:24.117615"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.118570"], ["updated_at", "2023-01-18 00:41:24.118570"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.119302"], ["updated_at", "2023-01-18 00:41:24.119302"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.119978"], ["updated_at", "2023-01-18 00:41:24.119978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.120710"], ["updated_at", "2023-01-18 00:41:24.120710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.121430"], ["updated_at", "2023-01-18 00:41:24.121430"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.122133"], ["updated_at", "2023-01-18 00:41:24.122133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.122878"], ["updated_at", "2023-01-18 00:41:24.122878"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.123647"], ["updated_at", "2023-01-18 00:41:24.123647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.124327"], ["updated_at", "2023-01-18 00:41:24.124327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.125008"], ["updated_at", "2023-01-18 00:41:24.125008"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.125702"], ["updated_at", "2023-01-18 00:41:24.125702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.126384"], ["updated_at", "2023-01-18 00:41:24.126384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.127056"], ["updated_at", "2023-01-18 00:41:24.127056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.127722"], ["updated_at", "2023-01-18 00:41:24.127722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.128401"], ["updated_at", "2023-01-18 00:41:24.128401"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.143418"], ["updated_at", "2023-01-18 00:41:24.143418"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.144381"], ["updated_at", "2023-01-18 00:41:24.144381"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.145122"], ["updated_at", "2023-01-18 00:41:24.145122"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.145879"], ["updated_at", "2023-01-18 00:41:24.145879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.146627"], ["updated_at", "2023-01-18 00:41:24.146627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.147342"], ["updated_at", "2023-01-18 00:41:24.147342"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.148037"], ["updated_at", "2023-01-18 00:41:24.148037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.148731"], ["updated_at", "2023-01-18 00:41:24.148731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.149438"], ["updated_at", "2023-01-18 00:41:24.149438"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.150128"], ["updated_at", "2023-01-18 00:41:24.150128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.150836"], ["updated_at", "2023-01-18 00:41:24.150836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.151529"], ["updated_at", "2023-01-18 00:41:24.151529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.152223"], ["updated_at", "2023-01-18 00:41:24.152223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.152918"], ["updated_at", "2023-01-18 00:41:24.152918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.153625"], ["updated_at", "2023-01-18 00:41:24.153625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.154323"], ["updated_at", "2023-01-18 00:41:24.154323"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.169461"], ["updated_at", "2023-01-18 00:41:24.169461"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.170457"], ["updated_at", "2023-01-18 00:41:24.170457"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.171220"], ["updated_at", "2023-01-18 00:41:24.171220"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.171908"], ["updated_at", "2023-01-18 00:41:24.171908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.172650"], ["updated_at", "2023-01-18 00:41:24.172650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.173385"], ["updated_at", "2023-01-18 00:41:24.173385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.174098"], ["updated_at", "2023-01-18 00:41:24.174098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.174803"], ["updated_at", "2023-01-18 00:41:24.174803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.175513"], ["updated_at", "2023-01-18 00:41:24.175513"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.176218"], ["updated_at", "2023-01-18 00:41:24.176218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.176943"], ["updated_at", "2023-01-18 00:41:24.176943"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.177651"], ["updated_at", "2023-01-18 00:41:24.177651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.178364"], ["updated_at", "2023-01-18 00:41:24.178364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.179077"], ["updated_at", "2023-01-18 00:41:24.179077"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.179774"], ["updated_at", "2023-01-18 00:41:24.179774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.180489"], ["updated_at", "2023-01-18 00:41:24.180489"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-01-17 21:41:24 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:41:24.189680"], ["updated_at", "2023-01-18 00:41:24.189680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:41:24.191167"], ["updated_at", "2023-01-18 00:41:24.191167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:41:24.193973"], ["updated_at", "2023-01-18 00:41:24.193973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:41:24.195163"], ["updated_at", "2023-01-18 00:41:24.195163"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:41:24.197902"], ["updated_at", "2023-01-18 00:41:24.197902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:41:24.199121"], ["updated_at", "2023-01-18 00:41:24.199121"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:41:24.206826"], ["updated_at", "2023-01-18 00:41:24.206826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:41:24.208223"], ["updated_at", "2023-01-18 00:41:24.208223"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:41:24.209756"], ["updated_at", "2023-01-18 00:41:24.209756"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:41:24.211005"], ["updated_at", "2023-01-18 00:41:24.211005"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:41:24.212336"], ["updated_at", "2023-01-18 00:41:24.212336"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:41:24.213479"], ["updated_at", "2023-01-18 00:41:24.213479"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:41:24.214796"], ["updated_at", "2023-01-18 00:41:24.214796"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:41:24.215928"], ["updated_at", "2023-01-18 00:41:24.215928"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:41:24.217241"], ["updated_at", "2023-01-18 00:41:24.217241"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:41:24.218403"], ["updated_at", "2023-01-18 00:41:24.218403"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:41:24.219710"], ["updated_at", "2023-01-18 00:41:24.219710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:41:24.220832"], ["updated_at", "2023-01-18 00:41:24.220832"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:41:24.222160"], ["updated_at", "2023-01-18 00:41:24.222160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:41:24.223279"], ["updated_at", "2023-01-18 00:41:24.223279"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:41:24.224566"], ["updated_at", "2023-01-18 00:41:24.224566"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:41:24.225696"], ["updated_at", "2023-01-18 00:41:24.225696"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:41:24.227006"], ["updated_at", "2023-01-18 00:41:24.227006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:41:24.228133"], ["updated_at", "2023-01-18 00:41:24.228133"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:41:24.229444"], ["updated_at", "2023-01-18 00:41:24.229444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:41:24.230618"], ["updated_at", "2023-01-18 00:41:24.230618"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:41:24.231920"], ["updated_at", "2023-01-18 00:41:24.231920"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:41:24.233059"], ["updated_at", "2023-01-18 00:41:24.233059"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:41:24.234440"], ["updated_at", "2023-01-18 00:41:24.234440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:41:24.235610"], ["updated_at", "2023-01-18 00:41:24.235610"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:41:24.236913"], ["updated_at", "2023-01-18 00:41:24.236913"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:41:24.238057"], ["updated_at", "2023-01-18 00:41:24.238057"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:41:24.239370"], ["updated_at", "2023-01-18 00:41:24.239370"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:41:24.240486"], ["updated_at", "2023-01-18 00:41:24.240486"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:41:24.241797"], ["updated_at", "2023-01-18 00:41:24.241797"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:41:24.242933"], ["updated_at", "2023-01-18 00:41:24.242933"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:41:24.244227"], ["updated_at", "2023-01-18 00:41:24.244227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:41:24.245406"], ["updated_at", "2023-01-18 00:41:24.245406"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:41:24.246732"], ["updated_at", "2023-01-18 00:41:24.246732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:41:24.247859"], ["updated_at", "2023-01-18 00:41:24.247859"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:41:24.249176"], ["updated_at", "2023-01-18 00:41:24.249176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:41:24.250358"], ["updated_at", "2023-01-18 00:41:24.250358"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:41:24.251671"], ["updated_at", "2023-01-18 00:41:24.251671"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.252786"], ["updated_at", "2023-01-18 00:41:24.252786"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:41:24.254122"], ["updated_at", "2023-01-18 00:41:24.254122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:41:24.255258"], ["updated_at", "2023-01-18 00:41:24.255258"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:41:24.256572"], ["updated_at", "2023-01-18 00:41:24.256572"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:41:24.257707"], ["updated_at", "2023-01-18 00:41:24.257707"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:41:24.259018"], ["updated_at", "2023-01-18 00:41:24.259018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:41:24.260145"], ["updated_at", "2023-01-18 00:41:24.260145"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:41:24.261456"], ["updated_at", "2023-01-18 00:41:24.261456"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:41:24.262612"], ["updated_at", "2023-01-18 00:41:24.262612"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:41:24.263912"], ["updated_at", "2023-01-18 00:41:24.263912"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:41:24.265037"], ["updated_at", "2023-01-18 00:41:24.265037"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:41:24.266400"], ["updated_at", "2023-01-18 00:41:24.266400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:41:24.267539"], ["updated_at", "2023-01-18 00:41:24.267539"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:41:24.268865"], ["updated_at", "2023-01-18 00:41:24.268865"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:41:24.270003"], ["updated_at", "2023-01-18 00:41:24.270003"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:41:24.271324"], ["updated_at", "2023-01-18 00:41:24.271324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:41:24.272459"], ["updated_at", "2023-01-18 00:41:24.272459"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:41:24.273773"], ["updated_at", "2023-01-18 00:41:24.273773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:41:24.274921"], ["updated_at", "2023-01-18 00:41:24.274921"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:41:24.276245"], ["updated_at", "2023-01-18 00:41:24.276245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.277413"], ["updated_at", "2023-01-18 00:41:24.277413"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:41:24.278722"], ["updated_at", "2023-01-18 00:41:24.278722"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:41:24.279862"], ["updated_at", "2023-01-18 00:41:24.279862"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:41:24.281184"], ["updated_at", "2023-01-18 00:41:24.281184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:41:24.282316"], ["updated_at", "2023-01-18 00:41:24.282316"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:41:24.283612"], ["updated_at", "2023-01-18 00:41:24.283612"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.284739"], ["updated_at", "2023-01-18 00:41:24.284739"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:41:24.286058"], ["updated_at", "2023-01-18 00:41:24.286058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:41:24.287184"], ["updated_at", "2023-01-18 00:41:24.287184"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:41:24.288470"], ["updated_at", "2023-01-18 00:41:24.288470"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:41:24.289631"], ["updated_at", "2023-01-18 00:41:24.289631"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:41:24.290963"], ["updated_at", "2023-01-18 00:41:24.290963"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:41:24.292077"], ["updated_at", "2023-01-18 00:41:24.292077"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:41:24.293382"], ["updated_at", "2023-01-18 00:41:24.293382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:41:24.294511"], ["updated_at", "2023-01-18 00:41:24.294511"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:41:24.295805"], ["updated_at", "2023-01-18 00:41:24.295805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:41:24.296930"], ["updated_at", "2023-01-18 00:41:24.296930"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:41:24.298263"], ["updated_at", "2023-01-18 00:41:24.298263"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.299424"], ["updated_at", "2023-01-18 00:41:24.299424"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:41:24.300729"], ["updated_at", "2023-01-18 00:41:24.300729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:41:24.301874"], ["updated_at", "2023-01-18 00:41:24.301874"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:41:24.303178"], ["updated_at", "2023-01-18 00:41:24.303178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:41:24.304297"], ["updated_at", "2023-01-18 00:41:24.304297"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:41:24.305600"], ["updated_at", "2023-01-18 00:41:24.305600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:41:24.306742"], ["updated_at", "2023-01-18 00:41:24.306742"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:41:24.308046"], ["updated_at", "2023-01-18 00:41:24.308046"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:41:24.309181"], ["updated_at", "2023-01-18 00:41:24.309181"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:41:24.310483"], ["updated_at", "2023-01-18 00:41:24.310483"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:41:24.311605"], ["updated_at", "2023-01-18 00:41:24.311605"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:41:24.312891"], ["updated_at", "2023-01-18 00:41:24.312891"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:41:24.314023"], ["updated_at", "2023-01-18 00:41:24.314023"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:41:24.315339"], ["updated_at", "2023-01-18 00:41:24.315339"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:41:24.316378"], ["updated_at", "2023-01-18 00:41:24.316378"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:41:24.317569"], ["updated_at", "2023-01-18 00:41:24.317569"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:41:24.318968"], ["updated_at", "2023-01-18 00:41:24.318968"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:41:24.320383"], ["updated_at", "2023-01-18 00:41:24.320383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:41:24.321486"], ["updated_at", "2023-01-18 00:41:24.321486"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:41:24.322449"], ["updated_at", "2023-01-18 00:41:24.322449"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:24.333210"], ["updated_at", "2023-01-18 00:41:24.333210"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:24.334451"], ["updated_at", "2023-01-18 00:41:24.334451"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:24.335378"], ["updated_at", "2023-01-18 00:41:24.335378"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.336194"], ["updated_at", "2023-01-18 00:41:24.336194"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.336945"], ["updated_at", "2023-01-18 00:41:24.336945"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.337630"], ["updated_at", "2023-01-18 00:41:24.337630"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.338295"], ["updated_at", "2023-01-18 00:41:24.338295"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.338954"], ["updated_at", "2023-01-18 00:41:24.338954"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:24.339663"], ["updated_at", "2023-01-18 00:41:24.339663"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.340479"], ["updated_at", "2023-01-18 00:41:24.340479"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.341290"], ["updated_at", "2023-01-18 00:41:24.341290"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.342012"], ["updated_at", "2023-01-18 00:41:24.342012"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.342730"], ["updated_at", "2023-01-18 00:41:24.342730"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.343438"], ["updated_at", "2023-01-18 00:41:24.343438"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.344130"], ["updated_at", "2023-01-18 00:41:24.344130"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.344840"], ["updated_at", "2023-01-18 00:41:24.344840"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.345562"], ["updated_at", "2023-01-18 00:41:24.345562"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.346259"], ["updated_at", "2023-01-18 00:41:24.346259"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.346968"], ["updated_at", "2023-01-18 00:41:24.346968"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.347688"], ["updated_at", "2023-01-18 00:41:24.347688"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.348403"], ["updated_at", "2023-01-18 00:41:24.348403"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:24.359245"], ["updated_at", "2023-01-18 00:41:24.359245"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:24.360428"], ["updated_at", "2023-01-18 00:41:24.360428"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:24.361299"], ["updated_at", "2023-01-18 00:41:24.361299"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.362152"], ["updated_at", "2023-01-18 00:41:24.362152"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.362859"], ["updated_at", "2023-01-18 00:41:24.362859"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.363542"], ["updated_at", "2023-01-18 00:41:24.363542"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.364212"], ["updated_at", "2023-01-18 00:41:24.364212"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.364862"], ["updated_at", "2023-01-18 00:41:24.364862"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:24.365610"], ["updated_at", "2023-01-18 00:41:24.365610"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.366438"], ["updated_at", "2023-01-18 00:41:24.366438"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.367199"], ["updated_at", "2023-01-18 00:41:24.367199"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.367930"], ["updated_at", "2023-01-18 00:41:24.367930"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.368656"], ["updated_at", "2023-01-18 00:41:24.368656"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.369370"], ["updated_at", "2023-01-18 00:41:24.369370"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.370115"], ["updated_at", "2023-01-18 00:41:24.370115"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.370831"], ["updated_at", "2023-01-18 00:41:24.370831"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.371532"], ["updated_at", "2023-01-18 00:41:24.371532"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.372250"], ["updated_at", "2023-01-18 00:41:24.372250"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.372963"], ["updated_at", "2023-01-18 00:41:24.372963"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.373685"], ["updated_at", "2023-01-18 00:41:24.373685"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.374424"], ["updated_at", "2023-01-18 00:41:24.374424"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.389700"], ["updated_at", "2023-01-18 00:41:24.389700"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.390749"], ["updated_at", "2023-01-18 00:41:24.390749"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.391543"], ["updated_at", "2023-01-18 00:41:24.391543"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.392238"], ["updated_at", "2023-01-18 00:41:24.392238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.392996"], ["updated_at", "2023-01-18 00:41:24.392996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.393775"], ["updated_at", "2023-01-18 00:41:24.393775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.394472"], ["updated_at", "2023-01-18 00:41:24.394472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.395151"], ["updated_at", "2023-01-18 00:41:24.395151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.395818"], ["updated_at", "2023-01-18 00:41:24.395818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.396501"], ["updated_at", "2023-01-18 00:41:24.396501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.397185"], ["updated_at", "2023-01-18 00:41:24.397185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.397855"], ["updated_at", "2023-01-18 00:41:24.397855"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.398546"], ["updated_at", "2023-01-18 00:41:24.398546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.399222"], ["updated_at", "2023-01-18 00:41:24.399222"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.399894"], ["updated_at", "2023-01-18 00:41:24.399894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.400574"], ["updated_at", "2023-01-18 00:41:24.400574"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.415201"], ["updated_at", "2023-01-18 00:41:24.415201"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.416137"], ["updated_at", "2023-01-18 00:41:24.416137"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.416862"], ["updated_at", "2023-01-18 00:41:24.416862"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.417553"], ["updated_at", "2023-01-18 00:41:24.417553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.418271"], ["updated_at", "2023-01-18 00:41:24.418271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.418993"], ["updated_at", "2023-01-18 00:41:24.418993"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.419687"], ["updated_at", "2023-01-18 00:41:24.419687"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.420359"], ["updated_at", "2023-01-18 00:41:24.420359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.421074"], ["updated_at", "2023-01-18 00:41:24.421074"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.421763"], ["updated_at", "2023-01-18 00:41:24.421763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.422424"], ["updated_at", "2023-01-18 00:41:24.422424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.423107"], ["updated_at", "2023-01-18 00:41:24.423107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.423786"], ["updated_at", "2023-01-18 00:41:24.423786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.424449"], ["updated_at", "2023-01-18 00:41:24.424449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.425126"], ["updated_at", "2023-01-18 00:41:24.425126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.425818"], ["updated_at", "2023-01-18 00:41:24.425818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.440544"], ["updated_at", "2023-01-18 00:41:24.440544"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.441512"], ["updated_at", "2023-01-18 00:41:24.441512"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.442259"], ["updated_at", "2023-01-18 00:41:24.442259"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.442938"], ["updated_at", "2023-01-18 00:41:24.442938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.443651"], ["updated_at", "2023-01-18 00:41:24.443651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.444351"], ["updated_at", "2023-01-18 00:41:24.444351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.445033"], ["updated_at", "2023-01-18 00:41:24.445033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.445722"], ["updated_at", "2023-01-18 00:41:24.445722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.446401"], ["updated_at", "2023-01-18 00:41:24.446401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.447093"], ["updated_at", "2023-01-18 00:41:24.447093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.447773"], ["updated_at", "2023-01-18 00:41:24.447773"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.448431"], ["updated_at", "2023-01-18 00:41:24.448431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.449109"], ["updated_at", "2023-01-18 00:41:24.449109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.449799"], ["updated_at", "2023-01-18 00:41:24.449799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.450457"], ["updated_at", "2023-01-18 00:41:24.450457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.451144"], ["updated_at", "2023-01-18 00:41:24.451144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.466000"], ["updated_at", "2023-01-18 00:41:24.466000"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.466956"], ["updated_at", "2023-01-18 00:41:24.466956"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.467667"], ["updated_at", "2023-01-18 00:41:24.467667"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.468397"], ["updated_at", "2023-01-18 00:41:24.468397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.469147"], ["updated_at", "2023-01-18 00:41:24.469147"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.469863"], ["updated_at", "2023-01-18 00:41:24.469863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.470549"], ["updated_at", "2023-01-18 00:41:24.470549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.471231"], ["updated_at", "2023-01-18 00:41:24.471231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.471894"], ["updated_at", "2023-01-18 00:41:24.471894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.472572"], ["updated_at", "2023-01-18 00:41:24.472572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.473258"], ["updated_at", "2023-01-18 00:41:24.473258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.473949"], ["updated_at", "2023-01-18 00:41:24.473949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.474625"], ["updated_at", "2023-01-18 00:41:24.474625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.475289"], ["updated_at", "2023-01-18 00:41:24.475289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.475970"], ["updated_at", "2023-01-18 00:41:24.475970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.476657"], ["updated_at", "2023-01-18 00:41:24.476657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.491529"], ["updated_at", "2023-01-18 00:41:24.491529"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.492468"], ["updated_at", "2023-01-18 00:41:24.492468"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.493212"], ["updated_at", "2023-01-18 00:41:24.493212"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.493896"], ["updated_at", "2023-01-18 00:41:24.493896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.494615"], ["updated_at", "2023-01-18 00:41:24.494615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.495316"], ["updated_at", "2023-01-18 00:41:24.495316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.496001"], ["updated_at", "2023-01-18 00:41:24.496001"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.496665"], ["updated_at", "2023-01-18 00:41:24.496665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.497356"], ["updated_at", "2023-01-18 00:41:24.497356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.498036"], ["updated_at", "2023-01-18 00:41:24.498036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.498706"], ["updated_at", "2023-01-18 00:41:24.498706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.499396"], ["updated_at", "2023-01-18 00:41:24.499396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.500061"], ["updated_at", "2023-01-18 00:41:24.500061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.500740"], ["updated_at", "2023-01-18 00:41:24.500740"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.501431"], ["updated_at", "2023-01-18 00:41:24.501431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.502095"], ["updated_at", "2023-01-18 00:41:24.502095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.516993"], ["updated_at", "2023-01-18 00:41:24.516993"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.517985"], ["updated_at", "2023-01-18 00:41:24.517985"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.518723"], ["updated_at", "2023-01-18 00:41:24.518723"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.519395"], ["updated_at", "2023-01-18 00:41:24.519395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.520111"], ["updated_at", "2023-01-18 00:41:24.520111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.520807"], ["updated_at", "2023-01-18 00:41:24.520807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.521500"], ["updated_at", "2023-01-18 00:41:24.521500"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.522187"], ["updated_at", "2023-01-18 00:41:24.522187"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.522884"], ["updated_at", "2023-01-18 00:41:24.522884"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.523554"], ["updated_at", "2023-01-18 00:41:24.523554"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.524241"], ["updated_at", "2023-01-18 00:41:24.524241"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.524925"], ["updated_at", "2023-01-18 00:41:24.524925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.525605"], ["updated_at", "2023-01-18 00:41:24.525605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.526292"], ["updated_at", "2023-01-18 00:41:24.526292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.526978"], ["updated_at", "2023-01-18 00:41:24.526978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.527673"], ["updated_at", "2023-01-18 00:41:24.527673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-01-17 21:41:24 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:41:24.536174"], ["updated_at", "2023-01-18 00:41:24.536174"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:41:24.537641"], ["updated_at", "2023-01-18 00:41:24.537641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:41:24.540310"], ["updated_at", "2023-01-18 00:41:24.540310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:41:24.541472"], ["updated_at", "2023-01-18 00:41:24.541472"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:41:24.544082"], ["updated_at", "2023-01-18 00:41:24.544082"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:41:24.545239"], ["updated_at", "2023-01-18 00:41:24.545239"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:41:24.547257"], ["updated_at", "2023-01-18 00:41:24.547257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:41:24.548608"], ["updated_at", "2023-01-18 00:41:24.548608"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:41:24.550151"], ["updated_at", "2023-01-18 00:41:24.550151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:41:24.551403"], ["updated_at", "2023-01-18 00:41:24.551403"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:41:24.552721"], ["updated_at", "2023-01-18 00:41:24.552721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:41:24.553891"], ["updated_at", "2023-01-18 00:41:24.553891"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:41:24.555196"], ["updated_at", "2023-01-18 00:41:24.555196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:41:24.556333"], ["updated_at", "2023-01-18 00:41:24.556333"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:41:24.557676"], ["updated_at", "2023-01-18 00:41:24.557676"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:41:24.558826"], ["updated_at", "2023-01-18 00:41:24.558826"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:41:24.560123"], ["updated_at", "2023-01-18 00:41:24.560123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:41:24.561282"], ["updated_at", "2023-01-18 00:41:24.561282"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:41:24.562589"], ["updated_at", "2023-01-18 00:41:24.562589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:41:24.563710"], ["updated_at", "2023-01-18 00:41:24.563710"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:41:24.565020"], ["updated_at", "2023-01-18 00:41:24.565020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:41:24.566214"], ["updated_at", "2023-01-18 00:41:24.566214"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:41:24.567523"], ["updated_at", "2023-01-18 00:41:24.567523"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:41:24.568660"], ["updated_at", "2023-01-18 00:41:24.568660"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:41:24.569988"], ["updated_at", "2023-01-18 00:41:24.569988"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:41:24.571120"], ["updated_at", "2023-01-18 00:41:24.571120"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:41:24.572428"], ["updated_at", "2023-01-18 00:41:24.572428"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:41:24.573571"], ["updated_at", "2023-01-18 00:41:24.573571"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:41:24.574902"], ["updated_at", "2023-01-18 00:41:24.574902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:41:24.576034"], ["updated_at", "2023-01-18 00:41:24.576034"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:41:24.577337"], ["updated_at", "2023-01-18 00:41:24.577337"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:41:24.578468"], ["updated_at", "2023-01-18 00:41:24.578468"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:41:24.579768"], ["updated_at", "2023-01-18 00:41:24.579768"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:41:24.580902"], ["updated_at", "2023-01-18 00:41:24.580902"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:41:24.582212"], ["updated_at", "2023-01-18 00:41:24.582212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:41:24.583359"], ["updated_at", "2023-01-18 00:41:24.583359"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:41:24.584675"], ["updated_at", "2023-01-18 00:41:24.584675"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:41:24.585817"], ["updated_at", "2023-01-18 00:41:24.585817"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:41:24.587107"], ["updated_at", "2023-01-18 00:41:24.587107"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:41:24.588239"], ["updated_at", "2023-01-18 00:41:24.588239"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:41:24.589557"], ["updated_at", "2023-01-18 00:41:24.589557"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:41:24.590693"], ["updated_at", "2023-01-18 00:41:24.590693"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:41:24.592017"], ["updated_at", "2023-01-18 00:41:24.592017"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.593172"], ["updated_at", "2023-01-18 00:41:24.593172"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:41:24.594478"], ["updated_at", "2023-01-18 00:41:24.594478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:41:24.595600"], ["updated_at", "2023-01-18 00:41:24.595600"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:41:24.596906"], ["updated_at", "2023-01-18 00:41:24.596906"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:41:24.598052"], ["updated_at", "2023-01-18 00:41:24.598052"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:41:24.599367"], ["updated_at", "2023-01-18 00:41:24.599367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:41:24.600504"], ["updated_at", "2023-01-18 00:41:24.600504"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:41:24.601855"], ["updated_at", "2023-01-18 00:41:24.601855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:41:24.603023"], ["updated_at", "2023-01-18 00:41:24.603023"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:41:24.604332"], ["updated_at", "2023-01-18 00:41:24.604332"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:41:24.605471"], ["updated_at", "2023-01-18 00:41:24.605471"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:41:24.606831"], ["updated_at", "2023-01-18 00:41:24.606831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:41:24.607972"], ["updated_at", "2023-01-18 00:41:24.607972"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:41:24.609278"], ["updated_at", "2023-01-18 00:41:24.609278"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:41:24.610427"], ["updated_at", "2023-01-18 00:41:24.610427"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:41:24.611723"], ["updated_at", "2023-01-18 00:41:24.611723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:41:24.612865"], ["updated_at", "2023-01-18 00:41:24.612865"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:41:24.614186"], ["updated_at", "2023-01-18 00:41:24.614186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:41:24.615320"], ["updated_at", "2023-01-18 00:41:24.615320"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:41:24.616618"], ["updated_at", "2023-01-18 00:41:24.616618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.617762"], ["updated_at", "2023-01-18 00:41:24.617762"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:41:24.619075"], ["updated_at", "2023-01-18 00:41:24.619075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:41:24.620233"], ["updated_at", "2023-01-18 00:41:24.620233"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:41:24.621555"], ["updated_at", "2023-01-18 00:41:24.621555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:41:24.622699"], ["updated_at", "2023-01-18 00:41:24.622699"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:41:24.624016"], ["updated_at", "2023-01-18 00:41:24.624016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.625135"], ["updated_at", "2023-01-18 00:41:24.625135"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:41:24.626453"], ["updated_at", "2023-01-18 00:41:24.626453"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:41:24.627595"], ["updated_at", "2023-01-18 00:41:24.627595"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:41:24.628915"], ["updated_at", "2023-01-18 00:41:24.628915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:41:24.630096"], ["updated_at", "2023-01-18 00:41:24.630096"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:41:24.631399"], ["updated_at", "2023-01-18 00:41:24.631399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:41:24.632526"], ["updated_at", "2023-01-18 00:41:24.632526"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:41:24.633857"], ["updated_at", "2023-01-18 00:41:24.633857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:41:24.635076"], ["updated_at", "2023-01-18 00:41:24.635076"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:41:24.636506"], ["updated_at", "2023-01-18 00:41:24.636506"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:41:24.637675"], ["updated_at", "2023-01-18 00:41:24.637675"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:41:24.638982"], ["updated_at", "2023-01-18 00:41:24.638982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.640116"], ["updated_at", "2023-01-18 00:41:24.640116"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:41:24.641417"], ["updated_at", "2023-01-18 00:41:24.641417"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:41:24.642573"], ["updated_at", "2023-01-18 00:41:24.642573"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:41:24.643875"], ["updated_at", "2023-01-18 00:41:24.643875"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:41:24.645004"], ["updated_at", "2023-01-18 00:41:24.645004"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:41:24.646356"], ["updated_at", "2023-01-18 00:41:24.646356"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:41:24.647502"], ["updated_at", "2023-01-18 00:41:24.647502"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:41:24.648802"], ["updated_at", "2023-01-18 00:41:24.648802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:41:24.649955"], ["updated_at", "2023-01-18 00:41:24.649955"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:41:24.651278"], ["updated_at", "2023-01-18 00:41:24.651278"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:41:24.652402"], ["updated_at", "2023-01-18 00:41:24.652402"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:41:24.653718"], ["updated_at", "2023-01-18 00:41:24.653718"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:41:24.654868"], ["updated_at", "2023-01-18 00:41:24.654868"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:41:24.656177"], ["updated_at", "2023-01-18 00:41:24.656177"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:41:24.657234"], ["updated_at", "2023-01-18 00:41:24.657234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:41:24.658418"], ["updated_at", "2023-01-18 00:41:24.658418"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:41:24.659732"], ["updated_at", "2023-01-18 00:41:24.659732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:41:24.661126"], ["updated_at", "2023-01-18 00:41:24.661126"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:41:24.662240"], ["updated_at", "2023-01-18 00:41:24.662240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:41:24.663201"], ["updated_at", "2023-01-18 00:41:24.663201"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:24.674123"], ["updated_at", "2023-01-18 00:41:24.674123"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:24.675391"], ["updated_at", "2023-01-18 00:41:24.675391"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:24.676330"], ["updated_at", "2023-01-18 00:41:24.676330"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.677147"], ["updated_at", "2023-01-18 00:41:24.677147"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.677943"], ["updated_at", "2023-01-18 00:41:24.677943"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.678624"], ["updated_at", "2023-01-18 00:41:24.678624"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.679276"], ["updated_at", "2023-01-18 00:41:24.679276"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.679940"], ["updated_at", "2023-01-18 00:41:24.679940"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:24.680664"], ["updated_at", "2023-01-18 00:41:24.680664"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.681495"], ["updated_at", "2023-01-18 00:41:24.681495"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.682307"], ["updated_at", "2023-01-18 00:41:24.682307"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.683047"], ["updated_at", "2023-01-18 00:41:24.683047"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.683765"], ["updated_at", "2023-01-18 00:41:24.683765"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.684466"], ["updated_at", "2023-01-18 00:41:24.684466"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.685191"], ["updated_at", "2023-01-18 00:41:24.685191"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.685914"], ["updated_at", "2023-01-18 00:41:24.685914"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.686613"], ["updated_at", "2023-01-18 00:41:24.686613"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.687346"], ["updated_at", "2023-01-18 00:41:24.687346"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.688075"], ["updated_at", "2023-01-18 00:41:24.688075"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.688780"], ["updated_at", "2023-01-18 00:41:24.688780"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.689517"], ["updated_at", "2023-01-18 00:41:24.689517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:24.700510"], ["updated_at", "2023-01-18 00:41:24.700510"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:24.701721"], ["updated_at", "2023-01-18 00:41:24.701721"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:24.702620"], ["updated_at", "2023-01-18 00:41:24.702620"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.703442"], ["updated_at", "2023-01-18 00:41:24.703442"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.704172"], ["updated_at", "2023-01-18 00:41:24.704172"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.704833"], ["updated_at", "2023-01-18 00:41:24.704833"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.705519"], ["updated_at", "2023-01-18 00:41:24.705519"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:24.706187"], ["updated_at", "2023-01-18 00:41:24.706187"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:24.706898"], ["updated_at", "2023-01-18 00:41:24.706898"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.707711"], ["updated_at", "2023-01-18 00:41:24.707711"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.708484"], ["updated_at", "2023-01-18 00:41:24.708484"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.709202"], ["updated_at", "2023-01-18 00:41:24.709202"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.709948"], ["updated_at", "2023-01-18 00:41:24.709948"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.710676"], ["updated_at", "2023-01-18 00:41:24.710676"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.711392"], ["updated_at", "2023-01-18 00:41:24.711392"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.712093"], ["updated_at", "2023-01-18 00:41:24.712093"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.712810"], ["updated_at", "2023-01-18 00:41:24.712810"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.713538"], ["updated_at", "2023-01-18 00:41:24.713538"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.714242"], ["updated_at", "2023-01-18 00:41:24.714242"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.714957"], ["updated_at", "2023-01-18 00:41:24.714957"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:24.715672"], ["updated_at", "2023-01-18 00:41:24.715672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.730647"], ["updated_at", "2023-01-18 00:41:24.730647"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.731708"], ["updated_at", "2023-01-18 00:41:24.731708"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.732509"], ["updated_at", "2023-01-18 00:41:24.732509"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.733218"], ["updated_at", "2023-01-18 00:41:24.733218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.734017"], ["updated_at", "2023-01-18 00:41:24.734017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.734795"], ["updated_at", "2023-01-18 00:41:24.734795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.735473"], ["updated_at", "2023-01-18 00:41:24.735473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.736162"], ["updated_at", "2023-01-18 00:41:24.736162"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.736846"], ["updated_at", "2023-01-18 00:41:24.736846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.737543"], ["updated_at", "2023-01-18 00:41:24.737543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.738222"], ["updated_at", "2023-01-18 00:41:24.738222"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.738889"], ["updated_at", "2023-01-18 00:41:24.738889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.739574"], ["updated_at", "2023-01-18 00:41:24.739574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.740256"], ["updated_at", "2023-01-18 00:41:24.740256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.740923"], ["updated_at", "2023-01-18 00:41:24.740923"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:24.741622"], ["updated_at", "2023-01-18 00:41:24.741622"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.756306"], ["updated_at", "2023-01-18 00:41:24.756306"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.757274"], ["updated_at", "2023-01-18 00:41:24.757274"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.757997"], ["updated_at", "2023-01-18 00:41:24.757997"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.758679"], ["updated_at", "2023-01-18 00:41:24.758679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.759407"], ["updated_at", "2023-01-18 00:41:24.759407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.760123"], ["updated_at", "2023-01-18 00:41:24.760123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.760791"], ["updated_at", "2023-01-18 00:41:24.760791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.761484"], ["updated_at", "2023-01-18 00:41:24.761484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.762159"], ["updated_at", "2023-01-18 00:41:24.762159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.762846"], ["updated_at", "2023-01-18 00:41:24.762846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.763512"], ["updated_at", "2023-01-18 00:41:24.763512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.764186"], ["updated_at", "2023-01-18 00:41:24.764186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.764862"], ["updated_at", "2023-01-18 00:41:24.764862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.765554"], ["updated_at", "2023-01-18 00:41:24.765554"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.766238"], ["updated_at", "2023-01-18 00:41:24.766238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:24.766904"], ["updated_at", "2023-01-18 00:41:24.766904"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.781507"], ["updated_at", "2023-01-18 00:41:24.781507"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.782441"], ["updated_at", "2023-01-18 00:41:24.782441"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.783177"], ["updated_at", "2023-01-18 00:41:24.783177"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.783855"], ["updated_at", "2023-01-18 00:41:24.783855"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.784578"], ["updated_at", "2023-01-18 00:41:24.784578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.785312"], ["updated_at", "2023-01-18 00:41:24.785312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.786010"], ["updated_at", "2023-01-18 00:41:24.786010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.786697"], ["updated_at", "2023-01-18 00:41:24.786697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.787361"], ["updated_at", "2023-01-18 00:41:24.787361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.788046"], ["updated_at", "2023-01-18 00:41:24.788046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.788725"], ["updated_at", "2023-01-18 00:41:24.788725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.789431"], ["updated_at", "2023-01-18 00:41:24.789431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.790122"], ["updated_at", "2023-01-18 00:41:24.790122"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.790805"], ["updated_at", "2023-01-18 00:41:24.790805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.791482"], ["updated_at", "2023-01-18 00:41:24.791482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:24.792145"], ["updated_at", "2023-01-18 00:41:24.792145"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.806867"], ["updated_at", "2023-01-18 00:41:24.806867"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.807787"], ["updated_at", "2023-01-18 00:41:24.807787"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.808524"], ["updated_at", "2023-01-18 00:41:24.808524"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.809212"], ["updated_at", "2023-01-18 00:41:24.809212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.809949"], ["updated_at", "2023-01-18 00:41:24.809949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.810653"], ["updated_at", "2023-01-18 00:41:24.810653"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.811348"], ["updated_at", "2023-01-18 00:41:24.811348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.812040"], ["updated_at", "2023-01-18 00:41:24.812040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.812717"], ["updated_at", "2023-01-18 00:41:24.812717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.813422"], ["updated_at", "2023-01-18 00:41:24.813422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.814110"], ["updated_at", "2023-01-18 00:41:24.814110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.814792"], ["updated_at", "2023-01-18 00:41:24.814792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.815477"], ["updated_at", "2023-01-18 00:41:24.815477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.816155"], ["updated_at", "2023-01-18 00:41:24.816155"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.816843"], ["updated_at", "2023-01-18 00:41:24.816843"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:24.817549"], ["updated_at", "2023-01-18 00:41:24.817549"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.832774"], ["updated_at", "2023-01-18 00:41:24.832774"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.833728"], ["updated_at", "2023-01-18 00:41:24.833728"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.834492"], ["updated_at", "2023-01-18 00:41:24.834492"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.835187"], ["updated_at", "2023-01-18 00:41:24.835187"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.835920"], ["updated_at", "2023-01-18 00:41:24.835920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.836644"], ["updated_at", "2023-01-18 00:41:24.836644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.837353"], ["updated_at", "2023-01-18 00:41:24.837353"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.838025"], ["updated_at", "2023-01-18 00:41:24.838025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.838721"], ["updated_at", "2023-01-18 00:41:24.838721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.839433"], ["updated_at", "2023-01-18 00:41:24.839433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.840110"], ["updated_at", "2023-01-18 00:41:24.840110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.840810"], ["updated_at", "2023-01-18 00:41:24.840810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.841526"], ["updated_at", "2023-01-18 00:41:24.841526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.842210"], ["updated_at", "2023-01-18 00:41:24.842210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.842929"], ["updated_at", "2023-01-18 00:41:24.842929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:24.843671"], ["updated_at", "2023-01-18 00:41:24.843671"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:24.860285"], ["updated_at", "2023-01-18 00:41:24.860285"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:24.861321"], ["updated_at", "2023-01-18 00:41:24.861321"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:24.862160"], ["updated_at", "2023-01-18 00:41:24.862160"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:24.863054"], ["updated_at", "2023-01-18 00:41:24.863054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.864167"], ["updated_at", "2023-01-18 00:41:24.864167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.865027"], ["updated_at", "2023-01-18 00:41:24.865027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.865865"], ["updated_at", "2023-01-18 00:41:24.865865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.866617"], ["updated_at", "2023-01-18 00:41:24.866617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.867319"], ["updated_at", "2023-01-18 00:41:24.867319"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.868089"], ["updated_at", "2023-01-18 00:41:24.868089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.868908"], ["updated_at", "2023-01-18 00:41:24.868908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.869628"], ["updated_at", "2023-01-18 00:41:24.869628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.870413"], ["updated_at", "2023-01-18 00:41:24.870413"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.871151"], ["updated_at", "2023-01-18 00:41:24.871151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.872016"], ["updated_at", "2023-01-18 00:41:24.872016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:24.873025"], ["updated_at", "2023-01-18 00:41:24.873025"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-01-17 21:41:24 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:41:24.882911"], ["updated_at", "2023-01-18 00:41:24.882911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:41:24.884402"], ["updated_at", "2023-01-18 00:41:24.884402"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:41:24.887204"], ["updated_at", "2023-01-18 00:41:24.887204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:41:24.888414"], ["updated_at", "2023-01-18 00:41:24.888414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:41:24.891202"], ["updated_at", "2023-01-18 00:41:24.891202"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:41:24.892413"], ["updated_at", "2023-01-18 00:41:24.892413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:41:24.894578"], ["updated_at", "2023-01-18 00:41:24.894578"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:41:24.896005"], ["updated_at", "2023-01-18 00:41:24.896005"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:41:24.897916"], ["updated_at", "2023-01-18 00:41:24.897916"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:41:24.899280"], ["updated_at", "2023-01-18 00:41:24.899280"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:41:24.900654"], ["updated_at", "2023-01-18 00:41:24.900654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:41:24.901939"], ["updated_at", "2023-01-18 00:41:24.901939"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:41:24.903347"], ["updated_at", "2023-01-18 00:41:24.903347"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:41:24.904503"], ["updated_at", "2023-01-18 00:41:24.904503"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:41:24.905836"], ["updated_at", "2023-01-18 00:41:24.905836"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:41:24.907066"], ["updated_at", "2023-01-18 00:41:24.907066"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:41:24.908502"], ["updated_at", "2023-01-18 00:41:24.908502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:41:24.909698"], ["updated_at", "2023-01-18 00:41:24.909698"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:41:24.911033"], ["updated_at", "2023-01-18 00:41:24.911033"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:41:24.912219"], ["updated_at", "2023-01-18 00:41:24.912219"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:41:24.913782"], ["updated_at", "2023-01-18 00:41:24.913782"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:41:24.915148"], ["updated_at", "2023-01-18 00:41:24.915148"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:41:24.916516"], ["updated_at", "2023-01-18 00:41:24.916516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:41:24.917831"], ["updated_at", "2023-01-18 00:41:24.917831"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:41:24.919212"], ["updated_at", "2023-01-18 00:41:24.919212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:41:24.920374"], ["updated_at", "2023-01-18 00:41:24.920374"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:41:24.921746"], ["updated_at", "2023-01-18 00:41:24.921746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:41:24.922929"], ["updated_at", "2023-01-18 00:41:24.922929"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:41:24.924285"], ["updated_at", "2023-01-18 00:41:24.924285"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:41:24.925438"], ["updated_at", "2023-01-18 00:41:24.925438"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:41:24.926771"], ["updated_at", "2023-01-18 00:41:24.926771"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:41:24.927952"], ["updated_at", "2023-01-18 00:41:24.927952"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:41:24.929322"], ["updated_at", "2023-01-18 00:41:24.929322"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:41:24.930775"], ["updated_at", "2023-01-18 00:41:24.930775"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:41:24.932251"], ["updated_at", "2023-01-18 00:41:24.932251"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:41:24.933452"], ["updated_at", "2023-01-18 00:41:24.933452"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:41:24.934789"], ["updated_at", "2023-01-18 00:41:24.934789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:41:24.935927"], ["updated_at", "2023-01-18 00:41:24.935927"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:41:24.937257"], ["updated_at", "2023-01-18 00:41:24.937257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:41:24.938468"], ["updated_at", "2023-01-18 00:41:24.938468"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:41:24.939795"], ["updated_at", "2023-01-18 00:41:24.939795"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:41:24.940964"], ["updated_at", "2023-01-18 00:41:24.940964"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:41:24.942342"], ["updated_at", "2023-01-18 00:41:24.942342"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.943495"], ["updated_at", "2023-01-18 00:41:24.943495"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:41:24.944812"], ["updated_at", "2023-01-18 00:41:24.944812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:41:24.946030"], ["updated_at", "2023-01-18 00:41:24.946030"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:41:24.947603"], ["updated_at", "2023-01-18 00:41:24.947603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:41:24.948859"], ["updated_at", "2023-01-18 00:41:24.948859"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:41:24.950273"], ["updated_at", "2023-01-18 00:41:24.950273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:41:24.951440"], ["updated_at", "2023-01-18 00:41:24.951440"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:41:24.952773"], ["updated_at", "2023-01-18 00:41:24.952773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:41:24.953967"], ["updated_at", "2023-01-18 00:41:24.953967"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:41:24.955326"], ["updated_at", "2023-01-18 00:41:24.955326"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:41:24.956504"], ["updated_at", "2023-01-18 00:41:24.956504"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:41:24.957881"], ["updated_at", "2023-01-18 00:41:24.957881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:41:24.959066"], ["updated_at", "2023-01-18 00:41:24.959066"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:41:24.960393"], ["updated_at", "2023-01-18 00:41:24.960393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:41:24.961547"], ["updated_at", "2023-01-18 00:41:24.961547"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:41:24.962913"], ["updated_at", "2023-01-18 00:41:24.962913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:41:24.964314"], ["updated_at", "2023-01-18 00:41:24.964314"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:41:24.965758"], ["updated_at", "2023-01-18 00:41:24.965758"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:41:24.966956"], ["updated_at", "2023-01-18 00:41:24.966956"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:41:24.968300"], ["updated_at", "2023-01-18 00:41:24.968300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.969480"], ["updated_at", "2023-01-18 00:41:24.969480"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:41:24.970824"], ["updated_at", "2023-01-18 00:41:24.970824"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:41:24.971976"], ["updated_at", "2023-01-18 00:41:24.971976"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:41:24.973314"], ["updated_at", "2023-01-18 00:41:24.973314"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:41:24.974470"], ["updated_at", "2023-01-18 00:41:24.974470"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:41:24.975806"], ["updated_at", "2023-01-18 00:41:24.975806"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.976956"], ["updated_at", "2023-01-18 00:41:24.976956"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:41:24.978383"], ["updated_at", "2023-01-18 00:41:24.978383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:41:24.979563"], ["updated_at", "2023-01-18 00:41:24.979563"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:41:24.981106"], ["updated_at", "2023-01-18 00:41:24.981106"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:41:24.982366"], ["updated_at", "2023-01-18 00:41:24.982366"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:41:24.983681"], ["updated_at", "2023-01-18 00:41:24.983681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:41:24.984832"], ["updated_at", "2023-01-18 00:41:24.984832"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:41:24.986155"], ["updated_at", "2023-01-18 00:41:24.986155"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:41:24.987316"], ["updated_at", "2023-01-18 00:41:24.987316"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:41:24.988632"], ["updated_at", "2023-01-18 00:41:24.988632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:41:24.989795"], ["updated_at", "2023-01-18 00:41:24.989795"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:41:24.991102"], ["updated_at", "2023-01-18 00:41:24.991102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:41:24.992270"], ["updated_at", "2023-01-18 00:41:24.992270"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:41:24.993639"], ["updated_at", "2023-01-18 00:41:24.993639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:41:24.994875"], ["updated_at", "2023-01-18 00:41:24.994875"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:41:24.996234"], ["updated_at", "2023-01-18 00:41:24.996234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:41:24.997639"], ["updated_at", "2023-01-18 00:41:24.997639"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:41:24.999083"], ["updated_at", "2023-01-18 00:41:24.999083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:41:25.000251"], ["updated_at", "2023-01-18 00:41:25.000251"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:41:25.001624"], ["updated_at", "2023-01-18 00:41:25.001624"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:41:25.002859"], ["updated_at", "2023-01-18 00:41:25.002859"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:41:25.004194"], ["updated_at", "2023-01-18 00:41:25.004194"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:41:25.005342"], ["updated_at", "2023-01-18 00:41:25.005342"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:41:25.006694"], ["updated_at", "2023-01-18 00:41:25.006694"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:41:25.007854"], ["updated_at", "2023-01-18 00:41:25.007854"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:41:25.009178"], ["updated_at", "2023-01-18 00:41:25.009178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:41:25.010275"], ["updated_at", "2023-01-18 00:41:25.010275"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:41:25.011467"], ["updated_at", "2023-01-18 00:41:25.011467"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:41:25.012800"], ["updated_at", "2023-01-18 00:41:25.012800"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:41:25.014452"], ["updated_at", "2023-01-18 00:41:25.014452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:41:25.015657"], ["updated_at", "2023-01-18 00:41:25.015657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:41:25.016661"], ["updated_at", "2023-01-18 00:41:25.016661"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:25.027586"], ["updated_at", "2023-01-18 00:41:25.027586"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:25.028953"], ["updated_at", "2023-01-18 00:41:25.028953"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:25.029979"], ["updated_at", "2023-01-18 00:41:25.029979"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.031082"], ["updated_at", "2023-01-18 00:41:25.031082"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.031942"], ["updated_at", "2023-01-18 00:41:25.031942"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.032744"], ["updated_at", "2023-01-18 00:41:25.032744"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.033500"], ["updated_at", "2023-01-18 00:41:25.033500"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.034200"], ["updated_at", "2023-01-18 00:41:25.034200"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:25.034953"], ["updated_at", "2023-01-18 00:41:25.034953"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.035875"], ["updated_at", "2023-01-18 00:41:25.035875"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.036726"], ["updated_at", "2023-01-18 00:41:25.036726"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.037481"], ["updated_at", "2023-01-18 00:41:25.037481"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.038232"], ["updated_at", "2023-01-18 00:41:25.038232"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.038993"], ["updated_at", "2023-01-18 00:41:25.038993"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.039718"], ["updated_at", "2023-01-18 00:41:25.039718"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.040475"], ["updated_at", "2023-01-18 00:41:25.040475"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.041237"], ["updated_at", "2023-01-18 00:41:25.041237"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.041964"], ["updated_at", "2023-01-18 00:41:25.041964"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.042681"], ["updated_at", "2023-01-18 00:41:25.042681"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.043415"], ["updated_at", "2023-01-18 00:41:25.043415"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.044165"], ["updated_at", "2023-01-18 00:41:25.044165"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:41:25.055776"], ["updated_at", "2023-01-18 00:41:25.055776"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:41:25.057023"], ["updated_at", "2023-01-18 00:41:25.057023"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:41:25.058005"], ["updated_at", "2023-01-18 00:41:25.058005"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:25.058909"], ["updated_at", "2023-01-18 00:41:25.058909"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:25.059681"], ["updated_at", "2023-01-18 00:41:25.059681"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:25.060391"], ["updated_at", "2023-01-18 00:41:25.060391"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:25.061082"], ["updated_at", "2023-01-18 00:41:25.061082"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:41:25.061775"], ["updated_at", "2023-01-18 00:41:25.061775"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:41:25.062560"], ["updated_at", "2023-01-18 00:41:25.062560"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.063674"], ["updated_at", "2023-01-18 00:41:25.063674"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.064520"], ["updated_at", "2023-01-18 00:41:25.064520"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.065287"], ["updated_at", "2023-01-18 00:41:25.065287"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.066049"], ["updated_at", "2023-01-18 00:41:25.066049"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.066792"], ["updated_at", "2023-01-18 00:41:25.066792"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.067533"], ["updated_at", "2023-01-18 00:41:25.067533"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.068291"], ["updated_at", "2023-01-18 00:41:25.068291"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.069054"], ["updated_at", "2023-01-18 00:41:25.069054"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.069823"], ["updated_at", "2023-01-18 00:41:25.069823"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.070571"], ["updated_at", "2023-01-18 00:41:25.070571"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.071317"], ["updated_at", "2023-01-18 00:41:25.071317"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:41:25.072095"], ["updated_at", "2023-01-18 00:41:25.072095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:25.089458"], ["updated_at", "2023-01-18 00:41:25.089458"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:25.090549"], ["updated_at", "2023-01-18 00:41:25.090549"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.091473"], ["updated_at", "2023-01-18 00:41:25.091473"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.092340"], ["updated_at", "2023-01-18 00:41:25.092340"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.093364"], ["updated_at", "2023-01-18 00:41:25.093364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.094460"], ["updated_at", "2023-01-18 00:41:25.094460"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.095275"], ["updated_at", "2023-01-18 00:41:25.095275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.095989"], ["updated_at", "2023-01-18 00:41:25.095989"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.097045"], ["updated_at", "2023-01-18 00:41:25.097045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.098076"], ["updated_at", "2023-01-18 00:41:25.098076"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.098896"], ["updated_at", "2023-01-18 00:41:25.098896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.099762"], ["updated_at", "2023-01-18 00:41:25.099762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.100479"], ["updated_at", "2023-01-18 00:41:25.100479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.101245"], ["updated_at", "2023-01-18 00:41:25.101245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.102028"], ["updated_at", "2023-01-18 00:41:25.102028"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:41:25.102738"], ["updated_at", "2023-01-18 00:41:25.102738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:25.119471"], ["updated_at", "2023-01-18 00:41:25.119471"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:25.120513"], ["updated_at", "2023-01-18 00:41:25.120513"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.121351"], ["updated_at", "2023-01-18 00:41:25.121351"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.122067"], ["updated_at", "2023-01-18 00:41:25.122067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.122805"], ["updated_at", "2023-01-18 00:41:25.122805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.123566"], ["updated_at", "2023-01-18 00:41:25.123566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.124246"], ["updated_at", "2023-01-18 00:41:25.124246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.124938"], ["updated_at", "2023-01-18 00:41:25.124938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.125654"], ["updated_at", "2023-01-18 00:41:25.125654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.126376"], ["updated_at", "2023-01-18 00:41:25.126376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.127051"], ["updated_at", "2023-01-18 00:41:25.127051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.127739"], ["updated_at", "2023-01-18 00:41:25.127739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.128423"], ["updated_at", "2023-01-18 00:41:25.128423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.129101"], ["updated_at", "2023-01-18 00:41:25.129101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.129870"], ["updated_at", "2023-01-18 00:41:25.129870"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:41:25.130804"], ["updated_at", "2023-01-18 00:41:25.130804"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:25.145853"], ["updated_at", "2023-01-18 00:41:25.145853"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:25.146934"], ["updated_at", "2023-01-18 00:41:25.146934"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.147874"], ["updated_at", "2023-01-18 00:41:25.147874"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.148608"], ["updated_at", "2023-01-18 00:41:25.148608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.149370"], ["updated_at", "2023-01-18 00:41:25.149370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.150090"], ["updated_at", "2023-01-18 00:41:25.150090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.150783"], ["updated_at", "2023-01-18 00:41:25.150783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.151504"], ["updated_at", "2023-01-18 00:41:25.151504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.152187"], ["updated_at", "2023-01-18 00:41:25.152187"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.152870"], ["updated_at", "2023-01-18 00:41:25.152870"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.153566"], ["updated_at", "2023-01-18 00:41:25.153566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.154288"], ["updated_at", "2023-01-18 00:41:25.154288"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.154976"], ["updated_at", "2023-01-18 00:41:25.154976"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.155652"], ["updated_at", "2023-01-18 00:41:25.155652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.156340"], ["updated_at", "2023-01-18 00:41:25.156340"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:41:25.157023"], ["updated_at", "2023-01-18 00:41:25.157023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:25.172382"], ["updated_at", "2023-01-18 00:41:25.172382"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:25.173422"], ["updated_at", "2023-01-18 00:41:25.173422"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.174196"], ["updated_at", "2023-01-18 00:41:25.174196"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.174891"], ["updated_at", "2023-01-18 00:41:25.174891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.175683"], ["updated_at", "2023-01-18 00:41:25.175683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.176415"], ["updated_at", "2023-01-18 00:41:25.176415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.177097"], ["updated_at", "2023-01-18 00:41:25.177097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.177940"], ["updated_at", "2023-01-18 00:41:25.177940"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.178959"], ["updated_at", "2023-01-18 00:41:25.178959"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.179978"], ["updated_at", "2023-01-18 00:41:25.179978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.180844"], ["updated_at", "2023-01-18 00:41:25.180844"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.181582"], ["updated_at", "2023-01-18 00:41:25.181582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.182296"], ["updated_at", "2023-01-18 00:41:25.182296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.183001"], ["updated_at", "2023-01-18 00:41:25.183001"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.183703"], ["updated_at", "2023-01-18 00:41:25.183703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:41:25.184436"], ["updated_at", "2023-01-18 00:41:25.184436"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:25.200212"], ["updated_at", "2023-01-18 00:41:25.200212"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:25.201210"], ["updated_at", "2023-01-18 00:41:25.201210"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.201991"], ["updated_at", "2023-01-18 00:41:25.201991"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.202689"], ["updated_at", "2023-01-18 00:41:25.202689"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.203437"], ["updated_at", "2023-01-18 00:41:25.203437"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.204155"], ["updated_at", "2023-01-18 00:41:25.204155"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.204848"], ["updated_at", "2023-01-18 00:41:25.204848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.205561"], ["updated_at", "2023-01-18 00:41:25.205561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.206255"], ["updated_at", "2023-01-18 00:41:25.206255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.206952"], ["updated_at", "2023-01-18 00:41:25.206952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.207642"], ["updated_at", "2023-01-18 00:41:25.207642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.208326"], ["updated_at", "2023-01-18 00:41:25.208326"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.209017"], ["updated_at", "2023-01-18 00:41:25.209017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.209743"], ["updated_at", "2023-01-18 00:41:25.209743"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.210452"], ["updated_at", "2023-01-18 00:41:25.210452"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:41:25.211134"], ["updated_at", "2023-01-18 00:41:25.211134"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:41:25.226345"], ["updated_at", "2023-01-18 00:41:25.226345"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:41:25.227334"], ["updated_at", "2023-01-18 00:41:25.227334"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:41:25.228067"], ["updated_at", "2023-01-18 00:41:25.228067"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:41:25.228802"], ["updated_at", "2023-01-18 00:41:25.228802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.229587"], ["updated_at", "2023-01-18 00:41:25.229587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.230577"], ["updated_at", "2023-01-18 00:41:25.230577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.231439"], ["updated_at", "2023-01-18 00:41:25.231439"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.232162"], ["updated_at", "2023-01-18 00:41:25.232162"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.232889"], ["updated_at", "2023-01-18 00:41:25.232889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.233591"], ["updated_at", "2023-01-18 00:41:25.233591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.234280"], ["updated_at", "2023-01-18 00:41:25.234280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.234972"], ["updated_at", "2023-01-18 00:41:25.234972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.235668"], ["updated_at", "2023-01-18 00:41:25.235668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.236352"], ["updated_at", "2023-01-18 00:41:25.236352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.237050"], ["updated_at", "2023-01-18 00:41:25.237050"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:41:25.237734"], ["updated_at", "2023-01-18 00:41:25.237734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-01-17 21:41:25 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-01-17 21:41:25 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 255)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-01-17 21:41:25 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.1ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:59:37.617201"], ["updated_at", "2023-01-18 00:59:37.617201"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-01-18 00:59:37.630109"], ["updated_at", "2023-01-18 00:59:37.630109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-01-18 00:59:37.635794"], ["updated_at", "2023-01-18 00:59:37.635794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 1], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:59:37.644845"], ["updated_at", "2023-01-18 00:59:37.644845"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:59:37.651289"], ["updated_at", "2023-01-18 00:59:37.651289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 1], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-01-18 00:59:37.654438"], ["updated_at", "2023-01-18 00:59:37.654438"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:59:37.656586"], ["updated_at", "2023-01-18 00:59:37.656586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 49ms (Views: 0.2ms | ActiveRecord: 4.4ms | Allocations: 28608)

Member Load (0.2ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 5764)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:59:37.688308"], ["updated_at", "2023-01-18 00:59:37.688308"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:59:37.689697"], ["updated_at", "2023-01-18 00:59:37.689697"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:59:37.692513"], ["updated_at", "2023-01-18 00:59:37.692513"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:59:37.693681"], ["updated_at", "2023-01-18 00:59:37.693681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:59:37.696217"], ["updated_at", "2023-01-18 00:59:37.696217"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:59:37.697285"], ["updated_at", "2023-01-18 00:59:37.697285"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:59:37.699370"], ["updated_at", "2023-01-18 00:59:37.699370"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:59:37.700659"], ["updated_at", "2023-01-18 00:59:37.700659"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:59:37.702141"], ["updated_at", "2023-01-18 00:59:37.702141"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:59:37.703420"], ["updated_at", "2023-01-18 00:59:37.703420"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:59:37.704767"], ["updated_at", "2023-01-18 00:59:37.704767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:59:37.705913"], ["updated_at", "2023-01-18 00:59:37.705913"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:59:37.707254"], ["updated_at", "2023-01-18 00:59:37.707254"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:59:37.708430"], ["updated_at", "2023-01-18 00:59:37.708430"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:59:37.709732"], ["updated_at", "2023-01-18 00:59:37.709732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:59:37.710897"], ["updated_at", "2023-01-18 00:59:37.710897"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:59:37.712152"], ["updated_at", "2023-01-18 00:59:37.712152"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:59:37.713247"], ["updated_at", "2023-01-18 00:59:37.713247"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:59:37.714597"], ["updated_at", "2023-01-18 00:59:37.714597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:59:37.715692"], ["updated_at", "2023-01-18 00:59:37.715692"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:59:37.716889"], ["updated_at", "2023-01-18 00:59:37.716889"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:59:37.718018"], ["updated_at", "2023-01-18 00:59:37.718018"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:59:37.719284"], ["updated_at", "2023-01-18 00:59:37.719284"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:59:37.720381"], ["updated_at", "2023-01-18 00:59:37.720381"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:59:37.721604"], ["updated_at", "2023-01-18 00:59:37.721604"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:59:37.722666"], ["updated_at", "2023-01-18 00:59:37.722666"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:59:37.723993"], ["updated_at", "2023-01-18 00:59:37.723993"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:59:37.725124"], ["updated_at", "2023-01-18 00:59:37.725124"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:59:37.726377"], ["updated_at", "2023-01-18 00:59:37.726377"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:59:37.727419"], ["updated_at", "2023-01-18 00:59:37.727419"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:59:37.728673"], ["updated_at", "2023-01-18 00:59:37.728673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:59:37.729755"], ["updated_at", "2023-01-18 00:59:37.729755"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:59:37.731014"], ["updated_at", "2023-01-18 00:59:37.731014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:59:37.732101"], ["updated_at", "2023-01-18 00:59:37.732101"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:59:37.733327"], ["updated_at", "2023-01-18 00:59:37.733327"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:59:37.734509"], ["updated_at", "2023-01-18 00:59:37.734509"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:59:37.735791"], ["updated_at", "2023-01-18 00:59:37.735791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:59:37.736902"], ["updated_at", "2023-01-18 00:59:37.736902"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:59:37.738250"], ["updated_at", "2023-01-18 00:59:37.738250"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:59:37.739278"], ["updated_at", "2023-01-18 00:59:37.739278"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:59:37.740537"], ["updated_at", "2023-01-18 00:59:37.740537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:59:37.741647"], ["updated_at", "2023-01-18 00:59:37.741647"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:59:37.743017"], ["updated_at", "2023-01-18 00:59:37.743017"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:59:37.744137"], ["updated_at", "2023-01-18 00:59:37.744137"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:59:37.745502"], ["updated_at", "2023-01-18 00:59:37.745502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:59:37.746661"], ["updated_at", "2023-01-18 00:59:37.746661"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:59:37.747930"], ["updated_at", "2023-01-18 00:59:37.747930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:59:37.749018"], ["updated_at", "2023-01-18 00:59:37.749018"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:59:37.750364"], ["updated_at", "2023-01-18 00:59:37.750364"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:59:37.751500"], ["updated_at", "2023-01-18 00:59:37.751500"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:59:37.752768"], ["updated_at", "2023-01-18 00:59:37.752768"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:59:37.753855"], ["updated_at", "2023-01-18 00:59:37.753855"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:59:37.755203"], ["updated_at", "2023-01-18 00:59:37.755203"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:59:37.756292"], ["updated_at", "2023-01-18 00:59:37.756292"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:59:37.757703"], ["updated_at", "2023-01-18 00:59:37.757703"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:59:37.758875"], ["updated_at", "2023-01-18 00:59:37.758875"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:59:37.760102"], ["updated_at", "2023-01-18 00:59:37.760102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:59:37.761193"], ["updated_at", "2023-01-18 00:59:37.761193"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:59:37.762532"], ["updated_at", "2023-01-18 00:59:37.762532"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:59:37.763614"], ["updated_at", "2023-01-18 00:59:37.763614"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:59:37.764987"], ["updated_at", "2023-01-18 00:59:37.764987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:59:37.766124"], ["updated_at", "2023-01-18 00:59:37.766124"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:59:37.767470"], ["updated_at", "2023-01-18 00:59:37.767470"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:59:37.768546"], ["updated_at", "2023-01-18 00:59:37.768546"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:59:37.769863"], ["updated_at", "2023-01-18 00:59:37.769863"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:59:37.771027"], ["updated_at", "2023-01-18 00:59:37.771027"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:59:37.772332"], ["updated_at", "2023-01-18 00:59:37.772332"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:59:37.773415"], ["updated_at", "2023-01-18 00:59:37.773415"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:59:37.774795"], ["updated_at", "2023-01-18 00:59:37.774795"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:59:37.775930"], ["updated_at", "2023-01-18 00:59:37.775930"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:59:37.777289"], ["updated_at", "2023-01-18 00:59:37.777289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:59:37.778465"], ["updated_at", "2023-01-18 00:59:37.778465"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:59:37.779776"], ["updated_at", "2023-01-18 00:59:37.779776"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:59:37.780851"], ["updated_at", "2023-01-18 00:59:37.780851"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:59:37.782137"], ["updated_at", "2023-01-18 00:59:37.782137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:59:37.783292"], ["updated_at", "2023-01-18 00:59:37.783292"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:59:37.784602"], ["updated_at", "2023-01-18 00:59:37.784602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:59:37.785842"], ["updated_at", "2023-01-18 00:59:37.785842"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:59:37.787220"], ["updated_at", "2023-01-18 00:59:37.787220"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:59:37.788294"], ["updated_at", "2023-01-18 00:59:37.788294"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:59:37.789557"], ["updated_at", "2023-01-18 00:59:37.789557"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:59:37.790734"], ["updated_at", "2023-01-18 00:59:37.790734"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:59:37.791997"], ["updated_at", "2023-01-18 00:59:37.791997"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:59:37.793059"], ["updated_at", "2023-01-18 00:59:37.793059"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:59:37.794366"], ["updated_at", "2023-01-18 00:59:37.794366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:59:37.795513"], ["updated_at", "2023-01-18 00:59:37.795513"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:59:37.796842"], ["updated_at", "2023-01-18 00:59:37.796842"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:59:37.797993"], ["updated_at", "2023-01-18 00:59:37.797993"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:59:37.799348"], ["updated_at", "2023-01-18 00:59:37.799348"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:59:37.800413"], ["updated_at", "2023-01-18 00:59:37.800413"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:59:37.801773"], ["updated_at", "2023-01-18 00:59:37.801773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:59:37.802938"], ["updated_at", "2023-01-18 00:59:37.802938"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:59:37.804305"], ["updated_at", "2023-01-18 00:59:37.804305"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:59:37.805529"], ["updated_at", "2023-01-18 00:59:37.805529"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:59:37.807172"], ["updated_at", "2023-01-18 00:59:37.807172"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:59:37.808276"], ["updated_at", "2023-01-18 00:59:37.808276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:59:37.809472"], ["updated_at", "2023-01-18 00:59:37.809472"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:59:37.810872"], ["updated_at", "2023-01-18 00:59:37.810872"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:59:37.814658"], ["updated_at", "2023-01-18 00:59:37.814658"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:59:37.815933"], ["updated_at", "2023-01-18 00:59:37.815933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:59:37.816914"], ["updated_at", "2023-01-18 00:59:37.816914"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:37.853724"], ["updated_at", "2023-01-18 00:59:37.853724"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:37.855391"], ["updated_at", "2023-01-18 00:59:37.855391"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:37.856502"], ["updated_at", "2023-01-18 00:59:37.856502"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:37.857441"], ["updated_at", "2023-01-18 00:59:37.857441"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:37.858306"], ["updated_at", "2023-01-18 00:59:37.858306"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:37.859005"], ["updated_at", "2023-01-18 00:59:37.859005"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:37.859692"], ["updated_at", "2023-01-18 00:59:37.859692"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:37.860356"], ["updated_at", "2023-01-18 00:59:37.860356"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:37.861100"], ["updated_at", "2023-01-18 00:59:37.861100"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.861986"], ["updated_at", "2023-01-18 00:59:37.861986"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.862854"], ["updated_at", "2023-01-18 00:59:37.862854"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.863595"], ["updated_at", "2023-01-18 00:59:37.863595"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.864351"], ["updated_at", "2023-01-18 00:59:37.864351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.865078"], ["updated_at", "2023-01-18 00:59:37.865078"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.866221"], ["updated_at", "2023-01-18 00:59:37.866221"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.867383"], ["updated_at", "2023-01-18 00:59:37.867383"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.868597"], ["updated_at", "2023-01-18 00:59:37.868597"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.869538"], ["updated_at", "2023-01-18 00:59:37.869538"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.870350"], ["updated_at", "2023-01-18 00:59:37.870350"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.871063"], ["updated_at", "2023-01-18 00:59:37.871063"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.871804"], ["updated_at", "2023-01-18 00:59:37.871804"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:37.883758"], ["updated_at", "2023-01-18 00:59:37.883758"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:37.884981"], ["updated_at", "2023-01-18 00:59:37.884981"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:37.886011"], ["updated_at", "2023-01-18 00:59:37.886011"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:37.887108"], ["updated_at", "2023-01-18 00:59:37.887108"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:37.888050"], ["updated_at", "2023-01-18 00:59:37.888050"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:37.888906"], ["updated_at", "2023-01-18 00:59:37.888906"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:37.889805"], ["updated_at", "2023-01-18 00:59:37.889805"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:37.890505"], ["updated_at", "2023-01-18 00:59:37.890505"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:37.891244"], ["updated_at", "2023-01-18 00:59:37.891244"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.892101"], ["updated_at", "2023-01-18 00:59:37.892101"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.892872"], ["updated_at", "2023-01-18 00:59:37.892872"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.893634"], ["updated_at", "2023-01-18 00:59:37.893634"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.894372"], ["updated_at", "2023-01-18 00:59:37.894372"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.895072"], ["updated_at", "2023-01-18 00:59:37.895072"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.895821"], ["updated_at", "2023-01-18 00:59:37.895821"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.896522"], ["updated_at", "2023-01-18 00:59:37.896522"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.897292"], ["updated_at", "2023-01-18 00:59:37.897292"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.897996"], ["updated_at", "2023-01-18 00:59:37.897996"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.898738"], ["updated_at", "2023-01-18 00:59:37.898738"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.899452"], ["updated_at", "2023-01-18 00:59:37.899452"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:37.900168"], ["updated_at", "2023-01-18 00:59:37.900168"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:37.931979"], ["updated_at", "2023-01-18 00:59:37.931979"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:37.933046"], ["updated_at", "2023-01-18 00:59:37.933046"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:37.933905"], ["updated_at", "2023-01-18 00:59:37.933905"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.934583"], ["updated_at", "2023-01-18 00:59:37.934583"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.935488"], ["updated_at", "2023-01-18 00:59:37.935488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.936405"], ["updated_at", "2023-01-18 00:59:37.936405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.937432"], ["updated_at", "2023-01-18 00:59:37.937432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.938231"], ["updated_at", "2023-01-18 00:59:37.938231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.939168"], ["updated_at", "2023-01-18 00:59:37.939168"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.940058"], ["updated_at", "2023-01-18 00:59:37.940058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.940809"], ["updated_at", "2023-01-18 00:59:37.940809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.941507"], ["updated_at", "2023-01-18 00:59:37.941507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.942171"], ["updated_at", "2023-01-18 00:59:37.942171"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.942861"], ["updated_at", "2023-01-18 00:59:37.942861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.943517"], ["updated_at", "2023-01-18 00:59:37.943517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:37.944168"], ["updated_at", "2023-01-18 00:59:37.944168"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:37.960537"], ["updated_at", "2023-01-18 00:59:37.960537"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:37.961491"], ["updated_at", "2023-01-18 00:59:37.961491"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:37.962240"], ["updated_at", "2023-01-18 00:59:37.962240"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.962916"], ["updated_at", "2023-01-18 00:59:37.962916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.963640"], ["updated_at", "2023-01-18 00:59:37.963640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.964341"], ["updated_at", "2023-01-18 00:59:37.964341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.965005"], ["updated_at", "2023-01-18 00:59:37.965005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.965705"], ["updated_at", "2023-01-18 00:59:37.965705"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.966401"], ["updated_at", "2023-01-18 00:59:37.966401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.967063"], ["updated_at", "2023-01-18 00:59:37.967063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.967725"], ["updated_at", "2023-01-18 00:59:37.967725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.968493"], ["updated_at", "2023-01-18 00:59:37.968493"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.969253"], ["updated_at", "2023-01-18 00:59:37.969253"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.970139"], ["updated_at", "2023-01-18 00:59:37.970139"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.971111"], ["updated_at", "2023-01-18 00:59:37.971111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:37.971954"], ["updated_at", "2023-01-18 00:59:37.971954"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:37.988025"], ["updated_at", "2023-01-18 00:59:37.988025"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:37.989064"], ["updated_at", "2023-01-18 00:59:37.989064"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:37.990107"], ["updated_at", "2023-01-18 00:59:37.990107"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:37.990868"], ["updated_at", "2023-01-18 00:59:37.990868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.991618"], ["updated_at", "2023-01-18 00:59:37.991618"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.992370"], ["updated_at", "2023-01-18 00:59:37.992370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.993101"], ["updated_at", "2023-01-18 00:59:37.993101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.993788"], ["updated_at", "2023-01-18 00:59:37.993788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.994461"], ["updated_at", "2023-01-18 00:59:37.994461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.995146"], ["updated_at", "2023-01-18 00:59:37.995146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.995812"], ["updated_at", "2023-01-18 00:59:37.995812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.996525"], ["updated_at", "2023-01-18 00:59:37.996525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.997242"], ["updated_at", "2023-01-18 00:59:37.997242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.997935"], ["updated_at", "2023-01-18 00:59:37.997935"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.998629"], ["updated_at", "2023-01-18 00:59:37.998629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:37.999300"], ["updated_at", "2023-01-18 00:59:37.999300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.014731"], ["updated_at", "2023-01-18 00:59:38.014731"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.015660"], ["updated_at", "2023-01-18 00:59:38.015660"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.016378"], ["updated_at", "2023-01-18 00:59:38.016378"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.017071"], ["updated_at", "2023-01-18 00:59:38.017071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.017856"], ["updated_at", "2023-01-18 00:59:38.017856"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.018663"], ["updated_at", "2023-01-18 00:59:38.018663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.019393"], ["updated_at", "2023-01-18 00:59:38.019393"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.020255"], ["updated_at", "2023-01-18 00:59:38.020255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.021010"], ["updated_at", "2023-01-18 00:59:38.021010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.021767"], ["updated_at", "2023-01-18 00:59:38.021767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.022667"], ["updated_at", "2023-01-18 00:59:38.022667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.023418"], ["updated_at", "2023-01-18 00:59:38.023418"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.024121"], ["updated_at", "2023-01-18 00:59:38.024121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.024821"], ["updated_at", "2023-01-18 00:59:38.024821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.025496"], ["updated_at", "2023-01-18 00:59:38.025496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.026185"], ["updated_at", "2023-01-18 00:59:38.026185"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.041428"], ["updated_at", "2023-01-18 00:59:38.041428"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.042367"], ["updated_at", "2023-01-18 00:59:38.042367"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.043135"], ["updated_at", "2023-01-18 00:59:38.043135"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.043812"], ["updated_at", "2023-01-18 00:59:38.043812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.044576"], ["updated_at", "2023-01-18 00:59:38.044576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.045302"], ["updated_at", "2023-01-18 00:59:38.045302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.045997"], ["updated_at", "2023-01-18 00:59:38.045997"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.046663"], ["updated_at", "2023-01-18 00:59:38.046663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.047363"], ["updated_at", "2023-01-18 00:59:38.047363"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.048033"], ["updated_at", "2023-01-18 00:59:38.048033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.048710"], ["updated_at", "2023-01-18 00:59:38.048710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.049385"], ["updated_at", "2023-01-18 00:59:38.049385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.050120"], ["updated_at", "2023-01-18 00:59:38.050120"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.050789"], ["updated_at", "2023-01-18 00:59:38.050789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.051479"], ["updated_at", "2023-01-18 00:59:38.051479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.052244"], ["updated_at", "2023-01-18 00:59:38.052244"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.067178"], ["updated_at", "2023-01-18 00:59:38.067178"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.068115"], ["updated_at", "2023-01-18 00:59:38.068115"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.068858"], ["updated_at", "2023-01-18 00:59:38.068858"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.069624"], ["updated_at", "2023-01-18 00:59:38.069624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.070381"], ["updated_at", "2023-01-18 00:59:38.070381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.071071"], ["updated_at", "2023-01-18 00:59:38.071071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.071767"], ["updated_at", "2023-01-18 00:59:38.071767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.072438"], ["updated_at", "2023-01-18 00:59:38.072438"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.073142"], ["updated_at", "2023-01-18 00:59:38.073142"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.073828"], ["updated_at", "2023-01-18 00:59:38.073828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.074485"], ["updated_at", "2023-01-18 00:59:38.074485"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.075167"], ["updated_at", "2023-01-18 00:59:38.075167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.075859"], ["updated_at", "2023-01-18 00:59:38.075859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.076529"], ["updated_at", "2023-01-18 00:59:38.076529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.077213"], ["updated_at", "2023-01-18 00:59:38.077213"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.077892"], ["updated_at", "2023-01-18 00:59:38.077892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-01-17 21:59:38 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.3ms | Allocations: 3135)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:59:38.100384"], ["updated_at", "2023-01-18 00:59:38.100384"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:59:38.101934"], ["updated_at", "2023-01-18 00:59:38.101934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:59:38.104784"], ["updated_at", "2023-01-18 00:59:38.104784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:59:38.105964"], ["updated_at", "2023-01-18 00:59:38.105964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:59:38.108568"], ["updated_at", "2023-01-18 00:59:38.108568"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:59:38.109764"], ["updated_at", "2023-01-18 00:59:38.109764"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:59:38.111774"], ["updated_at", "2023-01-18 00:59:38.111774"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:59:38.113108"], ["updated_at", "2023-01-18 00:59:38.113108"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:59:38.114641"], ["updated_at", "2023-01-18 00:59:38.114641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:59:38.115876"], ["updated_at", "2023-01-18 00:59:38.115876"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:59:38.117202"], ["updated_at", "2023-01-18 00:59:38.117202"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:59:38.118384"], ["updated_at", "2023-01-18 00:59:38.118384"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:59:38.119812"], ["updated_at", "2023-01-18 00:59:38.119812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:59:38.121010"], ["updated_at", "2023-01-18 00:59:38.121010"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:59:38.122628"], ["updated_at", "2023-01-18 00:59:38.122628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:59:38.123867"], ["updated_at", "2023-01-18 00:59:38.123867"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:59:38.125205"], ["updated_at", "2023-01-18 00:59:38.125205"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:59:38.126368"], ["updated_at", "2023-01-18 00:59:38.126368"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:59:38.127701"], ["updated_at", "2023-01-18 00:59:38.127701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:59:38.128819"], ["updated_at", "2023-01-18 00:59:38.128819"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:59:38.130151"], ["updated_at", "2023-01-18 00:59:38.130151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:59:38.131285"], ["updated_at", "2023-01-18 00:59:38.131285"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:59:38.132596"], ["updated_at", "2023-01-18 00:59:38.132596"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:59:38.133761"], ["updated_at", "2023-01-18 00:59:38.133761"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:59:38.135117"], ["updated_at", "2023-01-18 00:59:38.135117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:59:38.136325"], ["updated_at", "2023-01-18 00:59:38.136325"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:59:38.137803"], ["updated_at", "2023-01-18 00:59:38.137803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:59:38.139024"], ["updated_at", "2023-01-18 00:59:38.139024"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:59:38.140343"], ["updated_at", "2023-01-18 00:59:38.140343"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:59:38.141491"], ["updated_at", "2023-01-18 00:59:38.141491"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:59:38.142829"], ["updated_at", "2023-01-18 00:59:38.142829"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:59:38.143979"], ["updated_at", "2023-01-18 00:59:38.143979"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:59:38.145306"], ["updated_at", "2023-01-18 00:59:38.145306"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:59:38.146455"], ["updated_at", "2023-01-18 00:59:38.146455"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:59:38.147757"], ["updated_at", "2023-01-18 00:59:38.147757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:59:38.148880"], ["updated_at", "2023-01-18 00:59:38.148880"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:59:38.150212"], ["updated_at", "2023-01-18 00:59:38.150212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:59:38.151346"], ["updated_at", "2023-01-18 00:59:38.151346"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:59:38.152819"], ["updated_at", "2023-01-18 00:59:38.152819"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:59:38.154055"], ["updated_at", "2023-01-18 00:59:38.154055"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:59:38.155364"], ["updated_at", "2023-01-18 00:59:38.155364"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:59:38.156488"], ["updated_at", "2023-01-18 00:59:38.156488"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:59:38.157823"], ["updated_at", "2023-01-18 00:59:38.157823"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.158979"], ["updated_at", "2023-01-18 00:59:38.158979"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:59:38.160309"], ["updated_at", "2023-01-18 00:59:38.160309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:59:38.161456"], ["updated_at", "2023-01-18 00:59:38.161456"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:59:38.162814"], ["updated_at", "2023-01-18 00:59:38.162814"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:59:38.163990"], ["updated_at", "2023-01-18 00:59:38.163990"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:59:38.165392"], ["updated_at", "2023-01-18 00:59:38.165392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:59:38.166657"], ["updated_at", "2023-01-18 00:59:38.166657"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:59:38.168007"], ["updated_at", "2023-01-18 00:59:38.168007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:59:38.169189"], ["updated_at", "2023-01-18 00:59:38.169189"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:59:38.170690"], ["updated_at", "2023-01-18 00:59:38.170690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:59:38.171878"], ["updated_at", "2023-01-18 00:59:38.171878"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:59:38.173240"], ["updated_at", "2023-01-18 00:59:38.173240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:59:38.174414"], ["updated_at", "2023-01-18 00:59:38.174414"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:59:38.175713"], ["updated_at", "2023-01-18 00:59:38.175713"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:59:38.176851"], ["updated_at", "2023-01-18 00:59:38.176851"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:59:38.178191"], ["updated_at", "2023-01-18 00:59:38.178191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:59:38.179362"], ["updated_at", "2023-01-18 00:59:38.179362"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:59:38.180682"], ["updated_at", "2023-01-18 00:59:38.180682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:59:38.181846"], ["updated_at", "2023-01-18 00:59:38.181846"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:59:38.183187"], ["updated_at", "2023-01-18 00:59:38.183187"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.184332"], ["updated_at", "2023-01-18 00:59:38.184332"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:59:38.185721"], ["updated_at", "2023-01-18 00:59:38.185721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:59:38.186922"], ["updated_at", "2023-01-18 00:59:38.186922"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:59:38.188274"], ["updated_at", "2023-01-18 00:59:38.188274"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:59:38.189428"], ["updated_at", "2023-01-18 00:59:38.189428"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:59:38.190749"], ["updated_at", "2023-01-18 00:59:38.190749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.191890"], ["updated_at", "2023-01-18 00:59:38.191890"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:59:38.193202"], ["updated_at", "2023-01-18 00:59:38.193202"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:59:38.194370"], ["updated_at", "2023-01-18 00:59:38.194370"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:59:38.195714"], ["updated_at", "2023-01-18 00:59:38.195714"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:59:38.196853"], ["updated_at", "2023-01-18 00:59:38.196853"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:59:38.198273"], ["updated_at", "2023-01-18 00:59:38.198273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:59:38.199433"], ["updated_at", "2023-01-18 00:59:38.199433"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:59:38.200746"], ["updated_at", "2023-01-18 00:59:38.200746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:59:38.201931"], ["updated_at", "2023-01-18 00:59:38.201931"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:59:38.203342"], ["updated_at", "2023-01-18 00:59:38.203342"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:59:38.204569"], ["updated_at", "2023-01-18 00:59:38.204569"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:59:38.205914"], ["updated_at", "2023-01-18 00:59:38.205914"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.207078"], ["updated_at", "2023-01-18 00:59:38.207078"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:59:38.208438"], ["updated_at", "2023-01-18 00:59:38.208438"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:59:38.209589"], ["updated_at", "2023-01-18 00:59:38.209589"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:59:38.210916"], ["updated_at", "2023-01-18 00:59:38.210916"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:59:38.212070"], ["updated_at", "2023-01-18 00:59:38.212070"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:59:38.213407"], ["updated_at", "2023-01-18 00:59:38.213407"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:59:38.214545"], ["updated_at", "2023-01-18 00:59:38.214545"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:59:38.215881"], ["updated_at", "2023-01-18 00:59:38.215881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:59:38.217038"], ["updated_at", "2023-01-18 00:59:38.217038"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:59:38.218384"], ["updated_at", "2023-01-18 00:59:38.218384"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:59:38.219526"], ["updated_at", "2023-01-18 00:59:38.219526"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:59:38.220850"], ["updated_at", "2023-01-18 00:59:38.220850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:59:38.222012"], ["updated_at", "2023-01-18 00:59:38.222012"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:59:38.223321"], ["updated_at", "2023-01-18 00:59:38.223321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:59:38.224336"], ["updated_at", "2023-01-18 00:59:38.224336"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:59:38.225600"], ["updated_at", "2023-01-18 00:59:38.225600"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:59:38.227277"], ["updated_at", "2023-01-18 00:59:38.227277"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:59:38.228811"], ["updated_at", "2023-01-18 00:59:38.228811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:59:38.229946"], ["updated_at", "2023-01-18 00:59:38.229946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:59:38.230936"], ["updated_at", "2023-01-18 00:59:38.230936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:38.241988"], ["updated_at", "2023-01-18 00:59:38.241988"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:38.243257"], ["updated_at", "2023-01-18 00:59:38.243257"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:38.244187"], ["updated_at", "2023-01-18 00:59:38.244187"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.245070"], ["updated_at", "2023-01-18 00:59:38.245070"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.245843"], ["updated_at", "2023-01-18 00:59:38.245843"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.246515"], ["updated_at", "2023-01-18 00:59:38.246515"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.247232"], ["updated_at", "2023-01-18 00:59:38.247232"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.247891"], ["updated_at", "2023-01-18 00:59:38.247891"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:38.248639"], ["updated_at", "2023-01-18 00:59:38.248639"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.249480"], ["updated_at", "2023-01-18 00:59:38.249480"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.250309"], ["updated_at", "2023-01-18 00:59:38.250309"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.251095"], ["updated_at", "2023-01-18 00:59:38.251095"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.251828"], ["updated_at", "2023-01-18 00:59:38.251828"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.252649"], ["updated_at", "2023-01-18 00:59:38.252649"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.253412"], ["updated_at", "2023-01-18 00:59:38.253412"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.254166"], ["updated_at", "2023-01-18 00:59:38.254166"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.254896"], ["updated_at", "2023-01-18 00:59:38.254896"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.255609"], ["updated_at", "2023-01-18 00:59:38.255609"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.256364"], ["updated_at", "2023-01-18 00:59:38.256364"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.257098"], ["updated_at", "2023-01-18 00:59:38.257098"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.257877"], ["updated_at", "2023-01-18 00:59:38.257877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:38.268707"], ["updated_at", "2023-01-18 00:59:38.268707"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:38.269962"], ["updated_at", "2023-01-18 00:59:38.269962"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:38.270820"], ["updated_at", "2023-01-18 00:59:38.270820"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:38.271684"], ["updated_at", "2023-01-18 00:59:38.271684"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:38.272409"], ["updated_at", "2023-01-18 00:59:38.272409"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:38.273097"], ["updated_at", "2023-01-18 00:59:38.273097"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:38.273802"], ["updated_at", "2023-01-18 00:59:38.273802"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:38.274483"], ["updated_at", "2023-01-18 00:59:38.274483"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:38.275215"], ["updated_at", "2023-01-18 00:59:38.275215"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.276093"], ["updated_at", "2023-01-18 00:59:38.276093"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.276863"], ["updated_at", "2023-01-18 00:59:38.276863"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.277611"], ["updated_at", "2023-01-18 00:59:38.277611"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.278333"], ["updated_at", "2023-01-18 00:59:38.278333"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.279083"], ["updated_at", "2023-01-18 00:59:38.279083"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.279806"], ["updated_at", "2023-01-18 00:59:38.279806"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.280556"], ["updated_at", "2023-01-18 00:59:38.280556"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.281292"], ["updated_at", "2023-01-18 00:59:38.281292"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.282084"], ["updated_at", "2023-01-18 00:59:38.282084"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.282824"], ["updated_at", "2023-01-18 00:59:38.282824"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.283554"], ["updated_at", "2023-01-18 00:59:38.283554"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.284296"], ["updated_at", "2023-01-18 00:59:38.284296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.299412"], ["updated_at", "2023-01-18 00:59:38.299412"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.300499"], ["updated_at", "2023-01-18 00:59:38.300499"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.301416"], ["updated_at", "2023-01-18 00:59:38.301416"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.302211"], ["updated_at", "2023-01-18 00:59:38.302211"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.303265"], ["updated_at", "2023-01-18 00:59:38.303265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.304423"], ["updated_at", "2023-01-18 00:59:38.304423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.305325"], ["updated_at", "2023-01-18 00:59:38.305325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.306039"], ["updated_at", "2023-01-18 00:59:38.306039"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.306732"], ["updated_at", "2023-01-18 00:59:38.306732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.307415"], ["updated_at", "2023-01-18 00:59:38.307415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.308138"], ["updated_at", "2023-01-18 00:59:38.308138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.308826"], ["updated_at", "2023-01-18 00:59:38.308826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.309528"], ["updated_at", "2023-01-18 00:59:38.309528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.310201"], ["updated_at", "2023-01-18 00:59:38.310201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.310896"], ["updated_at", "2023-01-18 00:59:38.310896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.311563"], ["updated_at", "2023-01-18 00:59:38.311563"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.328481"], ["updated_at", "2023-01-18 00:59:38.328481"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.329603"], ["updated_at", "2023-01-18 00:59:38.329603"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.330595"], ["updated_at", "2023-01-18 00:59:38.330595"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.331507"], ["updated_at", "2023-01-18 00:59:38.331507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.332529"], ["updated_at", "2023-01-18 00:59:38.332529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.333490"], ["updated_at", "2023-01-18 00:59:38.333490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.334244"], ["updated_at", "2023-01-18 00:59:38.334244"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.334955"], ["updated_at", "2023-01-18 00:59:38.334955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.335645"], ["updated_at", "2023-01-18 00:59:38.335645"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.336386"], ["updated_at", "2023-01-18 00:59:38.336386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.337344"], ["updated_at", "2023-01-18 00:59:38.337344"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.338239"], ["updated_at", "2023-01-18 00:59:38.338239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.339197"], ["updated_at", "2023-01-18 00:59:38.339197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.340201"], ["updated_at", "2023-01-18 00:59:38.340201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.341182"], ["updated_at", "2023-01-18 00:59:38.341182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.342119"], ["updated_at", "2023-01-18 00:59:38.342119"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.358428"], ["updated_at", "2023-01-18 00:59:38.358428"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.359373"], ["updated_at", "2023-01-18 00:59:38.359373"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.360110"], ["updated_at", "2023-01-18 00:59:38.360110"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.360821"], ["updated_at", "2023-01-18 00:59:38.360821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.361563"], ["updated_at", "2023-01-18 00:59:38.361563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.362302"], ["updated_at", "2023-01-18 00:59:38.362302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.362984"], ["updated_at", "2023-01-18 00:59:38.362984"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.363657"], ["updated_at", "2023-01-18 00:59:38.363657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.364346"], ["updated_at", "2023-01-18 00:59:38.364346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.365044"], ["updated_at", "2023-01-18 00:59:38.365044"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.365772"], ["updated_at", "2023-01-18 00:59:38.365772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.366436"], ["updated_at", "2023-01-18 00:59:38.366436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.367110"], ["updated_at", "2023-01-18 00:59:38.367110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.367801"], ["updated_at", "2023-01-18 00:59:38.367801"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.368483"], ["updated_at", "2023-01-18 00:59:38.368483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.369216"], ["updated_at", "2023-01-18 00:59:38.369216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.384289"], ["updated_at", "2023-01-18 00:59:38.384289"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.385253"], ["updated_at", "2023-01-18 00:59:38.385253"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.386090"], ["updated_at", "2023-01-18 00:59:38.386090"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.386793"], ["updated_at", "2023-01-18 00:59:38.386793"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.387562"], ["updated_at", "2023-01-18 00:59:38.387562"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.388254"], ["updated_at", "2023-01-18 00:59:38.388254"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.388949"], ["updated_at", "2023-01-18 00:59:38.388949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.389643"], ["updated_at", "2023-01-18 00:59:38.389643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.390333"], ["updated_at", "2023-01-18 00:59:38.390333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.390997"], ["updated_at", "2023-01-18 00:59:38.390997"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.391685"], ["updated_at", "2023-01-18 00:59:38.391685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.392380"], ["updated_at", "2023-01-18 00:59:38.392380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.393051"], ["updated_at", "2023-01-18 00:59:38.393051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.393733"], ["updated_at", "2023-01-18 00:59:38.393733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.394428"], ["updated_at", "2023-01-18 00:59:38.394428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.395041"], ["updated_at", "2023-01-18 00:59:38.395041"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.410094"], ["updated_at", "2023-01-18 00:59:38.410094"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.411072"], ["updated_at", "2023-01-18 00:59:38.411072"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.411825"], ["updated_at", "2023-01-18 00:59:38.411825"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.412538"], ["updated_at", "2023-01-18 00:59:38.412538"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.413295"], ["updated_at", "2023-01-18 00:59:38.413295"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.413990"], ["updated_at", "2023-01-18 00:59:38.413990"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.414685"], ["updated_at", "2023-01-18 00:59:38.414685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.415381"], ["updated_at", "2023-01-18 00:59:38.415381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.416053"], ["updated_at", "2023-01-18 00:59:38.416053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.416711"], ["updated_at", "2023-01-18 00:59:38.416711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.417409"], ["updated_at", "2023-01-18 00:59:38.417409"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.418080"], ["updated_at", "2023-01-18 00:59:38.418080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.418795"], ["updated_at", "2023-01-18 00:59:38.418795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.419475"], ["updated_at", "2023-01-18 00:59:38.419475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.420156"], ["updated_at", "2023-01-18 00:59:38.420156"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.420858"], ["updated_at", "2023-01-18 00:59:38.420858"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.436032"], ["updated_at", "2023-01-18 00:59:38.436032"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.437009"], ["updated_at", "2023-01-18 00:59:38.437009"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.437791"], ["updated_at", "2023-01-18 00:59:38.437791"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.438486"], ["updated_at", "2023-01-18 00:59:38.438486"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.439223"], ["updated_at", "2023-01-18 00:59:38.439223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.439928"], ["updated_at", "2023-01-18 00:59:38.439928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.440631"], ["updated_at", "2023-01-18 00:59:38.440631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.441367"], ["updated_at", "2023-01-18 00:59:38.441367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.442065"], ["updated_at", "2023-01-18 00:59:38.442065"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.442767"], ["updated_at", "2023-01-18 00:59:38.442767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.443447"], ["updated_at", "2023-01-18 00:59:38.443447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.444149"], ["updated_at", "2023-01-18 00:59:38.444149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.444847"], ["updated_at", "2023-01-18 00:59:38.444847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.445560"], ["updated_at", "2023-01-18 00:59:38.445560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.446234"], ["updated_at", "2023-01-18 00:59:38.446234"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.446929"], ["updated_at", "2023-01-18 00:59:38.446929"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-01-17 21:59:38 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 383)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:59:38.455571"], ["updated_at", "2023-01-18 00:59:38.455571"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:59:38.456997"], ["updated_at", "2023-01-18 00:59:38.456997"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:59:38.459839"], ["updated_at", "2023-01-18 00:59:38.459839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:59:38.461020"], ["updated_at", "2023-01-18 00:59:38.461020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:59:38.463682"], ["updated_at", "2023-01-18 00:59:38.463682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:59:38.464853"], ["updated_at", "2023-01-18 00:59:38.464853"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:59:38.466936"], ["updated_at", "2023-01-18 00:59:38.466936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:59:38.468346"], ["updated_at", "2023-01-18 00:59:38.468346"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:59:38.469983"], ["updated_at", "2023-01-18 00:59:38.469983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:59:38.471271"], ["updated_at", "2023-01-18 00:59:38.471271"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:59:38.481736"], ["updated_at", "2023-01-18 00:59:38.481736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:59:38.483160"], ["updated_at", "2023-01-18 00:59:38.483160"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:59:38.484483"], ["updated_at", "2023-01-18 00:59:38.484483"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:59:38.485658"], ["updated_at", "2023-01-18 00:59:38.485658"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:59:38.486990"], ["updated_at", "2023-01-18 00:59:38.486990"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:59:38.488112"], ["updated_at", "2023-01-18 00:59:38.488112"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:59:38.489418"], ["updated_at", "2023-01-18 00:59:38.489418"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:59:38.490534"], ["updated_at", "2023-01-18 00:59:38.490534"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:59:38.491821"], ["updated_at", "2023-01-18 00:59:38.491821"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:59:38.492952"], ["updated_at", "2023-01-18 00:59:38.492952"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:59:38.494270"], ["updated_at", "2023-01-18 00:59:38.494270"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:59:38.495387"], ["updated_at", "2023-01-18 00:59:38.495387"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:59:38.496705"], ["updated_at", "2023-01-18 00:59:38.496705"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:59:38.497872"], ["updated_at", "2023-01-18 00:59:38.497872"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:59:38.499180"], ["updated_at", "2023-01-18 00:59:38.499180"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:59:38.500311"], ["updated_at", "2023-01-18 00:59:38.500311"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:59:38.501628"], ["updated_at", "2023-01-18 00:59:38.501628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:59:38.502799"], ["updated_at", "2023-01-18 00:59:38.502799"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:59:38.504105"], ["updated_at", "2023-01-18 00:59:38.504105"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:59:38.505259"], ["updated_at", "2023-01-18 00:59:38.505259"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:59:38.506582"], ["updated_at", "2023-01-18 00:59:38.506582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:59:38.507703"], ["updated_at", "2023-01-18 00:59:38.507703"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:59:38.509012"], ["updated_at", "2023-01-18 00:59:38.509012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:59:38.510150"], ["updated_at", "2023-01-18 00:59:38.510150"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:59:38.511450"], ["updated_at", "2023-01-18 00:59:38.511450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:59:38.512569"], ["updated_at", "2023-01-18 00:59:38.512569"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:59:38.513898"], ["updated_at", "2023-01-18 00:59:38.513898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:59:38.515040"], ["updated_at", "2023-01-18 00:59:38.515040"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:59:38.516353"], ["updated_at", "2023-01-18 00:59:38.516353"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:59:38.517517"], ["updated_at", "2023-01-18 00:59:38.517517"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:59:38.518855"], ["updated_at", "2023-01-18 00:59:38.518855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:59:38.520003"], ["updated_at", "2023-01-18 00:59:38.520003"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:59:38.521329"], ["updated_at", "2023-01-18 00:59:38.521329"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.522504"], ["updated_at", "2023-01-18 00:59:38.522504"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:59:38.523838"], ["updated_at", "2023-01-18 00:59:38.523838"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:59:38.524964"], ["updated_at", "2023-01-18 00:59:38.524964"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:59:38.526414"], ["updated_at", "2023-01-18 00:59:38.526414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:59:38.527647"], ["updated_at", "2023-01-18 00:59:38.527647"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:59:38.528979"], ["updated_at", "2023-01-18 00:59:38.528979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:59:38.530143"], ["updated_at", "2023-01-18 00:59:38.530143"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:59:38.531472"], ["updated_at", "2023-01-18 00:59:38.531472"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:59:38.532583"], ["updated_at", "2023-01-18 00:59:38.532583"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:59:38.533951"], ["updated_at", "2023-01-18 00:59:38.533951"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:59:38.535098"], ["updated_at", "2023-01-18 00:59:38.535098"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:59:38.536479"], ["updated_at", "2023-01-18 00:59:38.536479"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:59:38.537696"], ["updated_at", "2023-01-18 00:59:38.537696"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:59:38.539114"], ["updated_at", "2023-01-18 00:59:38.539114"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:59:38.540267"], ["updated_at", "2023-01-18 00:59:38.540267"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:59:38.541645"], ["updated_at", "2023-01-18 00:59:38.541645"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:59:38.542896"], ["updated_at", "2023-01-18 00:59:38.542896"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:59:38.544283"], ["updated_at", "2023-01-18 00:59:38.544283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:59:38.545449"], ["updated_at", "2023-01-18 00:59:38.545449"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:59:38.546939"], ["updated_at", "2023-01-18 00:59:38.546939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.548149"], ["updated_at", "2023-01-18 00:59:38.548149"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:59:38.549733"], ["updated_at", "2023-01-18 00:59:38.549733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:59:38.551080"], ["updated_at", "2023-01-18 00:59:38.551080"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:59:38.552587"], ["updated_at", "2023-01-18 00:59:38.552587"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:59:38.553771"], ["updated_at", "2023-01-18 00:59:38.553771"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:59:38.555091"], ["updated_at", "2023-01-18 00:59:38.555091"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.556232"], ["updated_at", "2023-01-18 00:59:38.556232"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:59:38.557552"], ["updated_at", "2023-01-18 00:59:38.557552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:59:38.558714"], ["updated_at", "2023-01-18 00:59:38.558714"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:59:38.560033"], ["updated_at", "2023-01-18 00:59:38.560033"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:59:38.561170"], ["updated_at", "2023-01-18 00:59:38.561170"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:59:38.562507"], ["updated_at", "2023-01-18 00:59:38.562507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:59:38.563643"], ["updated_at", "2023-01-18 00:59:38.563643"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:59:38.564939"], ["updated_at", "2023-01-18 00:59:38.564939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:59:38.566068"], ["updated_at", "2023-01-18 00:59:38.566068"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:59:38.567374"], ["updated_at", "2023-01-18 00:59:38.567374"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:59:38.568526"], ["updated_at", "2023-01-18 00:59:38.568526"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:59:38.569898"], ["updated_at", "2023-01-18 00:59:38.569898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.571059"], ["updated_at", "2023-01-18 00:59:38.571059"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:59:38.572358"], ["updated_at", "2023-01-18 00:59:38.572358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:59:38.573491"], ["updated_at", "2023-01-18 00:59:38.573491"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:59:38.574799"], ["updated_at", "2023-01-18 00:59:38.574799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:59:38.575922"], ["updated_at", "2023-01-18 00:59:38.575922"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:59:38.577235"], ["updated_at", "2023-01-18 00:59:38.577235"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:59:38.578382"], ["updated_at", "2023-01-18 00:59:38.578382"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:59:38.579682"], ["updated_at", "2023-01-18 00:59:38.579682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:59:38.580804"], ["updated_at", "2023-01-18 00:59:38.580804"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:59:38.582129"], ["updated_at", "2023-01-18 00:59:38.582129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:59:38.583270"], ["updated_at", "2023-01-18 00:59:38.583270"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:59:38.584570"], ["updated_at", "2023-01-18 00:59:38.584570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:59:38.585729"], ["updated_at", "2023-01-18 00:59:38.585729"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:59:38.587099"], ["updated_at", "2023-01-18 00:59:38.587099"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:59:38.588176"], ["updated_at", "2023-01-18 00:59:38.588176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:59:38.589347"], ["updated_at", "2023-01-18 00:59:38.589347"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:59:38.590678"], ["updated_at", "2023-01-18 00:59:38.590678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:59:38.592108"], ["updated_at", "2023-01-18 00:59:38.592108"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:59:38.593192"], ["updated_at", "2023-01-18 00:59:38.593192"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:59:38.594140"], ["updated_at", "2023-01-18 00:59:38.594140"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:38.604922"], ["updated_at", "2023-01-18 00:59:38.604922"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:38.606137"], ["updated_at", "2023-01-18 00:59:38.606137"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:38.607062"], ["updated_at", "2023-01-18 00:59:38.607062"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.607877"], ["updated_at", "2023-01-18 00:59:38.607877"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.608627"], ["updated_at", "2023-01-18 00:59:38.608627"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.609293"], ["updated_at", "2023-01-18 00:59:38.609293"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.609953"], ["updated_at", "2023-01-18 00:59:38.609953"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.610594"], ["updated_at", "2023-01-18 00:59:38.610594"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:38.611305"], ["updated_at", "2023-01-18 00:59:38.611305"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.612109"], ["updated_at", "2023-01-18 00:59:38.612109"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.612898"], ["updated_at", "2023-01-18 00:59:38.612898"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.613624"], ["updated_at", "2023-01-18 00:59:38.613624"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.614343"], ["updated_at", "2023-01-18 00:59:38.614343"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.615052"], ["updated_at", "2023-01-18 00:59:38.615052"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.615740"], ["updated_at", "2023-01-18 00:59:38.615740"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.616441"], ["updated_at", "2023-01-18 00:59:38.616441"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.617150"], ["updated_at", "2023-01-18 00:59:38.617150"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.617860"], ["updated_at", "2023-01-18 00:59:38.617860"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.618617"], ["updated_at", "2023-01-18 00:59:38.618617"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.619339"], ["updated_at", "2023-01-18 00:59:38.619339"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.620030"], ["updated_at", "2023-01-18 00:59:38.620030"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:38.630462"], ["updated_at", "2023-01-18 00:59:38.630462"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:38.631634"], ["updated_at", "2023-01-18 00:59:38.631634"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:38.632478"], ["updated_at", "2023-01-18 00:59:38.632478"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:38.633294"], ["updated_at", "2023-01-18 00:59:38.633294"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:38.634002"], ["updated_at", "2023-01-18 00:59:38.634002"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:38.634699"], ["updated_at", "2023-01-18 00:59:38.634699"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:38.635365"], ["updated_at", "2023-01-18 00:59:38.635365"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:38.636005"], ["updated_at", "2023-01-18 00:59:38.636005"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:38.636725"], ["updated_at", "2023-01-18 00:59:38.636725"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.637547"], ["updated_at", "2023-01-18 00:59:38.637547"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.638307"], ["updated_at", "2023-01-18 00:59:38.638307"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.639026"], ["updated_at", "2023-01-18 00:59:38.639026"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.639758"], ["updated_at", "2023-01-18 00:59:38.639758"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.640447"], ["updated_at", "2023-01-18 00:59:38.640447"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.641177"], ["updated_at", "2023-01-18 00:59:38.641177"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.641901"], ["updated_at", "2023-01-18 00:59:38.641901"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.642610"], ["updated_at", "2023-01-18 00:59:38.642610"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.643304"], ["updated_at", "2023-01-18 00:59:38.643304"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.644018"], ["updated_at", "2023-01-18 00:59:38.644018"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.644731"], ["updated_at", "2023-01-18 00:59:38.644731"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:38.645442"], ["updated_at", "2023-01-18 00:59:38.645442"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.660449"], ["updated_at", "2023-01-18 00:59:38.660449"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.661541"], ["updated_at", "2023-01-18 00:59:38.661541"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.662437"], ["updated_at", "2023-01-18 00:59:38.662437"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.663471"], ["updated_at", "2023-01-18 00:59:38.663471"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.664664"], ["updated_at", "2023-01-18 00:59:38.664664"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.665723"], ["updated_at", "2023-01-18 00:59:38.665723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.666470"], ["updated_at", "2023-01-18 00:59:38.666470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.667151"], ["updated_at", "2023-01-18 00:59:38.667151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.667816"], ["updated_at", "2023-01-18 00:59:38.667816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.668512"], ["updated_at", "2023-01-18 00:59:38.668512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.669303"], ["updated_at", "2023-01-18 00:59:38.669303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.670089"], ["updated_at", "2023-01-18 00:59:38.670089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.670780"], ["updated_at", "2023-01-18 00:59:38.670780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.671448"], ["updated_at", "2023-01-18 00:59:38.671448"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.672144"], ["updated_at", "2023-01-18 00:59:38.672144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:38.672804"], ["updated_at", "2023-01-18 00:59:38.672804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.687774"], ["updated_at", "2023-01-18 00:59:38.687774"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.688735"], ["updated_at", "2023-01-18 00:59:38.688735"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.689480"], ["updated_at", "2023-01-18 00:59:38.689480"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.690143"], ["updated_at", "2023-01-18 00:59:38.690143"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.690867"], ["updated_at", "2023-01-18 00:59:38.690867"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.691560"], ["updated_at", "2023-01-18 00:59:38.691560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.692215"], ["updated_at", "2023-01-18 00:59:38.692215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.692887"], ["updated_at", "2023-01-18 00:59:38.692887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.693575"], ["updated_at", "2023-01-18 00:59:38.693575"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.694231"], ["updated_at", "2023-01-18 00:59:38.694231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.694917"], ["updated_at", "2023-01-18 00:59:38.694917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.695591"], ["updated_at", "2023-01-18 00:59:38.695591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.696243"], ["updated_at", "2023-01-18 00:59:38.696243"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.696910"], ["updated_at", "2023-01-18 00:59:38.696910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.697592"], ["updated_at", "2023-01-18 00:59:38.697592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:38.698240"], ["updated_at", "2023-01-18 00:59:38.698240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.712980"], ["updated_at", "2023-01-18 00:59:38.712980"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.713974"], ["updated_at", "2023-01-18 00:59:38.713974"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.714751"], ["updated_at", "2023-01-18 00:59:38.714751"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.715500"], ["updated_at", "2023-01-18 00:59:38.715500"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.716264"], ["updated_at", "2023-01-18 00:59:38.716264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.716958"], ["updated_at", "2023-01-18 00:59:38.716958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.717633"], ["updated_at", "2023-01-18 00:59:38.717633"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.718318"], ["updated_at", "2023-01-18 00:59:38.718318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.718997"], ["updated_at", "2023-01-18 00:59:38.718997"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.719654"], ["updated_at", "2023-01-18 00:59:38.719654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.720306"], ["updated_at", "2023-01-18 00:59:38.720306"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.720967"], ["updated_at", "2023-01-18 00:59:38.720967"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.721639"], ["updated_at", "2023-01-18 00:59:38.721639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.722293"], ["updated_at", "2023-01-18 00:59:38.722293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.722946"], ["updated_at", "2023-01-18 00:59:38.722946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:38.723597"], ["updated_at", "2023-01-18 00:59:38.723597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.738113"], ["updated_at", "2023-01-18 00:59:38.738113"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.739054"], ["updated_at", "2023-01-18 00:59:38.739054"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.739756"], ["updated_at", "2023-01-18 00:59:38.739756"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.740441"], ["updated_at", "2023-01-18 00:59:38.740441"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.741208"], ["updated_at", "2023-01-18 00:59:38.741208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.741904"], ["updated_at", "2023-01-18 00:59:38.741904"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.742576"], ["updated_at", "2023-01-18 00:59:38.742576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.743238"], ["updated_at", "2023-01-18 00:59:38.743238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.743887"], ["updated_at", "2023-01-18 00:59:38.743887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.744547"], ["updated_at", "2023-01-18 00:59:38.744547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.745215"], ["updated_at", "2023-01-18 00:59:38.745215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.745871"], ["updated_at", "2023-01-18 00:59:38.745871"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.746536"], ["updated_at", "2023-01-18 00:59:38.746536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.747200"], ["updated_at", "2023-01-18 00:59:38.747200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.747859"], ["updated_at", "2023-01-18 00:59:38.747859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:38.748537"], ["updated_at", "2023-01-18 00:59:38.748537"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.763058"], ["updated_at", "2023-01-18 00:59:38.763058"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.763955"], ["updated_at", "2023-01-18 00:59:38.763955"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.764664"], ["updated_at", "2023-01-18 00:59:38.764664"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.765356"], ["updated_at", "2023-01-18 00:59:38.765356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.766074"], ["updated_at", "2023-01-18 00:59:38.766074"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.766773"], ["updated_at", "2023-01-18 00:59:38.766773"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.767446"], ["updated_at", "2023-01-18 00:59:38.767446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.768101"], ["updated_at", "2023-01-18 00:59:38.768101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.768789"], ["updated_at", "2023-01-18 00:59:38.768789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.769465"], ["updated_at", "2023-01-18 00:59:38.769465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.770114"], ["updated_at", "2023-01-18 00:59:38.770114"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.770791"], ["updated_at", "2023-01-18 00:59:38.770791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.771455"], ["updated_at", "2023-01-18 00:59:38.771455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.772098"], ["updated_at", "2023-01-18 00:59:38.772098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.772759"], ["updated_at", "2023-01-18 00:59:38.772759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:38.773432"], ["updated_at", "2023-01-18 00:59:38.773432"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:38.788036"], ["updated_at", "2023-01-18 00:59:38.788036"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:38.788963"], ["updated_at", "2023-01-18 00:59:38.788963"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.789698"], ["updated_at", "2023-01-18 00:59:38.789698"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.790347"], ["updated_at", "2023-01-18 00:59:38.790347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.791063"], ["updated_at", "2023-01-18 00:59:38.791063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.791749"], ["updated_at", "2023-01-18 00:59:38.791749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.792399"], ["updated_at", "2023-01-18 00:59:38.792399"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.793088"], ["updated_at", "2023-01-18 00:59:38.793088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.793783"], ["updated_at", "2023-01-18 00:59:38.793783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.794433"], ["updated_at", "2023-01-18 00:59:38.794433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.795093"], ["updated_at", "2023-01-18 00:59:38.795093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.795750"], ["updated_at", "2023-01-18 00:59:38.795750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.796392"], ["updated_at", "2023-01-18 00:59:38.796392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.797051"], ["updated_at", "2023-01-18 00:59:38.797051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.797733"], ["updated_at", "2023-01-18 00:59:38.797733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:38.798420"], ["updated_at", "2023-01-18 00:59:38.798420"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-01-17 21:59:38 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 14ms (Views: 10.4ms | ActiveRecord: 0.4ms | Allocations: 9578)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:59:38.820303"], ["updated_at", "2023-01-18 00:59:38.820303"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:59:38.821727"], ["updated_at", "2023-01-18 00:59:38.821727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:59:38.824379"], ["updated_at", "2023-01-18 00:59:38.824379"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:59:38.825459"], ["updated_at", "2023-01-18 00:59:38.825459"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:59:38.827974"], ["updated_at", "2023-01-18 00:59:38.827974"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:59:38.829086"], ["updated_at", "2023-01-18 00:59:38.829086"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:59:38.831048"], ["updated_at", "2023-01-18 00:59:38.831048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:59:38.832378"], ["updated_at", "2023-01-18 00:59:38.832378"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:59:38.833862"], ["updated_at", "2023-01-18 00:59:38.833862"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:59:38.835104"], ["updated_at", "2023-01-18 00:59:38.835104"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:59:38.836429"], ["updated_at", "2023-01-18 00:59:38.836429"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:59:38.837576"], ["updated_at", "2023-01-18 00:59:38.837576"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:59:38.838914"], ["updated_at", "2023-01-18 00:59:38.838914"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:59:38.840051"], ["updated_at", "2023-01-18 00:59:38.840051"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:59:38.841372"], ["updated_at", "2023-01-18 00:59:38.841372"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:59:38.842496"], ["updated_at", "2023-01-18 00:59:38.842496"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:59:38.843787"], ["updated_at", "2023-01-18 00:59:38.843787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:59:38.844895"], ["updated_at", "2023-01-18 00:59:38.844895"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:59:38.846207"], ["updated_at", "2023-01-18 00:59:38.846207"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:59:38.847318"], ["updated_at", "2023-01-18 00:59:38.847318"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:59:38.848619"], ["updated_at", "2023-01-18 00:59:38.848619"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:59:38.849899"], ["updated_at", "2023-01-18 00:59:38.849899"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:59:38.851287"], ["updated_at", "2023-01-18 00:59:38.851287"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:59:38.852917"], ["updated_at", "2023-01-18 00:59:38.852917"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:59:38.854843"], ["updated_at", "2023-01-18 00:59:38.854843"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:59:38.856252"], ["updated_at", "2023-01-18 00:59:38.856252"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:59:38.857603"], ["updated_at", "2023-01-18 00:59:38.857603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:59:38.858793"], ["updated_at", "2023-01-18 00:59:38.858793"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:59:38.860245"], ["updated_at", "2023-01-18 00:59:38.860245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:59:38.861434"], ["updated_at", "2023-01-18 00:59:38.861434"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:59:38.863012"], ["updated_at", "2023-01-18 00:59:38.863012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:59:38.864288"], ["updated_at", "2023-01-18 00:59:38.864288"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:59:38.865698"], ["updated_at", "2023-01-18 00:59:38.865698"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:59:38.866844"], ["updated_at", "2023-01-18 00:59:38.866844"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:59:38.868289"], ["updated_at", "2023-01-18 00:59:38.868289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:59:38.869834"], ["updated_at", "2023-01-18 00:59:38.869834"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:59:38.871338"], ["updated_at", "2023-01-18 00:59:38.871338"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:59:38.872939"], ["updated_at", "2023-01-18 00:59:38.872939"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:59:38.874521"], ["updated_at", "2023-01-18 00:59:38.874521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:59:38.875746"], ["updated_at", "2023-01-18 00:59:38.875746"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:59:38.877237"], ["updated_at", "2023-01-18 00:59:38.877237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:59:38.878560"], ["updated_at", "2023-01-18 00:59:38.878560"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:59:38.880014"], ["updated_at", "2023-01-18 00:59:38.880014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.881353"], ["updated_at", "2023-01-18 00:59:38.881353"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:59:38.882872"], ["updated_at", "2023-01-18 00:59:38.882872"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:59:38.884166"], ["updated_at", "2023-01-18 00:59:38.884166"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:59:38.885805"], ["updated_at", "2023-01-18 00:59:38.885805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:59:38.887302"], ["updated_at", "2023-01-18 00:59:38.887302"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:59:38.888880"], ["updated_at", "2023-01-18 00:59:38.888880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:59:38.890238"], ["updated_at", "2023-01-18 00:59:38.890238"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:59:38.891789"], ["updated_at", "2023-01-18 00:59:38.891789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:59:38.893115"], ["updated_at", "2023-01-18 00:59:38.893115"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:59:38.894649"], ["updated_at", "2023-01-18 00:59:38.894649"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:59:38.895952"], ["updated_at", "2023-01-18 00:59:38.895952"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:59:38.897527"], ["updated_at", "2023-01-18 00:59:38.897527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:59:38.898883"], ["updated_at", "2023-01-18 00:59:38.898883"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:59:38.900393"], ["updated_at", "2023-01-18 00:59:38.900393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:59:38.901746"], ["updated_at", "2023-01-18 00:59:38.901746"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:59:38.903368"], ["updated_at", "2023-01-18 00:59:38.903368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:59:38.904748"], ["updated_at", "2023-01-18 00:59:38.904748"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:59:38.906392"], ["updated_at", "2023-01-18 00:59:38.906392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:59:38.907956"], ["updated_at", "2023-01-18 00:59:38.907956"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:59:38.909582"], ["updated_at", "2023-01-18 00:59:38.909582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.910941"], ["updated_at", "2023-01-18 00:59:38.910941"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:59:38.912441"], ["updated_at", "2023-01-18 00:59:38.912441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:59:38.913777"], ["updated_at", "2023-01-18 00:59:38.913777"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:59:38.915277"], ["updated_at", "2023-01-18 00:59:38.915277"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:59:38.916687"], ["updated_at", "2023-01-18 00:59:38.916687"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:59:38.918190"], ["updated_at", "2023-01-18 00:59:38.918190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.919626"], ["updated_at", "2023-01-18 00:59:38.919626"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:59:38.921278"], ["updated_at", "2023-01-18 00:59:38.921278"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:59:38.922718"], ["updated_at", "2023-01-18 00:59:38.922718"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:59:38.924502"], ["updated_at", "2023-01-18 00:59:38.924502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:59:38.925927"], ["updated_at", "2023-01-18 00:59:38.925927"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:59:38.927442"], ["updated_at", "2023-01-18 00:59:38.927442"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:59:38.928770"], ["updated_at", "2023-01-18 00:59:38.928770"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:59:38.930300"], ["updated_at", "2023-01-18 00:59:38.930300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:59:38.931652"], ["updated_at", "2023-01-18 00:59:38.931652"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:59:38.933228"], ["updated_at", "2023-01-18 00:59:38.933228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:59:38.934594"], ["updated_at", "2023-01-18 00:59:38.934594"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:59:38.936198"], ["updated_at", "2023-01-18 00:59:38.936198"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:59:38.937612"], ["updated_at", "2023-01-18 00:59:38.937612"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:59:38.939157"], ["updated_at", "2023-01-18 00:59:38.939157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:59:38.940805"], ["updated_at", "2023-01-18 00:59:38.940805"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:59:38.942426"], ["updated_at", "2023-01-18 00:59:38.942426"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:59:38.943800"], ["updated_at", "2023-01-18 00:59:38.943800"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:59:38.945312"], ["updated_at", "2023-01-18 00:59:38.945312"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:59:38.946643"], ["updated_at", "2023-01-18 00:59:38.946643"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:59:38.948153"], ["updated_at", "2023-01-18 00:59:38.948153"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:59:38.949508"], ["updated_at", "2023-01-18 00:59:38.949508"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:59:38.951100"], ["updated_at", "2023-01-18 00:59:38.951100"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:59:38.952495"], ["updated_at", "2023-01-18 00:59:38.952495"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:59:38.954129"], ["updated_at", "2023-01-18 00:59:38.954129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:59:38.955506"], ["updated_at", "2023-01-18 00:59:38.955506"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:59:38.957192"], ["updated_at", "2023-01-18 00:59:38.957192"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:59:38.958670"], ["updated_at", "2023-01-18 00:59:38.958670"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:59:38.960049"], ["updated_at", "2023-01-18 00:59:38.960049"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:59:38.961601"], ["updated_at", "2023-01-18 00:59:38.961601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:59:38.963187"], ["updated_at", "2023-01-18 00:59:38.963187"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:59:38.964503"], ["updated_at", "2023-01-18 00:59:38.964503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:59:38.965691"], ["updated_at", "2023-01-18 00:59:38.965691"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:38.977900"], ["updated_at", "2023-01-18 00:59:38.977900"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:38.979309"], ["updated_at", "2023-01-18 00:59:38.979309"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:38.980400"], ["updated_at", "2023-01-18 00:59:38.980400"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.981376"], ["updated_at", "2023-01-18 00:59:38.981376"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.982318"], ["updated_at", "2023-01-18 00:59:38.982318"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.983183"], ["updated_at", "2023-01-18 00:59:38.983183"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.983966"], ["updated_at", "2023-01-18 00:59:38.983966"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:38.984795"], ["updated_at", "2023-01-18 00:59:38.984795"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:38.985760"], ["updated_at", "2023-01-18 00:59:38.985760"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.986743"], ["updated_at", "2023-01-18 00:59:38.986743"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.987654"], ["updated_at", "2023-01-18 00:59:38.987654"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.988442"], ["updated_at", "2023-01-18 00:59:38.988442"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.989351"], ["updated_at", "2023-01-18 00:59:38.989351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.990487"], ["updated_at", "2023-01-18 00:59:38.990487"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.991462"], ["updated_at", "2023-01-18 00:59:38.991462"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.992323"], ["updated_at", "2023-01-18 00:59:38.992323"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.993210"], ["updated_at", "2023-01-18 00:59:38.993210"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.994085"], ["updated_at", "2023-01-18 00:59:38.994085"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.994940"], ["updated_at", "2023-01-18 00:59:38.994940"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.995776"], ["updated_at", "2023-01-18 00:59:38.995776"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:38.996593"], ["updated_at", "2023-01-18 00:59:38.996593"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:39.008894"], ["updated_at", "2023-01-18 00:59:39.008894"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:39.010174"], ["updated_at", "2023-01-18 00:59:39.010174"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:39.011182"], ["updated_at", "2023-01-18 00:59:39.011182"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.012092"], ["updated_at", "2023-01-18 00:59:39.012092"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.012918"], ["updated_at", "2023-01-18 00:59:39.012918"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.013705"], ["updated_at", "2023-01-18 00:59:39.013705"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.014428"], ["updated_at", "2023-01-18 00:59:39.014428"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.015159"], ["updated_at", "2023-01-18 00:59:39.015159"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:39.015982"], ["updated_at", "2023-01-18 00:59:39.015982"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.016905"], ["updated_at", "2023-01-18 00:59:39.016905"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.017794"], ["updated_at", "2023-01-18 00:59:39.017794"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.018656"], ["updated_at", "2023-01-18 00:59:39.018656"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.019485"], ["updated_at", "2023-01-18 00:59:39.019485"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.020315"], ["updated_at", "2023-01-18 00:59:39.020315"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.021074"], ["updated_at", "2023-01-18 00:59:39.021074"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.021848"], ["updated_at", "2023-01-18 00:59:39.021848"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.022754"], ["updated_at", "2023-01-18 00:59:39.022754"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.023845"], ["updated_at", "2023-01-18 00:59:39.023845"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.024680"], ["updated_at", "2023-01-18 00:59:39.024680"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.025509"], ["updated_at", "2023-01-18 00:59:39.025509"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.026412"], ["updated_at", "2023-01-18 00:59:39.026412"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.045079"], ["updated_at", "2023-01-18 00:59:39.045079"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.046311"], ["updated_at", "2023-01-18 00:59:39.046311"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.047349"], ["updated_at", "2023-01-18 00:59:39.047349"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.048238"], ["updated_at", "2023-01-18 00:59:39.048238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.049207"], ["updated_at", "2023-01-18 00:59:39.049207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.050095"], ["updated_at", "2023-01-18 00:59:39.050095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.050931"], ["updated_at", "2023-01-18 00:59:39.050931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.051902"], ["updated_at", "2023-01-18 00:59:39.051902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.052779"], ["updated_at", "2023-01-18 00:59:39.052779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.053647"], ["updated_at", "2023-01-18 00:59:39.053647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.054396"], ["updated_at", "2023-01-18 00:59:39.054396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.055311"], ["updated_at", "2023-01-18 00:59:39.055311"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.056435"], ["updated_at", "2023-01-18 00:59:39.056435"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.057380"], ["updated_at", "2023-01-18 00:59:39.057380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.058358"], ["updated_at", "2023-01-18 00:59:39.058358"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.059244"], ["updated_at", "2023-01-18 00:59:39.059244"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.075005"], ["updated_at", "2023-01-18 00:59:39.075005"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.076016"], ["updated_at", "2023-01-18 00:59:39.076016"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.076792"], ["updated_at", "2023-01-18 00:59:39.076792"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.077488"], ["updated_at", "2023-01-18 00:59:39.077488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.078247"], ["updated_at", "2023-01-18 00:59:39.078247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.078987"], ["updated_at", "2023-01-18 00:59:39.078987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.079691"], ["updated_at", "2023-01-18 00:59:39.079691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.080445"], ["updated_at", "2023-01-18 00:59:39.080445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.081184"], ["updated_at", "2023-01-18 00:59:39.081184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.081873"], ["updated_at", "2023-01-18 00:59:39.081873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.082542"], ["updated_at", "2023-01-18 00:59:39.082542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.083260"], ["updated_at", "2023-01-18 00:59:39.083260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.083896"], ["updated_at", "2023-01-18 00:59:39.083896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.084536"], ["updated_at", "2023-01-18 00:59:39.084536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.085268"], ["updated_at", "2023-01-18 00:59:39.085268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.085967"], ["updated_at", "2023-01-18 00:59:39.085967"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.101045"], ["updated_at", "2023-01-18 00:59:39.101045"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.102040"], ["updated_at", "2023-01-18 00:59:39.102040"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.102828"], ["updated_at", "2023-01-18 00:59:39.102828"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.103575"], ["updated_at", "2023-01-18 00:59:39.103575"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.104446"], ["updated_at", "2023-01-18 00:59:39.104446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.105457"], ["updated_at", "2023-01-18 00:59:39.105457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.106257"], ["updated_at", "2023-01-18 00:59:39.106257"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.106956"], ["updated_at", "2023-01-18 00:59:39.106956"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.107629"], ["updated_at", "2023-01-18 00:59:39.107629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.108321"], ["updated_at", "2023-01-18 00:59:39.108321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.109004"], ["updated_at", "2023-01-18 00:59:39.109004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.109676"], ["updated_at", "2023-01-18 00:59:39.109676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.110356"], ["updated_at", "2023-01-18 00:59:39.110356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.111038"], ["updated_at", "2023-01-18 00:59:39.111038"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.111703"], ["updated_at", "2023-01-18 00:59:39.111703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.112416"], ["updated_at", "2023-01-18 00:59:39.112416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.127468"], ["updated_at", "2023-01-18 00:59:39.127468"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.128437"], ["updated_at", "2023-01-18 00:59:39.128437"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.129187"], ["updated_at", "2023-01-18 00:59:39.129187"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.129874"], ["updated_at", "2023-01-18 00:59:39.129874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.130646"], ["updated_at", "2023-01-18 00:59:39.130646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.131341"], ["updated_at", "2023-01-18 00:59:39.131341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.131998"], ["updated_at", "2023-01-18 00:59:39.131998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.132660"], ["updated_at", "2023-01-18 00:59:39.132660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.133341"], ["updated_at", "2023-01-18 00:59:39.133341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.134004"], ["updated_at", "2023-01-18 00:59:39.134004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.134696"], ["updated_at", "2023-01-18 00:59:39.134696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.135403"], ["updated_at", "2023-01-18 00:59:39.135403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.136098"], ["updated_at", "2023-01-18 00:59:39.136098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.136768"], ["updated_at", "2023-01-18 00:59:39.136768"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.137467"], ["updated_at", "2023-01-18 00:59:39.137467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.138183"], ["updated_at", "2023-01-18 00:59:39.138183"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.153071"], ["updated_at", "2023-01-18 00:59:39.153071"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.154034"], ["updated_at", "2023-01-18 00:59:39.154034"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.154772"], ["updated_at", "2023-01-18 00:59:39.154772"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.155457"], ["updated_at", "2023-01-18 00:59:39.155457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.156279"], ["updated_at", "2023-01-18 00:59:39.156279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.157286"], ["updated_at", "2023-01-18 00:59:39.157286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.158208"], ["updated_at", "2023-01-18 00:59:39.158208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.159089"], ["updated_at", "2023-01-18 00:59:39.159089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.159903"], ["updated_at", "2023-01-18 00:59:39.159903"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.160719"], ["updated_at", "2023-01-18 00:59:39.160719"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.161502"], ["updated_at", "2023-01-18 00:59:39.161502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.162300"], ["updated_at", "2023-01-18 00:59:39.162300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.163116"], ["updated_at", "2023-01-18 00:59:39.163116"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.163918"], ["updated_at", "2023-01-18 00:59:39.163918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.164717"], ["updated_at", "2023-01-18 00:59:39.164717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.165569"], ["updated_at", "2023-01-18 00:59:39.165569"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.182538"], ["updated_at", "2023-01-18 00:59:39.182538"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.183608"], ["updated_at", "2023-01-18 00:59:39.183608"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.184442"], ["updated_at", "2023-01-18 00:59:39.184442"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.185367"], ["updated_at", "2023-01-18 00:59:39.185367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.186368"], ["updated_at", "2023-01-18 00:59:39.186368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.187360"], ["updated_at", "2023-01-18 00:59:39.187360"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.188289"], ["updated_at", "2023-01-18 00:59:39.188289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.189380"], ["updated_at", "2023-01-18 00:59:39.189380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.190471"], ["updated_at", "2023-01-18 00:59:39.190471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.191396"], ["updated_at", "2023-01-18 00:59:39.191396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.192252"], ["updated_at", "2023-01-18 00:59:39.192252"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.193083"], ["updated_at", "2023-01-18 00:59:39.193083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.193903"], ["updated_at", "2023-01-18 00:59:39.193903"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.194696"], ["updated_at", "2023-01-18 00:59:39.194696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.195494"], ["updated_at", "2023-01-18 00:59:39.195494"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.196332"], ["updated_at", "2023-01-18 00:59:39.196332"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-01-17 21:59:39 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:59:39.214898"], ["updated_at", "2023-01-18 00:59:39.214898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:59:39.216469"], ["updated_at", "2023-01-18 00:59:39.216469"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:59:39.219767"], ["updated_at", "2023-01-18 00:59:39.219767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:59:39.221079"], ["updated_at", "2023-01-18 00:59:39.221079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:59:39.224300"], ["updated_at", "2023-01-18 00:59:39.224300"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:59:39.225844"], ["updated_at", "2023-01-18 00:59:39.225844"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:59:39.228368"], ["updated_at", "2023-01-18 00:59:39.228368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:59:39.229971"], ["updated_at", "2023-01-18 00:59:39.229971"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:59:39.231713"], ["updated_at", "2023-01-18 00:59:39.231713"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:59:39.233204"], ["updated_at", "2023-01-18 00:59:39.233204"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:59:39.234879"], ["updated_at", "2023-01-18 00:59:39.234879"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:59:39.236368"], ["updated_at", "2023-01-18 00:59:39.236368"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:59:39.238063"], ["updated_at", "2023-01-18 00:59:39.238063"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:59:39.239681"], ["updated_at", "2023-01-18 00:59:39.239681"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:59:39.241570"], ["updated_at", "2023-01-18 00:59:39.241570"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:59:39.243072"], ["updated_at", "2023-01-18 00:59:39.243072"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:59:39.244781"], ["updated_at", "2023-01-18 00:59:39.244781"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:59:39.246279"], ["updated_at", "2023-01-18 00:59:39.246279"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:59:39.247956"], ["updated_at", "2023-01-18 00:59:39.247956"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:59:39.249437"], ["updated_at", "2023-01-18 00:59:39.249437"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:59:39.251103"], ["updated_at", "2023-01-18 00:59:39.251103"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:59:39.252674"], ["updated_at", "2023-01-18 00:59:39.252674"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:59:39.254455"], ["updated_at", "2023-01-18 00:59:39.254455"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:59:39.255851"], ["updated_at", "2023-01-18 00:59:39.255851"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:59:39.257521"], ["updated_at", "2023-01-18 00:59:39.257521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:59:39.259144"], ["updated_at", "2023-01-18 00:59:39.259144"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:59:39.260754"], ["updated_at", "2023-01-18 00:59:39.260754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:59:39.262138"], ["updated_at", "2023-01-18 00:59:39.262138"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:59:39.263691"], ["updated_at", "2023-01-18 00:59:39.263691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:59:39.265061"], ["updated_at", "2023-01-18 00:59:39.265061"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:59:39.266637"], ["updated_at", "2023-01-18 00:59:39.266637"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:59:39.267986"], ["updated_at", "2023-01-18 00:59:39.267986"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:59:39.269657"], ["updated_at", "2023-01-18 00:59:39.269657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:59:39.271151"], ["updated_at", "2023-01-18 00:59:39.271151"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:59:39.272720"], ["updated_at", "2023-01-18 00:59:39.272720"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:59:39.274170"], ["updated_at", "2023-01-18 00:59:39.274170"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:59:39.275987"], ["updated_at", "2023-01-18 00:59:39.275987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:59:39.277388"], ["updated_at", "2023-01-18 00:59:39.277388"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:59:39.278954"], ["updated_at", "2023-01-18 00:59:39.278954"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:59:39.280329"], ["updated_at", "2023-01-18 00:59:39.280329"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:59:39.281899"], ["updated_at", "2023-01-18 00:59:39.281899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:59:39.283270"], ["updated_at", "2023-01-18 00:59:39.283270"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:59:39.284803"], ["updated_at", "2023-01-18 00:59:39.284803"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:59:39.286333"], ["updated_at", "2023-01-18 00:59:39.286333"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:59:39.288073"], ["updated_at", "2023-01-18 00:59:39.288073"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:59:39.289603"], ["updated_at", "2023-01-18 00:59:39.289603"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:59:39.291160"], ["updated_at", "2023-01-18 00:59:39.291160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:59:39.292600"], ["updated_at", "2023-01-18 00:59:39.292600"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:59:39.294192"], ["updated_at", "2023-01-18 00:59:39.294192"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:59:39.295521"], ["updated_at", "2023-01-18 00:59:39.295521"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:59:39.297079"], ["updated_at", "2023-01-18 00:59:39.297079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:59:39.298414"], ["updated_at", "2023-01-18 00:59:39.298414"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:59:39.299955"], ["updated_at", "2023-01-18 00:59:39.299955"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:59:39.301314"], ["updated_at", "2023-01-18 00:59:39.301314"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:59:39.303066"], ["updated_at", "2023-01-18 00:59:39.303066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:59:39.304501"], ["updated_at", "2023-01-18 00:59:39.304501"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:59:39.306089"], ["updated_at", "2023-01-18 00:59:39.306089"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:59:39.307595"], ["updated_at", "2023-01-18 00:59:39.307595"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:59:39.309366"], ["updated_at", "2023-01-18 00:59:39.309366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:59:39.310777"], ["updated_at", "2023-01-18 00:59:39.310777"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:59:39.312310"], ["updated_at", "2023-01-18 00:59:39.312310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:59:39.313671"], ["updated_at", "2023-01-18 00:59:39.313671"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:59:39.315227"], ["updated_at", "2023-01-18 00:59:39.315227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:59:39.316544"], ["updated_at", "2023-01-18 00:59:39.316544"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:59:39.318122"], ["updated_at", "2023-01-18 00:59:39.318122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:59:39.319592"], ["updated_at", "2023-01-18 00:59:39.319592"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:59:39.321288"], ["updated_at", "2023-01-18 00:59:39.321288"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:59:39.322662"], ["updated_at", "2023-01-18 00:59:39.322662"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:59:39.324313"], ["updated_at", "2023-01-18 00:59:39.324313"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:59:39.325969"], ["updated_at", "2023-01-18 00:59:39.325969"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:59:39.327571"], ["updated_at", "2023-01-18 00:59:39.327571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:59:39.328929"], ["updated_at", "2023-01-18 00:59:39.328929"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:59:39.330479"], ["updated_at", "2023-01-18 00:59:39.330479"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:59:39.331847"], ["updated_at", "2023-01-18 00:59:39.331847"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:59:39.333387"], ["updated_at", "2023-01-18 00:59:39.333387"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:59:39.334768"], ["updated_at", "2023-01-18 00:59:39.334768"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:59:39.336465"], ["updated_at", "2023-01-18 00:59:39.336465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:59:39.337975"], ["updated_at", "2023-01-18 00:59:39.337975"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:59:39.339663"], ["updated_at", "2023-01-18 00:59:39.339663"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:59:39.341030"], ["updated_at", "2023-01-18 00:59:39.341030"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:59:39.342632"], ["updated_at", "2023-01-18 00:59:39.342632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:59:39.344015"], ["updated_at", "2023-01-18 00:59:39.344015"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:59:39.345540"], ["updated_at", "2023-01-18 00:59:39.345540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:59:39.346898"], ["updated_at", "2023-01-18 00:59:39.346898"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:59:39.348446"], ["updated_at", "2023-01-18 00:59:39.348446"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:59:39.349703"], ["updated_at", "2023-01-18 00:59:39.349703"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:59:39.351229"], ["updated_at", "2023-01-18 00:59:39.351229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:59:39.352581"], ["updated_at", "2023-01-18 00:59:39.352581"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:59:39.354238"], ["updated_at", "2023-01-18 00:59:39.354238"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:59:39.355528"], ["updated_at", "2023-01-18 00:59:39.355528"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:59:39.357098"], ["updated_at", "2023-01-18 00:59:39.357098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:59:39.358679"], ["updated_at", "2023-01-18 00:59:39.358679"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:59:39.360305"], ["updated_at", "2023-01-18 00:59:39.360305"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:59:39.361632"], ["updated_at", "2023-01-18 00:59:39.361632"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:59:39.363160"], ["updated_at", "2023-01-18 00:59:39.363160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:59:39.364299"], ["updated_at", "2023-01-18 00:59:39.364299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:59:39.365604"], ["updated_at", "2023-01-18 00:59:39.365604"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:59:39.367106"], ["updated_at", "2023-01-18 00:59:39.367106"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:59:39.368762"], ["updated_at", "2023-01-18 00:59:39.368762"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:59:39.370138"], ["updated_at", "2023-01-18 00:59:39.370138"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:59:39.371394"], ["updated_at", "2023-01-18 00:59:39.371394"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:39.383250"], ["updated_at", "2023-01-18 00:59:39.383250"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:39.384662"], ["updated_at", "2023-01-18 00:59:39.384662"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:39.385749"], ["updated_at", "2023-01-18 00:59:39.385749"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.386737"], ["updated_at", "2023-01-18 00:59:39.386737"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.387752"], ["updated_at", "2023-01-18 00:59:39.387752"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.388540"], ["updated_at", "2023-01-18 00:59:39.388540"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.389353"], ["updated_at", "2023-01-18 00:59:39.389353"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.390068"], ["updated_at", "2023-01-18 00:59:39.390068"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:39.390824"], ["updated_at", "2023-01-18 00:59:39.390824"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.391689"], ["updated_at", "2023-01-18 00:59:39.391689"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.392657"], ["updated_at", "2023-01-18 00:59:39.392657"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.393453"], ["updated_at", "2023-01-18 00:59:39.393453"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.394178"], ["updated_at", "2023-01-18 00:59:39.394178"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.394911"], ["updated_at", "2023-01-18 00:59:39.394911"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.395683"], ["updated_at", "2023-01-18 00:59:39.395683"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.396509"], ["updated_at", "2023-01-18 00:59:39.396509"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.397319"], ["updated_at", "2023-01-18 00:59:39.397319"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.398209"], ["updated_at", "2023-01-18 00:59:39.398209"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.399019"], ["updated_at", "2023-01-18 00:59:39.399019"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.399753"], ["updated_at", "2023-01-18 00:59:39.399753"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.400491"], ["updated_at", "2023-01-18 00:59:39.400491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:39.412716"], ["updated_at", "2023-01-18 00:59:39.412716"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:39.414024"], ["updated_at", "2023-01-18 00:59:39.414024"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:39.414936"], ["updated_at", "2023-01-18 00:59:39.414936"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.415752"], ["updated_at", "2023-01-18 00:59:39.415752"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.416460"], ["updated_at", "2023-01-18 00:59:39.416460"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.417134"], ["updated_at", "2023-01-18 00:59:39.417134"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.417899"], ["updated_at", "2023-01-18 00:59:39.417899"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.418695"], ["updated_at", "2023-01-18 00:59:39.418695"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:39.419474"], ["updated_at", "2023-01-18 00:59:39.419474"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.420313"], ["updated_at", "2023-01-18 00:59:39.420313"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.421098"], ["updated_at", "2023-01-18 00:59:39.421098"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.422011"], ["updated_at", "2023-01-18 00:59:39.422011"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.423017"], ["updated_at", "2023-01-18 00:59:39.423017"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.424045"], ["updated_at", "2023-01-18 00:59:39.424045"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.425018"], ["updated_at", "2023-01-18 00:59:39.425018"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.426037"], ["updated_at", "2023-01-18 00:59:39.426037"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.427007"], ["updated_at", "2023-01-18 00:59:39.427007"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.427959"], ["updated_at", "2023-01-18 00:59:39.427959"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.428963"], ["updated_at", "2023-01-18 00:59:39.428963"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.430079"], ["updated_at", "2023-01-18 00:59:39.430079"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.430933"], ["updated_at", "2023-01-18 00:59:39.430933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.447214"], ["updated_at", "2023-01-18 00:59:39.447214"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.448233"], ["updated_at", "2023-01-18 00:59:39.448233"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.449021"], ["updated_at", "2023-01-18 00:59:39.449021"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.449717"], ["updated_at", "2023-01-18 00:59:39.449717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.450473"], ["updated_at", "2023-01-18 00:59:39.450473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.451248"], ["updated_at", "2023-01-18 00:59:39.451248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.452108"], ["updated_at", "2023-01-18 00:59:39.452108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.452973"], ["updated_at", "2023-01-18 00:59:39.452973"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.453858"], ["updated_at", "2023-01-18 00:59:39.453858"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.454702"], ["updated_at", "2023-01-18 00:59:39.454702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.455432"], ["updated_at", "2023-01-18 00:59:39.455432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.456119"], ["updated_at", "2023-01-18 00:59:39.456119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.456774"], ["updated_at", "2023-01-18 00:59:39.456774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.457455"], ["updated_at", "2023-01-18 00:59:39.457455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.458135"], ["updated_at", "2023-01-18 00:59:39.458135"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.458788"], ["updated_at", "2023-01-18 00:59:39.458788"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.475617"], ["updated_at", "2023-01-18 00:59:39.475617"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.476869"], ["updated_at", "2023-01-18 00:59:39.476869"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.477906"], ["updated_at", "2023-01-18 00:59:39.477906"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.478834"], ["updated_at", "2023-01-18 00:59:39.478834"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.479805"], ["updated_at", "2023-01-18 00:59:39.479805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.480812"], ["updated_at", "2023-01-18 00:59:39.480812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.481786"], ["updated_at", "2023-01-18 00:59:39.481786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.482582"], ["updated_at", "2023-01-18 00:59:39.482582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.483314"], ["updated_at", "2023-01-18 00:59:39.483314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.483996"], ["updated_at", "2023-01-18 00:59:39.483996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.484668"], ["updated_at", "2023-01-18 00:59:39.484668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.485578"], ["updated_at", "2023-01-18 00:59:39.485578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.486484"], ["updated_at", "2023-01-18 00:59:39.486484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.487241"], ["updated_at", "2023-01-18 00:59:39.487241"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.487944"], ["updated_at", "2023-01-18 00:59:39.487944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.488618"], ["updated_at", "2023-01-18 00:59:39.488618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.504131"], ["updated_at", "2023-01-18 00:59:39.504131"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.505090"], ["updated_at", "2023-01-18 00:59:39.505090"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.505845"], ["updated_at", "2023-01-18 00:59:39.505845"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.506537"], ["updated_at", "2023-01-18 00:59:39.506537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.507279"], ["updated_at", "2023-01-18 00:59:39.507279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.507982"], ["updated_at", "2023-01-18 00:59:39.507982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.508671"], ["updated_at", "2023-01-18 00:59:39.508671"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.509547"], ["updated_at", "2023-01-18 00:59:39.509547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.510528"], ["updated_at", "2023-01-18 00:59:39.510528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.511267"], ["updated_at", "2023-01-18 00:59:39.511267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.511948"], ["updated_at", "2023-01-18 00:59:39.511948"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.512611"], ["updated_at", "2023-01-18 00:59:39.512611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.513290"], ["updated_at", "2023-01-18 00:59:39.513290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.513977"], ["updated_at", "2023-01-18 00:59:39.513977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.514656"], ["updated_at", "2023-01-18 00:59:39.514656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.515323"], ["updated_at", "2023-01-18 00:59:39.515323"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.530972"], ["updated_at", "2023-01-18 00:59:39.530972"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.531896"], ["updated_at", "2023-01-18 00:59:39.531896"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.532629"], ["updated_at", "2023-01-18 00:59:39.532629"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.533341"], ["updated_at", "2023-01-18 00:59:39.533341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.534116"], ["updated_at", "2023-01-18 00:59:39.534116"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.534907"], ["updated_at", "2023-01-18 00:59:39.534907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.535842"], ["updated_at", "2023-01-18 00:59:39.535842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.536700"], ["updated_at", "2023-01-18 00:59:39.536700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.537431"], ["updated_at", "2023-01-18 00:59:39.537431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.538133"], ["updated_at", "2023-01-18 00:59:39.538133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.538853"], ["updated_at", "2023-01-18 00:59:39.538853"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.539541"], ["updated_at", "2023-01-18 00:59:39.539541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.540231"], ["updated_at", "2023-01-18 00:59:39.540231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.540906"], ["updated_at", "2023-01-18 00:59:39.540906"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.541606"], ["updated_at", "2023-01-18 00:59:39.541606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.542319"], ["updated_at", "2023-01-18 00:59:39.542319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.558065"], ["updated_at", "2023-01-18 00:59:39.558065"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.559022"], ["updated_at", "2023-01-18 00:59:39.559022"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.559803"], ["updated_at", "2023-01-18 00:59:39.559803"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.560530"], ["updated_at", "2023-01-18 00:59:39.560530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.561303"], ["updated_at", "2023-01-18 00:59:39.561303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.562029"], ["updated_at", "2023-01-18 00:59:39.562029"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.562735"], ["updated_at", "2023-01-18 00:59:39.562735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.563418"], ["updated_at", "2023-01-18 00:59:39.563418"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.564099"], ["updated_at", "2023-01-18 00:59:39.564099"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.564826"], ["updated_at", "2023-01-18 00:59:39.564826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.565567"], ["updated_at", "2023-01-18 00:59:39.565567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.566294"], ["updated_at", "2023-01-18 00:59:39.566294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.567000"], ["updated_at", "2023-01-18 00:59:39.567000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.567684"], ["updated_at", "2023-01-18 00:59:39.567684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.568507"], ["updated_at", "2023-01-18 00:59:39.568507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.569367"], ["updated_at", "2023-01-18 00:59:39.569367"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.585091"], ["updated_at", "2023-01-18 00:59:39.585091"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.586272"], ["updated_at", "2023-01-18 00:59:39.586272"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.587178"], ["updated_at", "2023-01-18 00:59:39.587178"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.588066"], ["updated_at", "2023-01-18 00:59:39.588066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.588912"], ["updated_at", "2023-01-18 00:59:39.588912"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.589733"], ["updated_at", "2023-01-18 00:59:39.589733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.590468"], ["updated_at", "2023-01-18 00:59:39.590468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.591208"], ["updated_at", "2023-01-18 00:59:39.591208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.591928"], ["updated_at", "2023-01-18 00:59:39.591928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.592690"], ["updated_at", "2023-01-18 00:59:39.592690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.593424"], ["updated_at", "2023-01-18 00:59:39.593424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.594154"], ["updated_at", "2023-01-18 00:59:39.594154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.594877"], ["updated_at", "2023-01-18 00:59:39.594877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.595596"], ["updated_at", "2023-01-18 00:59:39.595596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.596308"], ["updated_at", "2023-01-18 00:59:39.596308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.597021"], ["updated_at", "2023-01-18 00:59:39.597021"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-01-17 21:59:39 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:59:39.612029"], ["updated_at", "2023-01-18 00:59:39.612029"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:59:39.613480"], ["updated_at", "2023-01-18 00:59:39.613480"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:59:39.616186"], ["updated_at", "2023-01-18 00:59:39.616186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:59:39.617330"], ["updated_at", "2023-01-18 00:59:39.617330"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:59:39.620357"], ["updated_at", "2023-01-18 00:59:39.620357"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:59:39.621612"], ["updated_at", "2023-01-18 00:59:39.621612"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:59:39.623653"], ["updated_at", "2023-01-18 00:59:39.623653"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:59:39.625001"], ["updated_at", "2023-01-18 00:59:39.625001"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:59:39.626854"], ["updated_at", "2023-01-18 00:59:39.626854"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:59:39.628266"], ["updated_at", "2023-01-18 00:59:39.628266"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:59:39.629722"], ["updated_at", "2023-01-18 00:59:39.629722"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:59:39.630895"], ["updated_at", "2023-01-18 00:59:39.630895"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:59:39.632205"], ["updated_at", "2023-01-18 00:59:39.632205"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:59:39.633441"], ["updated_at", "2023-01-18 00:59:39.633441"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:59:39.634880"], ["updated_at", "2023-01-18 00:59:39.634880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:59:39.636305"], ["updated_at", "2023-01-18 00:59:39.636305"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:59:39.637804"], ["updated_at", "2023-01-18 00:59:39.637804"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:59:39.639048"], ["updated_at", "2023-01-18 00:59:39.639048"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:59:39.640341"], ["updated_at", "2023-01-18 00:59:39.640341"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:59:39.641465"], ["updated_at", "2023-01-18 00:59:39.641465"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:59:39.643020"], ["updated_at", "2023-01-18 00:59:39.643020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:59:39.644361"], ["updated_at", "2023-01-18 00:59:39.644361"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:59:39.645699"], ["updated_at", "2023-01-18 00:59:39.645699"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:59:39.646885"], ["updated_at", "2023-01-18 00:59:39.646885"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:59:39.648575"], ["updated_at", "2023-01-18 00:59:39.648575"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:59:39.649783"], ["updated_at", "2023-01-18 00:59:39.649783"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:59:39.651108"], ["updated_at", "2023-01-18 00:59:39.651108"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:59:39.652456"], ["updated_at", "2023-01-18 00:59:39.652456"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:59:39.654005"], ["updated_at", "2023-01-18 00:59:39.654005"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:59:39.655320"], ["updated_at", "2023-01-18 00:59:39.655320"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:59:39.656722"], ["updated_at", "2023-01-18 00:59:39.656722"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:59:39.657895"], ["updated_at", "2023-01-18 00:59:39.657895"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:59:39.659244"], ["updated_at", "2023-01-18 00:59:39.659244"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:59:39.660748"], ["updated_at", "2023-01-18 00:59:39.660748"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:59:39.662146"], ["updated_at", "2023-01-18 00:59:39.662146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:59:39.663309"], ["updated_at", "2023-01-18 00:59:39.663309"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:59:39.664616"], ["updated_at", "2023-01-18 00:59:39.664616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:59:39.665761"], ["updated_at", "2023-01-18 00:59:39.665761"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:59:39.667079"], ["updated_at", "2023-01-18 00:59:39.667079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:59:39.668229"], ["updated_at", "2023-01-18 00:59:39.668229"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:59:39.669850"], ["updated_at", "2023-01-18 00:59:39.669850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:59:39.671154"], ["updated_at", "2023-01-18 00:59:39.671154"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:59:39.672571"], ["updated_at", "2023-01-18 00:59:39.672571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:59:39.673741"], ["updated_at", "2023-01-18 00:59:39.673741"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:59:39.675045"], ["updated_at", "2023-01-18 00:59:39.675045"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:59:39.676412"], ["updated_at", "2023-01-18 00:59:39.676412"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:59:39.677970"], ["updated_at", "2023-01-18 00:59:39.677970"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:59:39.679123"], ["updated_at", "2023-01-18 00:59:39.679123"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:59:39.680409"], ["updated_at", "2023-01-18 00:59:39.680409"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:59:39.681534"], ["updated_at", "2023-01-18 00:59:39.681534"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:59:39.682815"], ["updated_at", "2023-01-18 00:59:39.682815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:59:39.683930"], ["updated_at", "2023-01-18 00:59:39.683930"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:59:39.685346"], ["updated_at", "2023-01-18 00:59:39.685346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:59:39.686792"], ["updated_at", "2023-01-18 00:59:39.686792"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:59:39.688219"], ["updated_at", "2023-01-18 00:59:39.688219"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:59:39.689365"], ["updated_at", "2023-01-18 00:59:39.689365"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:59:39.690668"], ["updated_at", "2023-01-18 00:59:39.690668"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:59:39.691792"], ["updated_at", "2023-01-18 00:59:39.691792"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:59:39.693419"], ["updated_at", "2023-01-18 00:59:39.693419"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:59:39.694700"], ["updated_at", "2023-01-18 00:59:39.694700"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:59:39.696049"], ["updated_at", "2023-01-18 00:59:39.696049"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:59:39.697190"], ["updated_at", "2023-01-18 00:59:39.697190"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:59:39.698483"], ["updated_at", "2023-01-18 00:59:39.698483"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:59:39.699588"], ["updated_at", "2023-01-18 00:59:39.699588"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:59:39.700864"], ["updated_at", "2023-01-18 00:59:39.700864"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:59:39.702147"], ["updated_at", "2023-01-18 00:59:39.702147"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:59:39.703741"], ["updated_at", "2023-01-18 00:59:39.703741"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:59:39.704934"], ["updated_at", "2023-01-18 00:59:39.704934"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:59:39.706281"], ["updated_at", "2023-01-18 00:59:39.706281"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:59:39.707406"], ["updated_at", "2023-01-18 00:59:39.707406"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:59:39.708715"], ["updated_at", "2023-01-18 00:59:39.708715"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:59:39.710240"], ["updated_at", "2023-01-18 00:59:39.710240"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:59:39.711665"], ["updated_at", "2023-01-18 00:59:39.711665"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:59:39.712792"], ["updated_at", "2023-01-18 00:59:39.712792"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:59:39.714118"], ["updated_at", "2023-01-18 00:59:39.714118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:59:39.715255"], ["updated_at", "2023-01-18 00:59:39.715255"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:59:39.716537"], ["updated_at", "2023-01-18 00:59:39.716537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:59:39.717659"], ["updated_at", "2023-01-18 00:59:39.717659"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:59:39.719209"], ["updated_at", "2023-01-18 00:59:39.719209"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:59:39.720560"], ["updated_at", "2023-01-18 00:59:39.720560"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:59:39.721919"], ["updated_at", "2023-01-18 00:59:39.721919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:59:39.723048"], ["updated_at", "2023-01-18 00:59:39.723048"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:59:39.724358"], ["updated_at", "2023-01-18 00:59:39.724358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:59:39.725521"], ["updated_at", "2023-01-18 00:59:39.725521"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:59:39.727213"], ["updated_at", "2023-01-18 00:59:39.727213"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:59:39.728411"], ["updated_at", "2023-01-18 00:59:39.728411"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:59:39.729733"], ["updated_at", "2023-01-18 00:59:39.729733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:59:39.730854"], ["updated_at", "2023-01-18 00:59:39.730854"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:59:39.732136"], ["updated_at", "2023-01-18 00:59:39.732136"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:59:39.733308"], ["updated_at", "2023-01-18 00:59:39.733308"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:59:39.734631"], ["updated_at", "2023-01-18 00:59:39.734631"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:59:39.736044"], ["updated_at", "2023-01-18 00:59:39.736044"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:59:39.737578"], ["updated_at", "2023-01-18 00:59:39.737578"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:59:39.738762"], ["updated_at", "2023-01-18 00:59:39.738762"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:59:39.740122"], ["updated_at", "2023-01-18 00:59:39.740122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:59:39.741150"], ["updated_at", "2023-01-18 00:59:39.741150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:59:39.742349"], ["updated_at", "2023-01-18 00:59:39.742349"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:59:39.744031"], ["updated_at", "2023-01-18 00:59:39.744031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:59:39.745513"], ["updated_at", "2023-01-18 00:59:39.745513"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:59:39.746588"], ["updated_at", "2023-01-18 00:59:39.746588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:59:39.747532"], ["updated_at", "2023-01-18 00:59:39.747532"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:39.760070"], ["updated_at", "2023-01-18 00:59:39.760070"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:39.761427"], ["updated_at", "2023-01-18 00:59:39.761427"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:39.762393"], ["updated_at", "2023-01-18 00:59:39.762393"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.763215"], ["updated_at", "2023-01-18 00:59:39.763215"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.763944"], ["updated_at", "2023-01-18 00:59:39.763944"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.764612"], ["updated_at", "2023-01-18 00:59:39.764612"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.765311"], ["updated_at", "2023-01-18 00:59:39.765311"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.765987"], ["updated_at", "2023-01-18 00:59:39.765987"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:39.766707"], ["updated_at", "2023-01-18 00:59:39.766707"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.767511"], ["updated_at", "2023-01-18 00:59:39.767511"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.768347"], ["updated_at", "2023-01-18 00:59:39.768347"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.769235"], ["updated_at", "2023-01-18 00:59:39.769235"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.770011"], ["updated_at", "2023-01-18 00:59:39.770011"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.770732"], ["updated_at", "2023-01-18 00:59:39.770732"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.771442"], ["updated_at", "2023-01-18 00:59:39.771442"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.772148"], ["updated_at", "2023-01-18 00:59:39.772148"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.772835"], ["updated_at", "2023-01-18 00:59:39.772835"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.773557"], ["updated_at", "2023-01-18 00:59:39.773557"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.774266"], ["updated_at", "2023-01-18 00:59:39.774266"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.774978"], ["updated_at", "2023-01-18 00:59:39.774978"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.775740"], ["updated_at", "2023-01-18 00:59:39.775740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:39.787060"], ["updated_at", "2023-01-18 00:59:39.787060"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:39.788223"], ["updated_at", "2023-01-18 00:59:39.788223"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:39.789079"], ["updated_at", "2023-01-18 00:59:39.789079"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.789914"], ["updated_at", "2023-01-18 00:59:39.789914"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.790622"], ["updated_at", "2023-01-18 00:59:39.790622"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.791275"], ["updated_at", "2023-01-18 00:59:39.791275"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.791907"], ["updated_at", "2023-01-18 00:59:39.791907"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:39.792668"], ["updated_at", "2023-01-18 00:59:39.792668"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:39.793716"], ["updated_at", "2023-01-18 00:59:39.793716"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.794655"], ["updated_at", "2023-01-18 00:59:39.794655"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.795428"], ["updated_at", "2023-01-18 00:59:39.795428"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.796138"], ["updated_at", "2023-01-18 00:59:39.796138"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.796851"], ["updated_at", "2023-01-18 00:59:39.796851"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.797576"], ["updated_at", "2023-01-18 00:59:39.797576"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.798302"], ["updated_at", "2023-01-18 00:59:39.798302"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.799030"], ["updated_at", "2023-01-18 00:59:39.799030"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.799788"], ["updated_at", "2023-01-18 00:59:39.799788"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.800510"], ["updated_at", "2023-01-18 00:59:39.800510"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.801218"], ["updated_at", "2023-01-18 00:59:39.801218"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.802108"], ["updated_at", "2023-01-18 00:59:39.802108"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:39.802910"], ["updated_at", "2023-01-18 00:59:39.802910"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.818201"], ["updated_at", "2023-01-18 00:59:39.818201"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.819307"], ["updated_at", "2023-01-18 00:59:39.819307"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.820149"], ["updated_at", "2023-01-18 00:59:39.820149"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.820849"], ["updated_at", "2023-01-18 00:59:39.820849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.821751"], ["updated_at", "2023-01-18 00:59:39.821751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.822608"], ["updated_at", "2023-01-18 00:59:39.822608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.823307"], ["updated_at", "2023-01-18 00:59:39.823307"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.823987"], ["updated_at", "2023-01-18 00:59:39.823987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.824658"], ["updated_at", "2023-01-18 00:59:39.824658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.825318"], ["updated_at", "2023-01-18 00:59:39.825318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.826033"], ["updated_at", "2023-01-18 00:59:39.826033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.826724"], ["updated_at", "2023-01-18 00:59:39.826724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.827397"], ["updated_at", "2023-01-18 00:59:39.827397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.828065"], ["updated_at", "2023-01-18 00:59:39.828065"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.828729"], ["updated_at", "2023-01-18 00:59:39.828729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:39.829388"], ["updated_at", "2023-01-18 00:59:39.829388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.844581"], ["updated_at", "2023-01-18 00:59:39.844581"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.845540"], ["updated_at", "2023-01-18 00:59:39.845540"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.846266"], ["updated_at", "2023-01-18 00:59:39.846266"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.846937"], ["updated_at", "2023-01-18 00:59:39.846937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.847666"], ["updated_at", "2023-01-18 00:59:39.847666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.848357"], ["updated_at", "2023-01-18 00:59:39.848357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.849010"], ["updated_at", "2023-01-18 00:59:39.849010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.849693"], ["updated_at", "2023-01-18 00:59:39.849693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.850370"], ["updated_at", "2023-01-18 00:59:39.850370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.851035"], ["updated_at", "2023-01-18 00:59:39.851035"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.851798"], ["updated_at", "2023-01-18 00:59:39.851798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.852683"], ["updated_at", "2023-01-18 00:59:39.852683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.853504"], ["updated_at", "2023-01-18 00:59:39.853504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.854205"], ["updated_at", "2023-01-18 00:59:39.854205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.854876"], ["updated_at", "2023-01-18 00:59:39.854876"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:39.855549"], ["updated_at", "2023-01-18 00:59:39.855549"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.871153"], ["updated_at", "2023-01-18 00:59:39.871153"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.872088"], ["updated_at", "2023-01-18 00:59:39.872088"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.872790"], ["updated_at", "2023-01-18 00:59:39.872790"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.873472"], ["updated_at", "2023-01-18 00:59:39.873472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.874201"], ["updated_at", "2023-01-18 00:59:39.874201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.874882"], ["updated_at", "2023-01-18 00:59:39.874882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.875577"], ["updated_at", "2023-01-18 00:59:39.875577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.876288"], ["updated_at", "2023-01-18 00:59:39.876288"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.877021"], ["updated_at", "2023-01-18 00:59:39.877021"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.877739"], ["updated_at", "2023-01-18 00:59:39.877739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.878428"], ["updated_at", "2023-01-18 00:59:39.878428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.879109"], ["updated_at", "2023-01-18 00:59:39.879109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.879784"], ["updated_at", "2023-01-18 00:59:39.879784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.880457"], ["updated_at", "2023-01-18 00:59:39.880457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.881105"], ["updated_at", "2023-01-18 00:59:39.881105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:39.881788"], ["updated_at", "2023-01-18 00:59:39.881788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.896961"], ["updated_at", "2023-01-18 00:59:39.896961"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.897906"], ["updated_at", "2023-01-18 00:59:39.897906"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.898644"], ["updated_at", "2023-01-18 00:59:39.898644"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.899320"], ["updated_at", "2023-01-18 00:59:39.899320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.900035"], ["updated_at", "2023-01-18 00:59:39.900035"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.900724"], ["updated_at", "2023-01-18 00:59:39.900724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.901412"], ["updated_at", "2023-01-18 00:59:39.901412"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.902252"], ["updated_at", "2023-01-18 00:59:39.902252"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.902999"], ["updated_at", "2023-01-18 00:59:39.902999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.903691"], ["updated_at", "2023-01-18 00:59:39.903691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.904349"], ["updated_at", "2023-01-18 00:59:39.904349"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.905027"], ["updated_at", "2023-01-18 00:59:39.905027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.905740"], ["updated_at", "2023-01-18 00:59:39.905740"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.906446"], ["updated_at", "2023-01-18 00:59:39.906446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.907198"], ["updated_at", "2023-01-18 00:59:39.907198"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:39.907910"], ["updated_at", "2023-01-18 00:59:39.907910"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.923440"], ["updated_at", "2023-01-18 00:59:39.923440"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.924389"], ["updated_at", "2023-01-18 00:59:39.924389"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.925119"], ["updated_at", "2023-01-18 00:59:39.925119"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.925885"], ["updated_at", "2023-01-18 00:59:39.925885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.926688"], ["updated_at", "2023-01-18 00:59:39.926688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.927480"], ["updated_at", "2023-01-18 00:59:39.927480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.928191"], ["updated_at", "2023-01-18 00:59:39.928191"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.928874"], ["updated_at", "2023-01-18 00:59:39.928874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.929582"], ["updated_at", "2023-01-18 00:59:39.929582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.930329"], ["updated_at", "2023-01-18 00:59:39.930329"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.931046"], ["updated_at", "2023-01-18 00:59:39.931046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.931725"], ["updated_at", "2023-01-18 00:59:39.931725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.932381"], ["updated_at", "2023-01-18 00:59:39.932381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.933051"], ["updated_at", "2023-01-18 00:59:39.933051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.933804"], ["updated_at", "2023-01-18 00:59:39.933804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:39.934595"], ["updated_at", "2023-01-18 00:59:39.934595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:39.950542"], ["updated_at", "2023-01-18 00:59:39.950542"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:39.951652"], ["updated_at", "2023-01-18 00:59:39.951652"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:39.952483"], ["updated_at", "2023-01-18 00:59:39.952483"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:39.953221"], ["updated_at", "2023-01-18 00:59:39.953221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.954053"], ["updated_at", "2023-01-18 00:59:39.954053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.954953"], ["updated_at", "2023-01-18 00:59:39.954953"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.955748"], ["updated_at", "2023-01-18 00:59:39.955748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.956457"], ["updated_at", "2023-01-18 00:59:39.956457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.957138"], ["updated_at", "2023-01-18 00:59:39.957138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.957863"], ["updated_at", "2023-01-18 00:59:39.957863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.958621"], ["updated_at", "2023-01-18 00:59:39.958621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.959357"], ["updated_at", "2023-01-18 00:59:39.959357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.960057"], ["updated_at", "2023-01-18 00:59:39.960057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.960752"], ["updated_at", "2023-01-18 00:59:39.960752"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.961445"], ["updated_at", "2023-01-18 00:59:39.961445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:39.962224"], ["updated_at", "2023-01-18 00:59:39.962224"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-01-17 21:59:39 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:59:39.971438"], ["updated_at", "2023-01-18 00:59:39.971438"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:59:39.972907"], ["updated_at", "2023-01-18 00:59:39.972907"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:59:39.975812"], ["updated_at", "2023-01-18 00:59:39.975812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:59:39.977013"], ["updated_at", "2023-01-18 00:59:39.977013"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:59:39.979590"], ["updated_at", "2023-01-18 00:59:39.979590"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:59:39.980713"], ["updated_at", "2023-01-18 00:59:39.980713"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:59:39.982946"], ["updated_at", "2023-01-18 00:59:39.982946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:59:39.984349"], ["updated_at", "2023-01-18 00:59:39.984349"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:59:39.986052"], ["updated_at", "2023-01-18 00:59:39.986052"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:59:39.987472"], ["updated_at", "2023-01-18 00:59:39.987472"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:59:39.989119"], ["updated_at", "2023-01-18 00:59:39.989119"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:59:39.990358"], ["updated_at", "2023-01-18 00:59:39.990358"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:59:39.991694"], ["updated_at", "2023-01-18 00:59:39.991694"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:59:39.992865"], ["updated_at", "2023-01-18 00:59:39.992865"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:59:39.994249"], ["updated_at", "2023-01-18 00:59:39.994249"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:59:39.995503"], ["updated_at", "2023-01-18 00:59:39.995503"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:59:39.996822"], ["updated_at", "2023-01-18 00:59:39.996822"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:59:39.997960"], ["updated_at", "2023-01-18 00:59:39.997960"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:59:39.999308"], ["updated_at", "2023-01-18 00:59:39.999308"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:59:40.000461"], ["updated_at", "2023-01-18 00:59:40.000461"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:59:40.001855"], ["updated_at", "2023-01-18 00:59:40.001855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:59:40.003133"], ["updated_at", "2023-01-18 00:59:40.003133"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:59:40.004502"], ["updated_at", "2023-01-18 00:59:40.004502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:59:40.005647"], ["updated_at", "2023-01-18 00:59:40.005647"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:59:40.006973"], ["updated_at", "2023-01-18 00:59:40.006973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:59:40.008079"], ["updated_at", "2023-01-18 00:59:40.008079"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:59:40.009438"], ["updated_at", "2023-01-18 00:59:40.009438"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:59:40.010639"], ["updated_at", "2023-01-18 00:59:40.010639"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:59:40.011958"], ["updated_at", "2023-01-18 00:59:40.011958"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:59:40.013074"], ["updated_at", "2023-01-18 00:59:40.013074"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:59:40.014408"], ["updated_at", "2023-01-18 00:59:40.014408"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:59:40.015536"], ["updated_at", "2023-01-18 00:59:40.015536"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:59:40.016820"], ["updated_at", "2023-01-18 00:59:40.016820"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:59:40.017960"], ["updated_at", "2023-01-18 00:59:40.017960"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:59:40.019467"], ["updated_at", "2023-01-18 00:59:40.019467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:59:40.020654"], ["updated_at", "2023-01-18 00:59:40.020654"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:59:40.021966"], ["updated_at", "2023-01-18 00:59:40.021966"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:59:40.023113"], ["updated_at", "2023-01-18 00:59:40.023113"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:59:40.024406"], ["updated_at", "2023-01-18 00:59:40.024406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:59:40.025547"], ["updated_at", "2023-01-18 00:59:40.025547"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:59:40.026926"], ["updated_at", "2023-01-18 00:59:40.026926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:59:40.028090"], ["updated_at", "2023-01-18 00:59:40.028090"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:59:40.029390"], ["updated_at", "2023-01-18 00:59:40.029390"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:59:40.030673"], ["updated_at", "2023-01-18 00:59:40.030673"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:59:40.032085"], ["updated_at", "2023-01-18 00:59:40.032085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:59:40.033272"], ["updated_at", "2023-01-18 00:59:40.033272"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:59:40.034583"], ["updated_at", "2023-01-18 00:59:40.034583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:59:40.035742"], ["updated_at", "2023-01-18 00:59:40.035742"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:59:40.037135"], ["updated_at", "2023-01-18 00:59:40.037135"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:59:40.038333"], ["updated_at", "2023-01-18 00:59:40.038333"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:59:40.039659"], ["updated_at", "2023-01-18 00:59:40.039659"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:59:40.040807"], ["updated_at", "2023-01-18 00:59:40.040807"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:59:40.042144"], ["updated_at", "2023-01-18 00:59:40.042144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:59:40.043258"], ["updated_at", "2023-01-18 00:59:40.043258"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:59:40.044733"], ["updated_at", "2023-01-18 00:59:40.044733"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:59:40.046035"], ["updated_at", "2023-01-18 00:59:40.046035"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:59:40.047483"], ["updated_at", "2023-01-18 00:59:40.047483"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:59:40.048663"], ["updated_at", "2023-01-18 00:59:40.048663"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:59:40.050008"], ["updated_at", "2023-01-18 00:59:40.050008"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:59:40.051137"], ["updated_at", "2023-01-18 00:59:40.051137"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:59:40.052467"], ["updated_at", "2023-01-18 00:59:40.052467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:59:40.053750"], ["updated_at", "2023-01-18 00:59:40.053750"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:59:40.055197"], ["updated_at", "2023-01-18 00:59:40.055197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:59:40.056444"], ["updated_at", "2023-01-18 00:59:40.056444"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:59:40.057787"], ["updated_at", "2023-01-18 00:59:40.057787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:59:40.058949"], ["updated_at", "2023-01-18 00:59:40.058949"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:59:40.060288"], ["updated_at", "2023-01-18 00:59:40.060288"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:59:40.061426"], ["updated_at", "2023-01-18 00:59:40.061426"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:59:40.062728"], ["updated_at", "2023-01-18 00:59:40.062728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:59:40.063846"], ["updated_at", "2023-01-18 00:59:40.063846"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:59:40.065231"], ["updated_at", "2023-01-18 00:59:40.065231"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:59:40.066469"], ["updated_at", "2023-01-18 00:59:40.066469"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:59:40.067826"], ["updated_at", "2023-01-18 00:59:40.067826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:59:40.069044"], ["updated_at", "2023-01-18 00:59:40.069044"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:59:40.070552"], ["updated_at", "2023-01-18 00:59:40.070552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:59:40.071721"], ["updated_at", "2023-01-18 00:59:40.071721"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:59:40.073020"], ["updated_at", "2023-01-18 00:59:40.073020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:59:40.074259"], ["updated_at", "2023-01-18 00:59:40.074259"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:59:40.075676"], ["updated_at", "2023-01-18 00:59:40.075676"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:59:40.076836"], ["updated_at", "2023-01-18 00:59:40.076836"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:59:40.078203"], ["updated_at", "2023-01-18 00:59:40.078203"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:59:40.079327"], ["updated_at", "2023-01-18 00:59:40.079327"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:59:40.080610"], ["updated_at", "2023-01-18 00:59:40.080610"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:59:40.081737"], ["updated_at", "2023-01-18 00:59:40.081737"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:59:40.083023"], ["updated_at", "2023-01-18 00:59:40.083023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:59:40.084135"], ["updated_at", "2023-01-18 00:59:40.084135"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:59:40.085446"], ["updated_at", "2023-01-18 00:59:40.085446"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:59:40.086744"], ["updated_at", "2023-01-18 00:59:40.086744"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:59:40.088126"], ["updated_at", "2023-01-18 00:59:40.088126"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:59:40.089377"], ["updated_at", "2023-01-18 00:59:40.089377"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:59:40.090809"], ["updated_at", "2023-01-18 00:59:40.090809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:59:40.091960"], ["updated_at", "2023-01-18 00:59:40.091960"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:59:40.093281"], ["updated_at", "2023-01-18 00:59:40.093281"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:59:40.094418"], ["updated_at", "2023-01-18 00:59:40.094418"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:59:40.095726"], ["updated_at", "2023-01-18 00:59:40.095726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:59:40.096780"], ["updated_at", "2023-01-18 00:59:40.096780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:59:40.097939"], ["updated_at", "2023-01-18 00:59:40.097939"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:59:40.099250"], ["updated_at", "2023-01-18 00:59:40.099250"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:59:40.100650"], ["updated_at", "2023-01-18 00:59:40.100650"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:59:40.101740"], ["updated_at", "2023-01-18 00:59:40.101740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:59:40.102834"], ["updated_at", "2023-01-18 00:59:40.102834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:40.113737"], ["updated_at", "2023-01-18 00:59:40.113737"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:40.114963"], ["updated_at", "2023-01-18 00:59:40.114963"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:40.115883"], ["updated_at", "2023-01-18 00:59:40.115883"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.116708"], ["updated_at", "2023-01-18 00:59:40.116708"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.117460"], ["updated_at", "2023-01-18 00:59:40.117460"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.118139"], ["updated_at", "2023-01-18 00:59:40.118139"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.118800"], ["updated_at", "2023-01-18 00:59:40.118800"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.119566"], ["updated_at", "2023-01-18 00:59:40.119566"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:40.120332"], ["updated_at", "2023-01-18 00:59:40.120332"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.121174"], ["updated_at", "2023-01-18 00:59:40.121174"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.121969"], ["updated_at", "2023-01-18 00:59:40.121969"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.122711"], ["updated_at", "2023-01-18 00:59:40.122711"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.123425"], ["updated_at", "2023-01-18 00:59:40.123425"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.124115"], ["updated_at", "2023-01-18 00:59:40.124115"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.124816"], ["updated_at", "2023-01-18 00:59:40.124816"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.125537"], ["updated_at", "2023-01-18 00:59:40.125537"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.126232"], ["updated_at", "2023-01-18 00:59:40.126232"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.126946"], ["updated_at", "2023-01-18 00:59:40.126946"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.127654"], ["updated_at", "2023-01-18 00:59:40.127654"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.128357"], ["updated_at", "2023-01-18 00:59:40.128357"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.129072"], ["updated_at", "2023-01-18 00:59:40.129072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:40.139781"], ["updated_at", "2023-01-18 00:59:40.139781"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:40.140926"], ["updated_at", "2023-01-18 00:59:40.140926"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:40.141797"], ["updated_at", "2023-01-18 00:59:40.141797"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:40.142593"], ["updated_at", "2023-01-18 00:59:40.142593"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:40.143303"], ["updated_at", "2023-01-18 00:59:40.143303"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:40.143977"], ["updated_at", "2023-01-18 00:59:40.143977"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:40.144624"], ["updated_at", "2023-01-18 00:59:40.144624"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:40.145293"], ["updated_at", "2023-01-18 00:59:40.145293"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:40.146014"], ["updated_at", "2023-01-18 00:59:40.146014"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.146801"], ["updated_at", "2023-01-18 00:59:40.146801"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.147577"], ["updated_at", "2023-01-18 00:59:40.147577"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.148319"], ["updated_at", "2023-01-18 00:59:40.148319"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.149012"], ["updated_at", "2023-01-18 00:59:40.149012"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.149744"], ["updated_at", "2023-01-18 00:59:40.149744"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.150481"], ["updated_at", "2023-01-18 00:59:40.150481"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.151202"], ["updated_at", "2023-01-18 00:59:40.151202"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.151904"], ["updated_at", "2023-01-18 00:59:40.151904"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.152629"], ["updated_at", "2023-01-18 00:59:40.152629"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.153351"], ["updated_at", "2023-01-18 00:59:40.153351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.154062"], ["updated_at", "2023-01-18 00:59:40.154062"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.154790"], ["updated_at", "2023-01-18 00:59:40.154790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.170406"], ["updated_at", "2023-01-18 00:59:40.170406"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.171445"], ["updated_at", "2023-01-18 00:59:40.171445"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.172243"], ["updated_at", "2023-01-18 00:59:40.172243"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.172914"], ["updated_at", "2023-01-18 00:59:40.172914"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.173690"], ["updated_at", "2023-01-18 00:59:40.173690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.174469"], ["updated_at", "2023-01-18 00:59:40.174469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.175208"], ["updated_at", "2023-01-18 00:59:40.175208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.176260"], ["updated_at", "2023-01-18 00:59:40.176260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.177101"], ["updated_at", "2023-01-18 00:59:40.177101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.177798"], ["updated_at", "2023-01-18 00:59:40.177798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.178476"], ["updated_at", "2023-01-18 00:59:40.178476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.179157"], ["updated_at", "2023-01-18 00:59:40.179157"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.179865"], ["updated_at", "2023-01-18 00:59:40.179865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.180563"], ["updated_at", "2023-01-18 00:59:40.180563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.181262"], ["updated_at", "2023-01-18 00:59:40.181262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.181964"], ["updated_at", "2023-01-18 00:59:40.181964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.196894"], ["updated_at", "2023-01-18 00:59:40.196894"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.197839"], ["updated_at", "2023-01-18 00:59:40.197839"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.198562"], ["updated_at", "2023-01-18 00:59:40.198562"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.199250"], ["updated_at", "2023-01-18 00:59:40.199250"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.199988"], ["updated_at", "2023-01-18 00:59:40.199988"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.200688"], ["updated_at", "2023-01-18 00:59:40.200688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.201388"], ["updated_at", "2023-01-18 00:59:40.201388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.202150"], ["updated_at", "2023-01-18 00:59:40.202150"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.202901"], ["updated_at", "2023-01-18 00:59:40.202901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.203588"], ["updated_at", "2023-01-18 00:59:40.203588"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.204241"], ["updated_at", "2023-01-18 00:59:40.204241"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.204929"], ["updated_at", "2023-01-18 00:59:40.204929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.205625"], ["updated_at", "2023-01-18 00:59:40.205625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.206302"], ["updated_at", "2023-01-18 00:59:40.206302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.206979"], ["updated_at", "2023-01-18 00:59:40.206979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.207632"], ["updated_at", "2023-01-18 00:59:40.207632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.222290"], ["updated_at", "2023-01-18 00:59:40.222290"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.223209"], ["updated_at", "2023-01-18 00:59:40.223209"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.223933"], ["updated_at", "2023-01-18 00:59:40.223933"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.224593"], ["updated_at", "2023-01-18 00:59:40.224593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.225343"], ["updated_at", "2023-01-18 00:59:40.225343"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.226155"], ["updated_at", "2023-01-18 00:59:40.226155"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.226871"], ["updated_at", "2023-01-18 00:59:40.226871"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.227553"], ["updated_at", "2023-01-18 00:59:40.227553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.228221"], ["updated_at", "2023-01-18 00:59:40.228221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.228894"], ["updated_at", "2023-01-18 00:59:40.228894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.229579"], ["updated_at", "2023-01-18 00:59:40.229579"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.230234"], ["updated_at", "2023-01-18 00:59:40.230234"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.230912"], ["updated_at", "2023-01-18 00:59:40.230912"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.231584"], ["updated_at", "2023-01-18 00:59:40.231584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.232233"], ["updated_at", "2023-01-18 00:59:40.232233"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.232901"], ["updated_at", "2023-01-18 00:59:40.232901"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.247672"], ["updated_at", "2023-01-18 00:59:40.247672"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.248579"], ["updated_at", "2023-01-18 00:59:40.248579"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.249324"], ["updated_at", "2023-01-18 00:59:40.249324"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.249985"], ["updated_at", "2023-01-18 00:59:40.249985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.250778"], ["updated_at", "2023-01-18 00:59:40.250778"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.251511"], ["updated_at", "2023-01-18 00:59:40.251511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.252198"], ["updated_at", "2023-01-18 00:59:40.252198"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.252858"], ["updated_at", "2023-01-18 00:59:40.252858"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.253544"], ["updated_at", "2023-01-18 00:59:40.253544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.254218"], ["updated_at", "2023-01-18 00:59:40.254218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.254897"], ["updated_at", "2023-01-18 00:59:40.254897"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.255552"], ["updated_at", "2023-01-18 00:59:40.255552"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.256222"], ["updated_at", "2023-01-18 00:59:40.256222"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.256889"], ["updated_at", "2023-01-18 00:59:40.256889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.257553"], ["updated_at", "2023-01-18 00:59:40.257553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.258237"], ["updated_at", "2023-01-18 00:59:40.258237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.272716"], ["updated_at", "2023-01-18 00:59:40.272716"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.273680"], ["updated_at", "2023-01-18 00:59:40.273680"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.274407"], ["updated_at", "2023-01-18 00:59:40.274407"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.275072"], ["updated_at", "2023-01-18 00:59:40.275072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.275814"], ["updated_at", "2023-01-18 00:59:40.275814"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.276508"], ["updated_at", "2023-01-18 00:59:40.276508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.277181"], ["updated_at", "2023-01-18 00:59:40.277181"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.277851"], ["updated_at", "2023-01-18 00:59:40.277851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.278521"], ["updated_at", "2023-01-18 00:59:40.278521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.279189"], ["updated_at", "2023-01-18 00:59:40.279189"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.279863"], ["updated_at", "2023-01-18 00:59:40.279863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.280535"], ["updated_at", "2023-01-18 00:59:40.280535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.281213"], ["updated_at", "2023-01-18 00:59:40.281213"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.281899"], ["updated_at", "2023-01-18 00:59:40.281899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.282565"], ["updated_at", "2023-01-18 00:59:40.282565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.283230"], ["updated_at", "2023-01-18 00:59:40.283230"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.298517"], ["updated_at", "2023-01-18 00:59:40.298517"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.299466"], ["updated_at", "2023-01-18 00:59:40.299466"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.300208"], ["updated_at", "2023-01-18 00:59:40.300208"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.300902"], ["updated_at", "2023-01-18 00:59:40.300902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.301678"], ["updated_at", "2023-01-18 00:59:40.301678"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.302419"], ["updated_at", "2023-01-18 00:59:40.302419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.303182"], ["updated_at", "2023-01-18 00:59:40.303182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.303907"], ["updated_at", "2023-01-18 00:59:40.303907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.304882"], ["updated_at", "2023-01-18 00:59:40.304882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.305857"], ["updated_at", "2023-01-18 00:59:40.305857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.306612"], ["updated_at", "2023-01-18 00:59:40.306612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.307319"], ["updated_at", "2023-01-18 00:59:40.307319"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.308099"], ["updated_at", "2023-01-18 00:59:40.308099"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.308866"], ["updated_at", "2023-01-18 00:59:40.308866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.309587"], ["updated_at", "2023-01-18 00:59:40.309587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.310271"], ["updated_at", "2023-01-18 00:59:40.310271"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-01-17 21:59:40 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-01-18 00:59:40.319555"], ["updated_at", "2023-01-18 00:59:40.319555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-01-18 00:59:40.321066"], ["updated_at", "2023-01-18 00:59:40.321066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-18 00:59:40.323812"], ["updated_at", "2023-01-18 00:59:40.323812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-01-18 00:59:40.324945"], ["updated_at", "2023-01-18 00:59:40.324945"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-01-18 00:59:40.327485"], ["updated_at", "2023-01-18 00:59:40.327485"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-01-18 00:59:40.328579"], ["updated_at", "2023-01-18 00:59:40.328579"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-01-18 00:59:40.330585"], ["updated_at", "2023-01-18 00:59:40.330585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-18 00:59:40.331940"], ["updated_at", "2023-01-18 00:59:40.331940"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-18 00:59:40.333474"], ["updated_at", "2023-01-18 00:59:40.333474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-01-18 00:59:40.334731"], ["updated_at", "2023-01-18 00:59:40.334731"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-18 00:59:40.336181"], ["updated_at", "2023-01-18 00:59:40.336181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-01-18 00:59:40.337493"], ["updated_at", "2023-01-18 00:59:40.337493"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-01-18 00:59:40.338869"], ["updated_at", "2023-01-18 00:59:40.338869"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-01-18 00:59:40.340023"], ["updated_at", "2023-01-18 00:59:40.340023"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-01-18 00:59:40.341343"], ["updated_at", "2023-01-18 00:59:40.341343"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-01-18 00:59:40.342502"], ["updated_at", "2023-01-18 00:59:40.342502"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-01-18 00:59:40.343805"], ["updated_at", "2023-01-18 00:59:40.343805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-01-18 00:59:40.344912"], ["updated_at", "2023-01-18 00:59:40.344912"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-01-18 00:59:40.346249"], ["updated_at", "2023-01-18 00:59:40.346249"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-01-18 00:59:40.347387"], ["updated_at", "2023-01-18 00:59:40.347387"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-01-18 00:59:40.348704"], ["updated_at", "2023-01-18 00:59:40.348704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-01-18 00:59:40.349855"], ["updated_at", "2023-01-18 00:59:40.349855"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-01-18 00:59:40.351180"], ["updated_at", "2023-01-18 00:59:40.351180"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-01-18 00:59:40.352394"], ["updated_at", "2023-01-18 00:59:40.352394"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-01-18 00:59:40.353821"], ["updated_at", "2023-01-18 00:59:40.353821"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-01-18 00:59:40.354968"], ["updated_at", "2023-01-18 00:59:40.354968"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-01-18 00:59:40.356283"], ["updated_at", "2023-01-18 00:59:40.356283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-01-18 00:59:40.357429"], ["updated_at", "2023-01-18 00:59:40.357429"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-01-18 00:59:40.358752"], ["updated_at", "2023-01-18 00:59:40.358752"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-01-18 00:59:40.359907"], ["updated_at", "2023-01-18 00:59:40.359907"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-01-18 00:59:40.361235"], ["updated_at", "2023-01-18 00:59:40.361235"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-01-18 00:59:40.362398"], ["updated_at", "2023-01-18 00:59:40.362398"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-01-18 00:59:40.363707"], ["updated_at", "2023-01-18 00:59:40.363707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-01-18 00:59:40.364850"], ["updated_at", "2023-01-18 00:59:40.364850"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-01-18 00:59:40.366176"], ["updated_at", "2023-01-18 00:59:40.366176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-01-18 00:59:40.367314"], ["updated_at", "2023-01-18 00:59:40.367314"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-01-18 00:59:40.368657"], ["updated_at", "2023-01-18 00:59:40.368657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-01-18 00:59:40.369825"], ["updated_at", "2023-01-18 00:59:40.369825"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-01-18 00:59:40.371132"], ["updated_at", "2023-01-18 00:59:40.371132"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-01-18 00:59:40.372249"], ["updated_at", "2023-01-18 00:59:40.372249"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-01-18 00:59:40.373560"], ["updated_at", "2023-01-18 00:59:40.373560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-01-18 00:59:40.374707"], ["updated_at", "2023-01-18 00:59:40.374707"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-01-18 00:59:40.376004"], ["updated_at", "2023-01-18 00:59:40.376004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-01-18 00:59:40.377153"], ["updated_at", "2023-01-18 00:59:40.377153"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-01-18 00:59:40.378482"], ["updated_at", "2023-01-18 00:59:40.378482"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-01-18 00:59:40.379615"], ["updated_at", "2023-01-18 00:59:40.379615"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-01-18 00:59:40.380905"], ["updated_at", "2023-01-18 00:59:40.380905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-01-18 00:59:40.382065"], ["updated_at", "2023-01-18 00:59:40.382065"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-01-18 00:59:40.383386"], ["updated_at", "2023-01-18 00:59:40.383386"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-01-18 00:59:40.384540"], ["updated_at", "2023-01-18 00:59:40.384540"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-01-18 00:59:40.385908"], ["updated_at", "2023-01-18 00:59:40.385908"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-01-18 00:59:40.387061"], ["updated_at", "2023-01-18 00:59:40.387061"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-01-18 00:59:40.388354"], ["updated_at", "2023-01-18 00:59:40.388354"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-01-18 00:59:40.389496"], ["updated_at", "2023-01-18 00:59:40.389496"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-01-18 00:59:40.390857"], ["updated_at", "2023-01-18 00:59:40.390857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-01-18 00:59:40.391998"], ["updated_at", "2023-01-18 00:59:40.391998"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-01-18 00:59:40.393308"], ["updated_at", "2023-01-18 00:59:40.393308"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-01-18 00:59:40.394661"], ["updated_at", "2023-01-18 00:59:40.394661"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-01-18 00:59:40.396157"], ["updated_at", "2023-01-18 00:59:40.396157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-01-18 00:59:40.397366"], ["updated_at", "2023-01-18 00:59:40.397366"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-01-18 00:59:40.398693"], ["updated_at", "2023-01-18 00:59:40.398693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-01-18 00:59:40.399851"], ["updated_at", "2023-01-18 00:59:40.399851"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-01-18 00:59:40.401212"], ["updated_at", "2023-01-18 00:59:40.401212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-01-18 00:59:40.402467"], ["updated_at", "2023-01-18 00:59:40.402467"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-01-18 00:59:40.403892"], ["updated_at", "2023-01-18 00:59:40.403892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-01-18 00:59:40.405059"], ["updated_at", "2023-01-18 00:59:40.405059"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-01-18 00:59:40.406525"], ["updated_at", "2023-01-18 00:59:40.406525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-01-18 00:59:40.407757"], ["updated_at", "2023-01-18 00:59:40.407757"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-01-18 00:59:40.409130"], ["updated_at", "2023-01-18 00:59:40.409130"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-01-18 00:59:40.410424"], ["updated_at", "2023-01-18 00:59:40.410424"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-01-18 00:59:40.411841"], ["updated_at", "2023-01-18 00:59:40.411841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-01-18 00:59:40.413009"], ["updated_at", "2023-01-18 00:59:40.413009"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-01-18 00:59:40.414384"], ["updated_at", "2023-01-18 00:59:40.414384"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-01-18 00:59:40.415700"], ["updated_at", "2023-01-18 00:59:40.415700"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-01-18 00:59:40.417136"], ["updated_at", "2023-01-18 00:59:40.417136"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-01-18 00:59:40.418307"], ["updated_at", "2023-01-18 00:59:40.418307"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-01-18 00:59:40.419737"], ["updated_at", "2023-01-18 00:59:40.419737"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-01-18 00:59:40.421094"], ["updated_at", "2023-01-18 00:59:40.421094"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-01-18 00:59:40.422614"], ["updated_at", "2023-01-18 00:59:40.422614"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-01-18 00:59:40.423820"], ["updated_at", "2023-01-18 00:59:40.423820"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-01-18 00:59:40.425144"], ["updated_at", "2023-01-18 00:59:40.425144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-01-18 00:59:40.426298"], ["updated_at", "2023-01-18 00:59:40.426298"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-01-18 00:59:40.427632"], ["updated_at", "2023-01-18 00:59:40.427632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-01-18 00:59:40.428979"], ["updated_at", "2023-01-18 00:59:40.428979"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-01-18 00:59:40.430360"], ["updated_at", "2023-01-18 00:59:40.430360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-01-18 00:59:40.431532"], ["updated_at", "2023-01-18 00:59:40.431532"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-01-18 00:59:40.432874"], ["updated_at", "2023-01-18 00:59:40.432874"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-01-18 00:59:40.434126"], ["updated_at", "2023-01-18 00:59:40.434126"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-01-18 00:59:40.435620"], ["updated_at", "2023-01-18 00:59:40.435620"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-01-18 00:59:40.436943"], ["updated_at", "2023-01-18 00:59:40.436943"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-01-18 00:59:40.438503"], ["updated_at", "2023-01-18 00:59:40.438503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-01-18 00:59:40.439775"], ["updated_at", "2023-01-18 00:59:40.439775"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-01-18 00:59:40.441222"], ["updated_at", "2023-01-18 00:59:40.441222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-01-18 00:59:40.442515"], ["updated_at", "2023-01-18 00:59:40.442515"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-01-18 00:59:40.443867"], ["updated_at", "2023-01-18 00:59:40.443867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-01-18 00:59:40.444911"], ["updated_at", "2023-01-18 00:59:40.444911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-01-18 00:59:40.446079"], ["updated_at", "2023-01-18 00:59:40.446079"], ["role_id", 2]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-01-18 00:59:40.447409"], ["updated_at", "2023-01-18 00:59:40.447409"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-01-18 00:59:40.449003"], ["updated_at", "2023-01-18 00:59:40.449003"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-01-18 00:59:40.450194"], ["updated_at", "2023-01-18 00:59:40.450194"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-01-18 00:59:40.451186"], ["updated_at", "2023-01-18 00:59:40.451186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:40.462515"], ["updated_at", "2023-01-18 00:59:40.462515"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:40.463911"], ["updated_at", "2023-01-18 00:59:40.463911"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:40.464890"], ["updated_at", "2023-01-18 00:59:40.464890"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.465738"], ["updated_at", "2023-01-18 00:59:40.465738"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.466517"], ["updated_at", "2023-01-18 00:59:40.466517"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.467200"], ["updated_at", "2023-01-18 00:59:40.467200"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.467869"], ["updated_at", "2023-01-18 00:59:40.467869"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.468554"], ["updated_at", "2023-01-18 00:59:40.468554"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:40.469312"], ["updated_at", "2023-01-18 00:59:40.469312"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.470262"], ["updated_at", "2023-01-18 00:59:40.470262"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.471317"], ["updated_at", "2023-01-18 00:59:40.471317"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.472166"], ["updated_at", "2023-01-18 00:59:40.472166"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.472907"], ["updated_at", "2023-01-18 00:59:40.472907"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.473662"], ["updated_at", "2023-01-18 00:59:40.473662"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.474389"], ["updated_at", "2023-01-18 00:59:40.474389"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.475118"], ["updated_at", "2023-01-18 00:59:40.475118"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.475867"], ["updated_at", "2023-01-18 00:59:40.475867"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.476625"], ["updated_at", "2023-01-18 00:59:40.476625"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.477497"], ["updated_at", "2023-01-18 00:59:40.477497"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.478262"], ["updated_at", "2023-01-18 00:59:40.478262"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.478994"], ["updated_at", "2023-01-18 00:59:40.478994"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-01-18 00:59:40.490190"], ["updated_at", "2023-01-18 00:59:40.490190"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-01-18 00:59:40.491513"], ["updated_at", "2023-01-18 00:59:40.491513"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-01-18 00:59:40.492456"], ["updated_at", "2023-01-18 00:59:40.492456"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:40.493336"], ["updated_at", "2023-01-18 00:59:40.493336"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:40.494095"], ["updated_at", "2023-01-18 00:59:40.494095"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:40.494795"], ["updated_at", "2023-01-18 00:59:40.494795"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:40.495481"], ["updated_at", "2023-01-18 00:59:40.495481"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-01-18 00:59:40.496139"], ["updated_at", "2023-01-18 00:59:40.496139"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-01-18 00:59:40.496897"], ["updated_at", "2023-01-18 00:59:40.496897"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.497784"], ["updated_at", "2023-01-18 00:59:40.497784"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.498700"], ["updated_at", "2023-01-18 00:59:40.498700"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.499471"], ["updated_at", "2023-01-18 00:59:40.499471"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.500189"], ["updated_at", "2023-01-18 00:59:40.500189"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.500930"], ["updated_at", "2023-01-18 00:59:40.500930"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.501685"], ["updated_at", "2023-01-18 00:59:40.501685"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.502446"], ["updated_at", "2023-01-18 00:59:40.502446"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.503239"], ["updated_at", "2023-01-18 00:59:40.503239"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.504097"], ["updated_at", "2023-01-18 00:59:40.504097"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.504945"], ["updated_at", "2023-01-18 00:59:40.504945"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.505720"], ["updated_at", "2023-01-18 00:59:40.505720"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-01-18 00:59:40.506452"], ["updated_at", "2023-01-18 00:59:40.506452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.522400"], ["updated_at", "2023-01-18 00:59:40.522400"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.523386"], ["updated_at", "2023-01-18 00:59:40.523386"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.524192"], ["updated_at", "2023-01-18 00:59:40.524192"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.524880"], ["updated_at", "2023-01-18 00:59:40.524880"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.525631"], ["updated_at", "2023-01-18 00:59:40.525631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.526401"], ["updated_at", "2023-01-18 00:59:40.526401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.527166"], ["updated_at", "2023-01-18 00:59:40.527166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.527885"], ["updated_at", "2023-01-18 00:59:40.527885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.528562"], ["updated_at", "2023-01-18 00:59:40.528562"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.529249"], ["updated_at", "2023-01-18 00:59:40.529249"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.529922"], ["updated_at", "2023-01-18 00:59:40.529922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.530597"], ["updated_at", "2023-01-18 00:59:40.530597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.531247"], ["updated_at", "2023-01-18 00:59:40.531247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.531924"], ["updated_at", "2023-01-18 00:59:40.531924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.532625"], ["updated_at", "2023-01-18 00:59:40.532625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-01-18 00:59:40.533382"], ["updated_at", "2023-01-18 00:59:40.533382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.548737"], ["updated_at", "2023-01-18 00:59:40.548737"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.549743"], ["updated_at", "2023-01-18 00:59:40.549743"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.550616"], ["updated_at", "2023-01-18 00:59:40.550616"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.551434"], ["updated_at", "2023-01-18 00:59:40.551434"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.552282"], ["updated_at", "2023-01-18 00:59:40.552282"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.553246"], ["updated_at", "2023-01-18 00:59:40.553246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.554159"], ["updated_at", "2023-01-18 00:59:40.554159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.554974"], ["updated_at", "2023-01-18 00:59:40.554974"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.555665"], ["updated_at", "2023-01-18 00:59:40.555665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.556354"], ["updated_at", "2023-01-18 00:59:40.556354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.557251"], ["updated_at", "2023-01-18 00:59:40.557251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.558090"], ["updated_at", "2023-01-18 00:59:40.558090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.558788"], ["updated_at", "2023-01-18 00:59:40.558788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.559455"], ["updated_at", "2023-01-18 00:59:40.559455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.560332"], ["updated_at", "2023-01-18 00:59:40.560332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-01-18 00:59:40.561090"], ["updated_at", "2023-01-18 00:59:40.561090"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.577762"], ["updated_at", "2023-01-18 00:59:40.577762"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.578793"], ["updated_at", "2023-01-18 00:59:40.578793"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.579536"], ["updated_at", "2023-01-18 00:59:40.579536"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.580215"], ["updated_at", "2023-01-18 00:59:40.580215"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.581101"], ["updated_at", "2023-01-18 00:59:40.581101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.581975"], ["updated_at", "2023-01-18 00:59:40.581975"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.582748"], ["updated_at", "2023-01-18 00:59:40.582748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.583433"], ["updated_at", "2023-01-18 00:59:40.583433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.584264"], ["updated_at", "2023-01-18 00:59:40.584264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.584981"], ["updated_at", "2023-01-18 00:59:40.584981"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.585720"], ["updated_at", "2023-01-18 00:59:40.585720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.586424"], ["updated_at", "2023-01-18 00:59:40.586424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.587284"], ["updated_at", "2023-01-18 00:59:40.587284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.588114"], ["updated_at", "2023-01-18 00:59:40.588114"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.588937"], ["updated_at", "2023-01-18 00:59:40.588937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-01-18 00:59:40.589682"], ["updated_at", "2023-01-18 00:59:40.589682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.605995"], ["updated_at", "2023-01-18 00:59:40.605995"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.606998"], ["updated_at", "2023-01-18 00:59:40.606998"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.607857"], ["updated_at", "2023-01-18 00:59:40.607857"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.608777"], ["updated_at", "2023-01-18 00:59:40.608777"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.609683"], ["updated_at", "2023-01-18 00:59:40.609683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.610458"], ["updated_at", "2023-01-18 00:59:40.610458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.611133"], ["updated_at", "2023-01-18 00:59:40.611133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.611800"], ["updated_at", "2023-01-18 00:59:40.611800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.612482"], ["updated_at", "2023-01-18 00:59:40.612482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.613382"], ["updated_at", "2023-01-18 00:59:40.613382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.614273"], ["updated_at", "2023-01-18 00:59:40.614273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.615047"], ["updated_at", "2023-01-18 00:59:40.615047"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.615824"], ["updated_at", "2023-01-18 00:59:40.615824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.616652"], ["updated_at", "2023-01-18 00:59:40.616652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.617384"], ["updated_at", "2023-01-18 00:59:40.617384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-01-18 00:59:40.618057"], ["updated_at", "2023-01-18 00:59:40.618057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.634323"], ["updated_at", "2023-01-18 00:59:40.634323"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.635281"], ["updated_at", "2023-01-18 00:59:40.635281"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.636082"], ["updated_at", "2023-01-18 00:59:40.636082"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.636869"], ["updated_at", "2023-01-18 00:59:40.636869"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.637674"], ["updated_at", "2023-01-18 00:59:40.637674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.638521"], ["updated_at", "2023-01-18 00:59:40.638521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.639397"], ["updated_at", "2023-01-18 00:59:40.639397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.640216"], ["updated_at", "2023-01-18 00:59:40.640216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.640986"], ["updated_at", "2023-01-18 00:59:40.640986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.641731"], ["updated_at", "2023-01-18 00:59:40.641731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.642545"], ["updated_at", "2023-01-18 00:59:40.642545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.643271"], ["updated_at", "2023-01-18 00:59:40.643271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.643951"], ["updated_at", "2023-01-18 00:59:40.643951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.644610"], ["updated_at", "2023-01-18 00:59:40.644610"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.645270"], ["updated_at", "2023-01-18 00:59:40.645270"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-01-18 00:59:40.645943"], ["updated_at", "2023-01-18 00:59:40.645943"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-01-18 00:59:40.661324"], ["updated_at", "2023-01-18 00:59:40.661324"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-01-18 00:59:40.662292"], ["updated_at", "2023-01-18 00:59:40.662292"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-01-18 00:59:40.663034"], ["updated_at", "2023-01-18 00:59:40.663034"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-01-18 00:59:40.663737"], ["updated_at", "2023-01-18 00:59:40.663737"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.664485"], ["updated_at", "2023-01-18 00:59:40.664485"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.665173"], ["updated_at", "2023-01-18 00:59:40.665173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.665929"], ["updated_at", "2023-01-18 00:59:40.665929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.666743"], ["updated_at", "2023-01-18 00:59:40.666743"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.667466"], ["updated_at", "2023-01-18 00:59:40.667466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.668142"], ["updated_at", "2023-01-18 00:59:40.668142"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.668819"], ["updated_at", "2023-01-18 00:59:40.668819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.669557"], ["updated_at", "2023-01-18 00:59:40.669557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.670355"], ["updated_at", "2023-01-18 00:59:40.670355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.671101"], ["updated_at", "2023-01-18 00:59:40.671101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.671772"], ["updated_at", "2023-01-18 00:59:40.671772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-01-18 00:59:40.672443"], ["updated_at", "2023-01-18 00:59:40.672443"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-01-17 21:59:40 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-01-17 21:59:40 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 255)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-01-17 21:59:40 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 19ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 12163)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 19ms (Views: 0.2ms | ActiveRecord: 0.9ms | Allocations: 12163)

TRANSACTION (0.1ms)  rollback transaction
 (1.4ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-01-24 00:40:02.564092"], ["updated_at", "2023-01-24 00:40:02.564092"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-01-24 00:40:02.593425"], ["updated_at", "2023-01-24 00:40:02.593425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-01-24 00:40:02.601404"], ["updated_at", "2023-01-24 00:40:02.601404"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 1], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-01-24 00:40:02.614830"], ["updated_at", "2023-01-24 00:40:02.614830"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-01-24 00:40:02.623905"], ["updated_at", "2023-01-24 00:40:02.623905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 1], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-01-24 00:40:02.627269"], ["updated_at", "2023-01-24 00:40:02.627269"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-01-24 00:40:02.629718"], ["updated_at", "2023-01-24 00:40:02.629718"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 80ms (Views: 0.2ms | ActiveRecord: 5.3ms | Allocations: 41139)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
 (1.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-03 02:15:08.667393"], ["updated_at", "2023-02-03 02:15:08.667393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Create (0.8ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "name"], ["description", "desc"], ["expiration_date", "2023-02-03 04:15:08.660353"], ["semester", "2021/2"], ["created_at", "2023-02-03 02:15:08.677117"], ["updated_at", "2023-02-03 02:15:08.677117"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-03 02:15:08.679501"], ["updated_at", "2023-02-03 02:15:08.679501"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"this is a test survey 3", "expiration_date"=>"Thu, 21 Jun 2028 12:15:50 -0300", "name"=>"Questionário 3", "role"=>"2", "role_id"=>"2", "semester"=>"2021/2", "survey_questions"=>[{"question_number"=>"1", "question"=>"Sugestões ou comentários adicionais para esta disciplina.", "question_type_id"=>"1", "question_type"=>"likert", "optional"=>"true"}]}}

Completed 204 No Content in 0ms (ActiveRecord: 0.0ms | Allocations: 71)

TRANSACTION (0.2ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.0ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:23:59 -0300 Processing by SurveysController#create as JSON Completed 400 Bad Request in 14ms (ActiveRecord: 0.0ms | Allocations: 20092)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:24:20 -0300 Processing by SurveysController#create as JSON Completed 400 Bad Request in 13ms (ActiveRecord: 0.0ms | Allocations: 20105)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:24:42 -0300 Processing by SurveysController#create as JSON

Parameters: {"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}

Completed 400 Bad Request in 13ms (ActiveRecord: 0.0ms | Allocations: 20120)

TRANSACTION (0.1ms)  rollback transaction
 (1.3ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.6ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:25:12 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 31ms (Views: 2.1ms | ActiveRecord: 1.1ms | Allocations: 33717)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:26:18 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 34ms (Views: 2.3ms | ActiveRecord: 1.1ms | Allocations: 33717)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:26:22 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 35ms (Views: 2.5ms | ActiveRecord: 1.2ms | Allocations: 33717)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:26:26 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 34ms (Views: 2.2ms | ActiveRecord: 1.1ms | Allocations: 33717)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:27:07 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 33ms (Views: 2.3ms | ActiveRecord: 1.1ms | Allocations: 33717)

TRANSACTION (0.1ms)  rollback transaction
 (1.3ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:28:18 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 31ms (Views: 2.2ms | ActiveRecord: 1.1ms | Allocations: 33717)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:31:05.452621"], ["updated_at", "2023-02-03 19:31:05.452621"]]
TRANSACTION (1.7ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:31:05 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.8ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:31:05.514063"], ["updated_at", "2023-02-03 19:31:05.514063"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.3ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 36ms (Views: 10.2ms | ActiveRecord: 2.0ms | Allocations: 37349)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:32:08.969384"], ["updated_at", "2023-02-03 19:32:08.969384"]]
TRANSACTION (2.0ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:32:09 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:32:09.078397"], ["updated_at", "2023-02-03 19:32:09.078397"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 35ms (Views: 10.0ms | ActiveRecord: 1.2ms | Allocations: 37375)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.0ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:32:34.897300"], ["updated_at", "2023-02-03 19:32:34.897300"]]
TRANSACTION (3.0ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:32:34 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:32:34.971550"], ["updated_at", "2023-02-03 19:32:34.971550"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 25ms (ActiveRecord: 0.8ms | Allocations: 27713)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:33:12.489829"], ["updated_at", "2023-02-03 19:33:12.489829"]]
TRANSACTION (1.7ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:33:12 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:33:12.549565"], ["updated_at", "2023-02-03 19:33:12.549565"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 35ms (Views: 10.0ms | ActiveRecord: 1.2ms | Allocations: 37349)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:33:27.755668"], ["updated_at", "2023-02-03 19:33:27.755668"]]
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:33:27 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:33:27.818624"], ["updated_at", "2023-02-03 19:33:27.818624"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 37ms (Views: 10.2ms | ActiveRecord: 1.3ms | Allocations: 37349)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:33:52.521201"], ["updated_at", "2023-02-03 19:33:52.521201"]]
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:33:52 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:33:52.581905"], ["updated_at", "2023-02-03 19:33:52.581905"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 35ms (Views: 10.1ms | ActiveRecord: 1.3ms | Allocations: 37349)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:35:59.040312"], ["updated_at", "2023-02-03 19:35:59.040312"]]
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:35:59 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:35:59.101144"], ["updated_at", "2023-02-03 19:35:59.101144"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 35ms (Views: 10.4ms | ActiveRecord: 1.2ms | Allocations: 37353)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:36:29.976956"], ["updated_at", "2023-02-03 19:36:29.976956"]]
TRANSACTION (1.7ms)  commit transaction
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:39:22.348895"], ["updated_at", "2023-02-03 19:39:22.348895"]]
TRANSACTION (1.7ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:39:22 -0300 Processing by SurveysController#create as JSON Completed 400 Bad Request in 12ms (ActiveRecord: 0.0ms | Allocations: 19631)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:39:44.329937"], ["updated_at", "2023-02-03 19:39:44.329937"]]
TRANSACTION (1.8ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:39:44 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:39:44.392536"], ["updated_at", "2023-02-03 19:39:44.392536"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 38ms (Views: 10.1ms | ActiveRecord: 1.2ms | Allocations: 37349)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:39:44.599019"], ["updated_at", "2023-02-03 19:39:44.599019"]]
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:39:44 -0300 Processing by SurveysController#create as JSON Completed 400 Bad Request in 23ms (ActiveRecord: 0.0ms | Allocations: 19631)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:40:32.234257"], ["updated_at", "2023-02-03 19:40:32.234257"]]
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:40:32 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"survey"=>{"name"=>"teste"}}}

Unpermitted parameter: :survey. Context: { controller: SurveysController, action: create, request: #<ActionDispatch::Request:0x00007f7e4e1db8b0>, params: {“survey”=>{“survey”=>{“name”=>“teste”}}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 23ms (Views: 2.2ms | ActiveRecord: 0.4ms | Allocations: 27753)

TRANSACTION (0.1ms)  rollback transaction
 (0.6ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:40:44.026414"], ["updated_at", "2023-02-03 19:40:44.026414"]]
TRANSACTION (1.8ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:40:44 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"survey"=>{"name"=>"teste"}}}

Unpermitted parameter: :survey. Context: { controller: SurveysController, action: create, request: #<ActionDispatch::Request:0x00007f4cb6161f20>, params: {“survey”=>{“survey”=>{“name”=>“teste”}}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 24ms (Views: 2.0ms | ActiveRecord: 0.4ms | Allocations: 27753)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:41:05.117547"], ["updated_at", "2023-02-03 19:41:05.117547"]]
TRANSACTION (1.7ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:41:05 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"survey"=>{"name"=>"teste"}}}

Unpermitted parameter: :survey. Context: { controller: SurveysController, action: create, request: #<ActionDispatch::Request:0x00007f4b4a1e5ae0>, params: {“survey”=>{“survey”=>{“name”=>“teste”}}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 22ms (Views: 2.2ms | ActiveRecord: 0.4ms | Allocations: 27753)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:42:10.293891"], ["updated_at", "2023-02-03 19:42:10.293891"]]
TRANSACTION (1.7ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:42:10 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:42:10.354578"], ["updated_at", "2023-02-03 19:42:10.354578"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 35ms (Views: 10.2ms | ActiveRecord: 1.2ms | Allocations: 37349)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 2367)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-03 19:43:33.250247"], ["updated_at", "2023-02-03 19:43:33.250247"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-03 19:43:33.263845"], ["updated_at", "2023-02-03 19:43:33.263845"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-03 19:43:33.269529"], ["updated_at", "2023-02-03 19:43:33.269529"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 16], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-03 19:43:33.279308"], ["updated_at", "2023-02-03 19:43:33.279308"], ["role_id", 16]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-03 19:43:33.286089"], ["updated_at", "2023-02-03 19:43:33.286089"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 16], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-03 19:43:33.289344"], ["updated_at", "2023-02-03 19:43:33.289344"], ["role_id", 16]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-03 19:43:33.289956"], ["updated_at", "2023-02-03 19:43:33.289956"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]

Completed 500 Internal Server Error in 10ms (ActiveRecord: 1.2ms | Allocations: 6170)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-03 19:43:33.291571"], ["updated_at", "2023-02-03 19:43:33.291571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 52ms (Views: 0.2ms | ActiveRecord: 4.7ms | Allocations: 28612)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:43:33.295116"], ["updated_at", "2023-02-03 19:43:33.295116"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (2.5ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction
Role Create (3.4ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:43:33.296016"], ["updated_at", "2023-02-03 19:43:33.296016"]]

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:43:33 -0300

TRANSACTION (2.2ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:43:33 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}

Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:43:33.320201"], ["updated_at", "2023-02-03 19:43:33.320201"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 16ms (Views: 6.0ms | ActiveRecord: 1.4ms | Allocations: 7773)

Survey Create (0.4ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:43:33.328728"], ["updated_at", "2023-02-03 19:43:33.328728"], ["role_id", 1]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 14ms (ActiveRecord: 1.1ms | Allocations: 8256)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:43:33 -0300 Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:43:33 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"survey"=>{"name"=>"teste"}}}

Unpermitted parameter: :survey. Context: { controller: SurveysController, action: create, request: #<ActionDispatch::Request:0x000055bc2ac350a0>, params: {“survey”=>{“survey”=>{“name”=>“teste”}}, “controller”=>“surveys”, “action”=>“create”} } Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"survey"=>{"name"=>"teste"}}}

Unpermitted parameter: :survey. Context: { controller: SurveysController, action: create, request: #<ActionDispatch::Request:0x0000561678c430d0>, params: {“survey”=>{“survey”=>{“name”=>“teste”}}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms | Allocations: 2301)

TRANSACTION (0.1ms)  rollback transaction

Completed 422 Unprocessable Entity in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms | Allocations: 2302)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5763)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 6052)

Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  begin transaction
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:33.365020"], ["updated_at", "2023-02-03 19:43:33.365020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-03 19:43:33.366652"], ["updated_at", "2023-02-03 19:43:33.366652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-03 19:43:33.369553"], ["updated_at", "2023-02-03 19:43:33.369553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:33.369744"], ["updated_at", "2023-02-03 19:43:33.369744"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-03 19:43:33.370874"], ["updated_at", "2023-02-03 19:43:33.370874"]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-03 19:43:33.373608"], ["updated_at", "2023-02-03 19:43:33.373608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:33.374222"], ["updated_at", "2023-02-03 19:43:33.374222"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-03 19:43:33.374819"], ["updated_at", "2023-02-03 19:43:33.374819"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-03 19:43:33.377468"], ["updated_at", "2023-02-03 19:43:33.377468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:33.378686"], ["updated_at", "2023-02-03 19:43:33.378686"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-03 19:43:33.378966"], ["updated_at", "2023-02-03 19:43:33.378966"], ["role_id", 18]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-03 19:43:33.380565"], ["updated_at", "2023-02-03 19:43:33.380565"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-03 19:43:33.381968"], ["updated_at", "2023-02-03 19:43:33.381968"], ["role_id", 18]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-03 19:43:33.383388"], ["updated_at", "2023-02-03 19:43:33.383388"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:33.383313"], ["updated_at", "2023-02-03 19:43:33.383313"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-03 19:43:33.384599"], ["updated_at", "2023-02-03 19:43:33.384599"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-03 19:43:33.386069"], ["updated_at", "2023-02-03 19:43:33.386069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-03 19:43:33.387411"], ["updated_at", "2023-02-03 19:43:33.387411"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:33.387778"], ["updated_at", "2023-02-03 19:43:33.387778"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-03 19:43:33.388787"], ["updated_at", "2023-02-03 19:43:33.388787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-03 19:43:33.390007"], ["updated_at", "2023-02-03 19:43:33.390007"], ["role_id", 18]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-03 19:43:33.391449"], ["updated_at", "2023-02-03 19:43:33.391449"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:33.392243"], ["updated_at", "2023-02-03 19:43:33.392243"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-03 19:43:33.392640"], ["updated_at", "2023-02-03 19:43:33.392640"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-03 19:43:33.394002"], ["updated_at", "2023-02-03 19:43:33.394002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-03 19:43:33.395306"], ["updated_at", "2023-02-03 19:43:33.395306"], ["role_id", 18]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-03 19:43:33.396672"], ["updated_at", "2023-02-03 19:43:33.396672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:33.396855"], ["updated_at", "2023-02-03 19:43:33.396855"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-03 19:43:33.397874"], ["updated_at", "2023-02-03 19:43:33.397874"], ["role_id", 18]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-03 19:43:33.399315"], ["updated_at", "2023-02-03 19:43:33.399315"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-03 19:43:33.400557"], ["updated_at", "2023-02-03 19:43:33.400557"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:33.401317"], ["updated_at", "2023-02-03 19:43:33.401317"]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-03 19:43:33.401938"], ["updated_at", "2023-02-03 19:43:33.401938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-03 19:43:33.403256"], ["updated_at", "2023-02-03 19:43:33.403256"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-03 19:43:33.404762"], ["updated_at", "2023-02-03 19:43:33.404762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-03 19:43:33.405958"], ["updated_at", "2023-02-03 19:43:33.405958"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-03 19:43:33.407325"], ["updated_at", "2023-02-03 19:43:33.407325"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-03 19:43:33.408513"], ["updated_at", "2023-02-03 19:43:33.408513"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-03 16:43:33 -0300

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-03 19:43:33.409877"], ["updated_at", "2023-02-03 19:43:33.409877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-03 19:43:33.411077"], ["updated_at", "2023-02-03 19:43:33.411077"], ["role_id", 18]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 231)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-03 19:43:33.412451"], ["updated_at", "2023-02-03 19:43:33.412451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-03 19:43:33.413609"], ["updated_at", "2023-02-03 19:43:33.413609"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-03 19:43:33.414993"], ["updated_at", "2023-02-03 19:43:33.414993"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-03 19:43:33.416265"], ["updated_at", "2023-02-03 19:43:33.416265"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-03 19:43:33.417617"], ["updated_at", "2023-02-03 19:43:33.417617"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-03 19:43:33.418800"], ["updated_at", "2023-02-03 19:43:33.418800"], ["role_id", 18]]

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-03 16:43:33 -0300

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-03 19:43:33.420256"], ["updated_at", "2023-02-03 19:43:33.420256"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 180)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-03 19:43:33.421478"], ["updated_at", "2023-02-03 19:43:33.421478"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-03 19:43:33.422931"], ["updated_at", "2023-02-03 19:43:33.422931"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-03 19:43:33.424209"], ["updated_at", "2023-02-03 19:43:33.424209"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-03 19:43:33.425599"], ["updated_at", "2023-02-03 19:43:33.425599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-03 19:43:33.426900"], ["updated_at", "2023-02-03 19:43:33.426900"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-03 19:43:33.428286"], ["updated_at", "2023-02-03 19:43:33.428286"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-03 19:43:33.429467"], ["updated_at", "2023-02-03 19:43:33.429467"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-03 19:43:33.430850"], ["updated_at", "2023-02-03 19:43:33.430850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-03 19:43:33.432147"], ["updated_at", "2023-02-03 19:43:33.432147"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-03 19:43:33.433676"], ["updated_at", "2023-02-03 19:43:33.433676"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-03 19:43:33.434977"], ["updated_at", "2023-02-03 19:43:33.434977"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-03 19:43:33.436379"], ["updated_at", "2023-02-03 19:43:33.436379"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-03 19:43:33.438183"], ["updated_at", "2023-02-03 19:43:33.438183"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-03 19:43:33.440155"], ["updated_at", "2023-02-03 19:43:33.440155"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-03 19:43:33.441817"], ["updated_at", "2023-02-03 19:43:33.441817"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-03 19:43:33.443802"], ["updated_at", "2023-02-03 19:43:33.443802"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-03 19:43:33.445555"], ["updated_at", "2023-02-03 19:43:33.445555"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-03 19:43:33.447287"], ["updated_at", "2023-02-03 19:43:33.447287"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-03 19:43:33.448790"], ["updated_at", "2023-02-03 19:43:33.448790"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-03 19:43:33.450512"], ["updated_at", "2023-02-03 19:43:33.450512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-03 19:43:33.451925"], ["updated_at", "2023-02-03 19:43:33.451925"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-03 19:43:33.453566"], ["updated_at", "2023-02-03 19:43:33.453566"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-03 19:43:33.455096"], ["updated_at", "2023-02-03 19:43:33.455096"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-03 19:43:33.456529"], ["updated_at", "2023-02-03 19:43:33.456529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-03 19:43:33.457848"], ["updated_at", "2023-02-03 19:43:33.457848"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-03 19:43:33.459296"], ["updated_at", "2023-02-03 19:43:33.459296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-03 19:43:33.460417"], ["updated_at", "2023-02-03 19:43:33.460417"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-03 19:43:33.461752"], ["updated_at", "2023-02-03 19:43:33.461752"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-03 19:43:33.463017"], ["updated_at", "2023-02-03 19:43:33.463017"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-03 19:43:33.464411"], ["updated_at", "2023-02-03 19:43:33.464411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-03 19:43:33.465831"], ["updated_at", "2023-02-03 19:43:33.465831"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-03 19:43:33.467505"], ["updated_at", "2023-02-03 19:43:33.467505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-03 19:43:33.468705"], ["updated_at", "2023-02-03 19:43:33.468705"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-03 19:43:33.470366"], ["updated_at", "2023-02-03 19:43:33.470366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-03 19:43:33.471708"], ["updated_at", "2023-02-03 19:43:33.471708"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-03 19:43:33.473603"], ["updated_at", "2023-02-03 19:43:33.473603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-03 19:43:33.475010"], ["updated_at", "2023-02-03 19:43:33.475010"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-03 19:43:33.476427"], ["updated_at", "2023-02-03 19:43:33.476427"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-03 19:43:33.477599"], ["updated_at", "2023-02-03 19:43:33.477599"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-03 19:43:33.478976"], ["updated_at", "2023-02-03 19:43:33.478976"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-03 19:43:33.480185"], ["updated_at", "2023-02-03 19:43:33.480185"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-03 19:43:33.482121"], ["updated_at", "2023-02-03 19:43:33.482121"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-03 19:43:33.483872"], ["updated_at", "2023-02-03 19:43:33.483872"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-03 19:43:33.485652"], ["updated_at", "2023-02-03 19:43:33.485652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-03 19:43:33.487455"], ["updated_at", "2023-02-03 19:43:33.487455"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-03 19:43:33.489364"], ["updated_at", "2023-02-03 19:43:33.489364"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-03 19:43:33.491189"], ["updated_at", "2023-02-03 19:43:33.491189"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-03 19:43:33.492908"], ["updated_at", "2023-02-03 19:43:33.492908"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-03 19:43:33.494467"], ["updated_at", "2023-02-03 19:43:33.494467"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-03 19:43:33.496229"], ["updated_at", "2023-02-03 19:43:33.496229"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-03 19:43:33.498051"], ["updated_at", "2023-02-03 19:43:33.498051"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-03 19:43:33.500220"], ["updated_at", "2023-02-03 19:43:33.500220"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-03 19:43:33.501925"], ["updated_at", "2023-02-03 19:43:33.501925"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-03 19:43:33.504206"], ["updated_at", "2023-02-03 19:43:33.504206"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-03 19:43:33.506179"], ["updated_at", "2023-02-03 19:43:33.506179"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-03 19:43:33.508141"], ["updated_at", "2023-02-03 19:43:33.508141"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-03 19:43:33.509683"], ["updated_at", "2023-02-03 19:43:33.509683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-03 19:43:33.511457"], ["updated_at", "2023-02-03 19:43:33.511457"], ["role_id", 19]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-03 19:43:33.513033"], ["updated_at", "2023-02-03 19:43:33.513033"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-03 19:43:33.517933"], ["updated_at", "2023-02-03 19:43:33.517933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-03 19:43:33.519269"], ["updated_at", "2023-02-03 19:43:33.519269"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-03 19:43:33.520594"], ["updated_at", "2023-02-03 19:43:33.520594"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:33.551566"], ["updated_at", "2023-02-03 19:43:33.551566"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:33.553551"], ["updated_at", "2023-02-03 19:43:33.553551"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:33.554877"], ["updated_at", "2023-02-03 19:43:33.554877"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.556085"], ["updated_at", "2023-02-03 19:43:33.556085"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.557076"], ["updated_at", "2023-02-03 19:43:33.557076"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.558118"], ["updated_at", "2023-02-03 19:43:33.558118"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.559190"], ["updated_at", "2023-02-03 19:43:33.559190"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.560253"], ["updated_at", "2023-02-03 19:43:33.560253"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:33.561259"], ["updated_at", "2023-02-03 19:43:33.561259"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.562211"], ["updated_at", "2023-02-03 19:43:33.562211"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.563097"], ["updated_at", "2023-02-03 19:43:33.563097"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.563847"], ["updated_at", "2023-02-03 19:43:33.563847"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.564584"], ["updated_at", "2023-02-03 19:43:33.564584"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.565304"], ["updated_at", "2023-02-03 19:43:33.565304"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.566054"], ["updated_at", "2023-02-03 19:43:33.566054"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.566795"], ["updated_at", "2023-02-03 19:43:33.566795"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.567545"], ["updated_at", "2023-02-03 19:43:33.567545"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.568277"], ["updated_at", "2023-02-03 19:43:33.568277"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.569016"], ["updated_at", "2023-02-03 19:43:33.569016"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.569740"], ["updated_at", "2023-02-03 19:43:33.569740"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.570818"], ["updated_at", "2023-02-03 19:43:33.570818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:33.583630"], ["updated_at", "2023-02-03 19:43:33.583630"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:33.584969"], ["updated_at", "2023-02-03 19:43:33.584969"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:33.585917"], ["updated_at", "2023-02-03 19:43:33.585917"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:33.587053"], ["updated_at", "2023-02-03 19:43:33.587053"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:33.587952"], ["updated_at", "2023-02-03 19:43:33.587952"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:33.588863"], ["updated_at", "2023-02-03 19:43:33.588863"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:33.589565"], ["updated_at", "2023-02-03 19:43:33.589565"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:33.590250"], ["updated_at", "2023-02-03 19:43:33.590250"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:33.591035"], ["updated_at", "2023-02-03 19:43:33.591035"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.591930"], ["updated_at", "2023-02-03 19:43:33.591930"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.593020"], ["updated_at", "2023-02-03 19:43:33.593020"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.594155"], ["updated_at", "2023-02-03 19:43:33.594155"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.595190"], ["updated_at", "2023-02-03 19:43:33.595190"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.596235"], ["updated_at", "2023-02-03 19:43:33.596235"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.597297"], ["updated_at", "2023-02-03 19:43:33.597297"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.598178"], ["updated_at", "2023-02-03 19:43:33.598178"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.599078"], ["updated_at", "2023-02-03 19:43:33.599078"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.599820"], ["updated_at", "2023-02-03 19:43:33.599820"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.600572"], ["updated_at", "2023-02-03 19:43:33.600572"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.601286"], ["updated_at", "2023-02-03 19:43:33.601286"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.602031"], ["updated_at", "2023-02-03 19:43:33.602031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:33.637167"], ["updated_at", "2023-02-03 19:43:33.637167"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:33.638563"], ["updated_at", "2023-02-03 19:43:33.638563"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.639914"], ["updated_at", "2023-02-03 19:43:33.639914"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.640841"], ["updated_at", "2023-02-03 19:43:33.640841"]]
LikertScaleAnswer Create (2.0ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.641730"], ["updated_at", "2023-02-03 19:43:33.641730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.644734"], ["updated_at", "2023-02-03 19:43:33.644734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.645823"], ["updated_at", "2023-02-03 19:43:33.645823"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.646847"], ["updated_at", "2023-02-03 19:43:33.646847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.647892"], ["updated_at", "2023-02-03 19:43:33.647892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.648854"], ["updated_at", "2023-02-03 19:43:33.648854"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.649582"], ["updated_at", "2023-02-03 19:43:33.649582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.650285"], ["updated_at", "2023-02-03 19:43:33.650285"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.650975"], ["updated_at", "2023-02-03 19:43:33.650975"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.651657"], ["updated_at", "2023-02-03 19:43:33.651657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.652334"], ["updated_at", "2023-02-03 19:43:33.652334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:33.653014"], ["updated_at", "2023-02-03 19:43:33.653014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:33.669172"], ["updated_at", "2023-02-03 19:43:33.669172"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:33.670488"], ["updated_at", "2023-02-03 19:43:33.670488"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.671410"], ["updated_at", "2023-02-03 19:43:33.671410"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.672340"], ["updated_at", "2023-02-03 19:43:33.672340"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.673136"], ["updated_at", "2023-02-03 19:43:33.673136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.673920"], ["updated_at", "2023-02-03 19:43:33.673920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.674717"], ["updated_at", "2023-02-03 19:43:33.674717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.675454"], ["updated_at", "2023-02-03 19:43:33.675454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.676150"], ["updated_at", "2023-02-03 19:43:33.676150"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.676828"], ["updated_at", "2023-02-03 19:43:33.676828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.677511"], ["updated_at", "2023-02-03 19:43:33.677511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.678210"], ["updated_at", "2023-02-03 19:43:33.678210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.678901"], ["updated_at", "2023-02-03 19:43:33.678901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.679605"], ["updated_at", "2023-02-03 19:43:33.679605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.680299"], ["updated_at", "2023-02-03 19:43:33.680299"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:33.680979"], ["updated_at", "2023-02-03 19:43:33.680979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:33.696696"], ["updated_at", "2023-02-03 19:43:33.696696"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:33.697714"], ["updated_at", "2023-02-03 19:43:33.697714"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.698605"], ["updated_at", "2023-02-03 19:43:33.698605"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.699321"], ["updated_at", "2023-02-03 19:43:33.699321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.700065"], ["updated_at", "2023-02-03 19:43:33.700065"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.700769"], ["updated_at", "2023-02-03 19:43:33.700769"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.701445"], ["updated_at", "2023-02-03 19:43:33.701445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.702148"], ["updated_at", "2023-02-03 19:43:33.702148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.702846"], ["updated_at", "2023-02-03 19:43:33.702846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.703837"], ["updated_at", "2023-02-03 19:43:33.703837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.704576"], ["updated_at", "2023-02-03 19:43:33.704576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.705271"], ["updated_at", "2023-02-03 19:43:33.705271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.705976"], ["updated_at", "2023-02-03 19:43:33.705976"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.706674"], ["updated_at", "2023-02-03 19:43:33.706674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.707385"], ["updated_at", "2023-02-03 19:43:33.707385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:33.708090"], ["updated_at", "2023-02-03 19:43:33.708090"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:33.723252"], ["updated_at", "2023-02-03 19:43:33.723252"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:33.724240"], ["updated_at", "2023-02-03 19:43:33.724240"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.725015"], ["updated_at", "2023-02-03 19:43:33.725015"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.725720"], ["updated_at", "2023-02-03 19:43:33.725720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.726467"], ["updated_at", "2023-02-03 19:43:33.726467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.727213"], ["updated_at", "2023-02-03 19:43:33.727213"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.727924"], ["updated_at", "2023-02-03 19:43:33.727924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.728627"], ["updated_at", "2023-02-03 19:43:33.728627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.729312"], ["updated_at", "2023-02-03 19:43:33.729312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.730021"], ["updated_at", "2023-02-03 19:43:33.730021"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.730733"], ["updated_at", "2023-02-03 19:43:33.730733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.731423"], ["updated_at", "2023-02-03 19:43:33.731423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.732112"], ["updated_at", "2023-02-03 19:43:33.732112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.732795"], ["updated_at", "2023-02-03 19:43:33.732795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.733466"], ["updated_at", "2023-02-03 19:43:33.733466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:33.734177"], ["updated_at", "2023-02-03 19:43:33.734177"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:33.749947"], ["updated_at", "2023-02-03 19:43:33.749947"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:33.750923"], ["updated_at", "2023-02-03 19:43:33.750923"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.751680"], ["updated_at", "2023-02-03 19:43:33.751680"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.752374"], ["updated_at", "2023-02-03 19:43:33.752374"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.753130"], ["updated_at", "2023-02-03 19:43:33.753130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.753959"], ["updated_at", "2023-02-03 19:43:33.753959"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.754669"], ["updated_at", "2023-02-03 19:43:33.754669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.755353"], ["updated_at", "2023-02-03 19:43:33.755353"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.756068"], ["updated_at", "2023-02-03 19:43:33.756068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.756754"], ["updated_at", "2023-02-03 19:43:33.756754"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.757434"], ["updated_at", "2023-02-03 19:43:33.757434"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.758174"], ["updated_at", "2023-02-03 19:43:33.758174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.758876"], ["updated_at", "2023-02-03 19:43:33.758876"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.759574"], ["updated_at", "2023-02-03 19:43:33.759574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.760266"], ["updated_at", "2023-02-03 19:43:33.760266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:33.760941"], ["updated_at", "2023-02-03 19:43:33.760941"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:33.775737"], ["updated_at", "2023-02-03 19:43:33.775737"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:33.776698"], ["updated_at", "2023-02-03 19:43:33.776698"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.777439"], ["updated_at", "2023-02-03 19:43:33.777439"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.778125"], ["updated_at", "2023-02-03 19:43:33.778125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.778882"], ["updated_at", "2023-02-03 19:43:33.778882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.779592"], ["updated_at", "2023-02-03 19:43:33.779592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.780274"], ["updated_at", "2023-02-03 19:43:33.780274"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.780982"], ["updated_at", "2023-02-03 19:43:33.780982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.781681"], ["updated_at", "2023-02-03 19:43:33.781681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.782400"], ["updated_at", "2023-02-03 19:43:33.782400"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.783093"], ["updated_at", "2023-02-03 19:43:33.783093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.783767"], ["updated_at", "2023-02-03 19:43:33.783767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.784455"], ["updated_at", "2023-02-03 19:43:33.784455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.785140"], ["updated_at", "2023-02-03 19:43:33.785140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.785822"], ["updated_at", "2023-02-03 19:43:33.785822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:33.786601"], ["updated_at", "2023-02-03 19:43:33.786601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-03 16:43:33 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.3ms | Allocations: 3127)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:33.804865"], ["updated_at", "2023-02-03 19:43:33.804865"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-03 19:43:33.806450"], ["updated_at", "2023-02-03 19:43:33.806450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-03 19:43:33.809708"], ["updated_at", "2023-02-03 19:43:33.809708"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-03 19:43:33.811307"], ["updated_at", "2023-02-03 19:43:33.811307"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-03 19:43:33.814574"], ["updated_at", "2023-02-03 19:43:33.814574"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-03 19:43:33.815827"], ["updated_at", "2023-02-03 19:43:33.815827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-03 19:43:33.817869"], ["updated_at", "2023-02-03 19:43:33.817869"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-03 19:43:33.819262"], ["updated_at", "2023-02-03 19:43:33.819262"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-03 19:43:33.820926"], ["updated_at", "2023-02-03 19:43:33.820926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-03 19:43:33.822248"], ["updated_at", "2023-02-03 19:43:33.822248"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-03 19:43:33.823700"], ["updated_at", "2023-02-03 19:43:33.823700"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-03 19:43:33.824902"], ["updated_at", "2023-02-03 19:43:33.824902"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-03 19:43:33.826276"], ["updated_at", "2023-02-03 19:43:33.826276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-03 19:43:33.827457"], ["updated_at", "2023-02-03 19:43:33.827457"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-03 19:43:33.828827"], ["updated_at", "2023-02-03 19:43:33.828827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-03 19:43:33.830012"], ["updated_at", "2023-02-03 19:43:33.830012"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-03 19:43:33.831364"], ["updated_at", "2023-02-03 19:43:33.831364"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-03 19:43:33.832570"], ["updated_at", "2023-02-03 19:43:33.832570"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-03 19:43:33.833937"], ["updated_at", "2023-02-03 19:43:33.833937"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-03 19:43:33.835139"], ["updated_at", "2023-02-03 19:43:33.835139"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-03 19:43:33.836509"], ["updated_at", "2023-02-03 19:43:33.836509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-03 19:43:33.837837"], ["updated_at", "2023-02-03 19:43:33.837837"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-03 19:43:33.839241"], ["updated_at", "2023-02-03 19:43:33.839241"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-03 19:43:33.840462"], ["updated_at", "2023-02-03 19:43:33.840462"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-03 19:43:33.841880"], ["updated_at", "2023-02-03 19:43:33.841880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-03 19:43:33.843076"], ["updated_at", "2023-02-03 19:43:33.843076"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-03 19:43:33.844526"], ["updated_at", "2023-02-03 19:43:33.844526"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-03 19:43:33.846208"], ["updated_at", "2023-02-03 19:43:33.846208"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-03 19:43:33.848035"], ["updated_at", "2023-02-03 19:43:33.848035"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-03 19:43:33.849503"], ["updated_at", "2023-02-03 19:43:33.849503"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-03 19:43:33.850919"], ["updated_at", "2023-02-03 19:43:33.850919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-03 19:43:33.852104"], ["updated_at", "2023-02-03 19:43:33.852104"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-03 19:43:33.853681"], ["updated_at", "2023-02-03 19:43:33.853681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-03 19:43:33.855040"], ["updated_at", "2023-02-03 19:43:33.855040"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-03 19:43:33.856421"], ["updated_at", "2023-02-03 19:43:33.856421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-03 19:43:33.857609"], ["updated_at", "2023-02-03 19:43:33.857609"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-03 19:43:33.858993"], ["updated_at", "2023-02-03 19:43:33.858993"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-03 19:43:33.860161"], ["updated_at", "2023-02-03 19:43:33.860161"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-03 19:43:33.861521"], ["updated_at", "2023-02-03 19:43:33.861521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-03 19:43:33.862700"], ["updated_at", "2023-02-03 19:43:33.862700"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-03 19:43:33.864045"], ["updated_at", "2023-02-03 19:43:33.864045"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-03 19:43:33.865224"], ["updated_at", "2023-02-03 19:43:33.865224"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-03 19:43:33.866652"], ["updated_at", "2023-02-03 19:43:33.866652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-03 19:43:33.867851"], ["updated_at", "2023-02-03 19:43:33.867851"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-03 19:43:33.869215"], ["updated_at", "2023-02-03 19:43:33.869215"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-03 19:43:33.870549"], ["updated_at", "2023-02-03 19:43:33.870549"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-03 19:43:33.871913"], ["updated_at", "2023-02-03 19:43:33.871913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-03 19:43:33.873097"], ["updated_at", "2023-02-03 19:43:33.873097"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-03 19:43:33.874461"], ["updated_at", "2023-02-03 19:43:33.874461"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-03 19:43:33.875657"], ["updated_at", "2023-02-03 19:43:33.875657"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-03 19:43:33.877034"], ["updated_at", "2023-02-03 19:43:33.877034"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-03 19:43:33.878266"], ["updated_at", "2023-02-03 19:43:33.878266"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-03 19:43:33.879652"], ["updated_at", "2023-02-03 19:43:33.879652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-03 19:43:33.880840"], ["updated_at", "2023-02-03 19:43:33.880840"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-03 19:43:33.882297"], ["updated_at", "2023-02-03 19:43:33.882297"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-03 19:43:33.883524"], ["updated_at", "2023-02-03 19:43:33.883524"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-03 19:43:33.884883"], ["updated_at", "2023-02-03 19:43:33.884883"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-03 19:43:33.886119"], ["updated_at", "2023-02-03 19:43:33.886119"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-03 19:43:33.887613"], ["updated_at", "2023-02-03 19:43:33.887613"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-03 19:43:33.888809"], ["updated_at", "2023-02-03 19:43:33.888809"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-03 19:43:33.890189"], ["updated_at", "2023-02-03 19:43:33.890189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-03 19:43:33.891382"], ["updated_at", "2023-02-03 19:43:33.891382"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-03 19:43:33.892748"], ["updated_at", "2023-02-03 19:43:33.892748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-03 19:43:33.893945"], ["updated_at", "2023-02-03 19:43:33.893945"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-03 19:43:33.895326"], ["updated_at", "2023-02-03 19:43:33.895326"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-03 19:43:33.896545"], ["updated_at", "2023-02-03 19:43:33.896545"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-03 19:43:33.897911"], ["updated_at", "2023-02-03 19:43:33.897911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-03 19:43:33.899084"], ["updated_at", "2023-02-03 19:43:33.899084"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-03 19:43:33.900465"], ["updated_at", "2023-02-03 19:43:33.900465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-03 19:43:33.901672"], ["updated_at", "2023-02-03 19:43:33.901672"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-03 19:43:33.903085"], ["updated_at", "2023-02-03 19:43:33.903085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-03 19:43:33.904413"], ["updated_at", "2023-02-03 19:43:33.904413"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-03 19:43:33.905836"], ["updated_at", "2023-02-03 19:43:33.905836"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-03 19:43:33.907107"], ["updated_at", "2023-02-03 19:43:33.907107"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-03 19:43:33.908507"], ["updated_at", "2023-02-03 19:43:33.908507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-03 19:43:33.909718"], ["updated_at", "2023-02-03 19:43:33.909718"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-03 19:43:33.911127"], ["updated_at", "2023-02-03 19:43:33.911127"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-03 19:43:33.912335"], ["updated_at", "2023-02-03 19:43:33.912335"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-03 19:43:33.913713"], ["updated_at", "2023-02-03 19:43:33.913713"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-03 19:43:33.914974"], ["updated_at", "2023-02-03 19:43:33.914974"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-03 19:43:33.916392"], ["updated_at", "2023-02-03 19:43:33.916392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-03 19:43:33.917608"], ["updated_at", "2023-02-03 19:43:33.917608"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-03 19:43:33.919035"], ["updated_at", "2023-02-03 19:43:33.919035"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-03 19:43:33.920358"], ["updated_at", "2023-02-03 19:43:33.920358"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-03 19:43:33.921761"], ["updated_at", "2023-02-03 19:43:33.921761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-03 19:43:33.922975"], ["updated_at", "2023-02-03 19:43:33.922975"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-03 19:43:33.924382"], ["updated_at", "2023-02-03 19:43:33.924382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-03 19:43:33.925613"], ["updated_at", "2023-02-03 19:43:33.925613"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-03 19:43:33.927029"], ["updated_at", "2023-02-03 19:43:33.927029"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-03 19:43:33.928262"], ["updated_at", "2023-02-03 19:43:33.928262"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-03 19:43:33.929652"], ["updated_at", "2023-02-03 19:43:33.929652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-03 19:43:33.930872"], ["updated_at", "2023-02-03 19:43:33.930872"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-03 19:43:33.932299"], ["updated_at", "2023-02-03 19:43:33.932299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-03 19:43:33.933557"], ["updated_at", "2023-02-03 19:43:33.933557"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-03 19:43:33.935019"], ["updated_at", "2023-02-03 19:43:33.935019"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-03 19:43:33.936139"], ["updated_at", "2023-02-03 19:43:33.936139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-03 19:43:33.937482"], ["updated_at", "2023-02-03 19:43:33.937482"], ["role_id", 19]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-03 19:43:33.938938"], ["updated_at", "2023-02-03 19:43:33.938938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-03 19:43:33.940474"], ["updated_at", "2023-02-03 19:43:33.940474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-03 19:43:33.941671"], ["updated_at", "2023-02-03 19:43:33.941671"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-03 19:43:33.942750"], ["updated_at", "2023-02-03 19:43:33.942750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:33.954040"], ["updated_at", "2023-02-03 19:43:33.954040"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:33.964376"], ["updated_at", "2023-02-03 19:43:33.964376"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:33.965537"], ["updated_at", "2023-02-03 19:43:33.965537"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.966440"], ["updated_at", "2023-02-03 19:43:33.966440"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.967249"], ["updated_at", "2023-02-03 19:43:33.967249"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.967945"], ["updated_at", "2023-02-03 19:43:33.967945"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.968668"], ["updated_at", "2023-02-03 19:43:33.968668"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:33.969344"], ["updated_at", "2023-02-03 19:43:33.969344"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:33.970189"], ["updated_at", "2023-02-03 19:43:33.970189"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.971081"], ["updated_at", "2023-02-03 19:43:33.971081"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.971943"], ["updated_at", "2023-02-03 19:43:33.971943"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.972686"], ["updated_at", "2023-02-03 19:43:33.972686"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.973436"], ["updated_at", "2023-02-03 19:43:33.973436"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.974188"], ["updated_at", "2023-02-03 19:43:33.974188"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.974917"], ["updated_at", "2023-02-03 19:43:33.974917"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.975638"], ["updated_at", "2023-02-03 19:43:33.975638"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.976347"], ["updated_at", "2023-02-03 19:43:33.976347"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.977087"], ["updated_at", "2023-02-03 19:43:33.977087"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.977845"], ["updated_at", "2023-02-03 19:43:33.977845"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.978585"], ["updated_at", "2023-02-03 19:43:33.978585"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:33.979307"], ["updated_at", "2023-02-03 19:43:33.979307"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:33.990200"], ["updated_at", "2023-02-03 19:43:33.990200"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:33.991481"], ["updated_at", "2023-02-03 19:43:33.991481"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:33.992398"], ["updated_at", "2023-02-03 19:43:33.992398"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:33.993278"], ["updated_at", "2023-02-03 19:43:33.993278"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:33.994050"], ["updated_at", "2023-02-03 19:43:33.994050"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:33.994781"], ["updated_at", "2023-02-03 19:43:33.994781"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:33.995461"], ["updated_at", "2023-02-03 19:43:33.995461"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:33.996137"], ["updated_at", "2023-02-03 19:43:33.996137"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:33.996862"], ["updated_at", "2023-02-03 19:43:33.996862"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.997703"], ["updated_at", "2023-02-03 19:43:33.997703"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.998511"], ["updated_at", "2023-02-03 19:43:33.998511"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:33.999261"], ["updated_at", "2023-02-03 19:43:33.999261"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.000008"], ["updated_at", "2023-02-03 19:43:34.000008"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.000748"], ["updated_at", "2023-02-03 19:43:34.000748"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.001499"], ["updated_at", "2023-02-03 19:43:34.001499"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.002286"], ["updated_at", "2023-02-03 19:43:34.002286"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.003035"], ["updated_at", "2023-02-03 19:43:34.003035"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.003887"], ["updated_at", "2023-02-03 19:43:34.003887"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.004632"], ["updated_at", "2023-02-03 19:43:34.004632"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.005349"], ["updated_at", "2023-02-03 19:43:34.005349"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.006097"], ["updated_at", "2023-02-03 19:43:34.006097"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.024397"], ["updated_at", "2023-02-03 19:43:34.024397"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.025580"], ["updated_at", "2023-02-03 19:43:34.025580"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.026619"], ["updated_at", "2023-02-03 19:43:34.026619"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.027498"], ["updated_at", "2023-02-03 19:43:34.027498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.028385"], ["updated_at", "2023-02-03 19:43:34.028385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.029269"], ["updated_at", "2023-02-03 19:43:34.029269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.030137"], ["updated_at", "2023-02-03 19:43:34.030137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.031454"], ["updated_at", "2023-02-03 19:43:34.031454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.032458"], ["updated_at", "2023-02-03 19:43:34.032458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.033303"], ["updated_at", "2023-02-03 19:43:34.033303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.034068"], ["updated_at", "2023-02-03 19:43:34.034068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.034906"], ["updated_at", "2023-02-03 19:43:34.034906"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.035750"], ["updated_at", "2023-02-03 19:43:34.035750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.036620"], ["updated_at", "2023-02-03 19:43:34.036620"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.037504"], ["updated_at", "2023-02-03 19:43:34.037504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.038330"], ["updated_at", "2023-02-03 19:43:34.038330"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.055665"], ["updated_at", "2023-02-03 19:43:34.055665"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.056834"], ["updated_at", "2023-02-03 19:43:34.056834"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.057918"], ["updated_at", "2023-02-03 19:43:34.057918"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.058920"], ["updated_at", "2023-02-03 19:43:34.058920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.062153"], ["updated_at", "2023-02-03 19:43:34.062153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.063254"], ["updated_at", "2023-02-03 19:43:34.063254"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.065056"], ["updated_at", "2023-02-03 19:43:34.065056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.066335"], ["updated_at", "2023-02-03 19:43:34.066335"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.067249"], ["updated_at", "2023-02-03 19:43:34.067249"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.068002"], ["updated_at", "2023-02-03 19:43:34.068002"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.068700"], ["updated_at", "2023-02-03 19:43:34.068700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.069388"], ["updated_at", "2023-02-03 19:43:34.069388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.070102"], ["updated_at", "2023-02-03 19:43:34.070102"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.070872"], ["updated_at", "2023-02-03 19:43:34.070872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.071668"], ["updated_at", "2023-02-03 19:43:34.071668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.072462"], ["updated_at", "2023-02-03 19:43:34.072462"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.088224"], ["updated_at", "2023-02-03 19:43:34.088224"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.089216"], ["updated_at", "2023-02-03 19:43:34.089216"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.089989"], ["updated_at", "2023-02-03 19:43:34.089989"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.090697"], ["updated_at", "2023-02-03 19:43:34.090697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.091458"], ["updated_at", "2023-02-03 19:43:34.091458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.092180"], ["updated_at", "2023-02-03 19:43:34.092180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.092887"], ["updated_at", "2023-02-03 19:43:34.092887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.093590"], ["updated_at", "2023-02-03 19:43:34.093590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.094287"], ["updated_at", "2023-02-03 19:43:34.094287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.094981"], ["updated_at", "2023-02-03 19:43:34.094981"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.095678"], ["updated_at", "2023-02-03 19:43:34.095678"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.096378"], ["updated_at", "2023-02-03 19:43:34.096378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.097067"], ["updated_at", "2023-02-03 19:43:34.097067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.097765"], ["updated_at", "2023-02-03 19:43:34.097765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.098505"], ["updated_at", "2023-02-03 19:43:34.098505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.099184"], ["updated_at", "2023-02-03 19:43:34.099184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.114141"], ["updated_at", "2023-02-03 19:43:34.114141"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.115132"], ["updated_at", "2023-02-03 19:43:34.115132"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.115902"], ["updated_at", "2023-02-03 19:43:34.115902"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.116614"], ["updated_at", "2023-02-03 19:43:34.116614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.117358"], ["updated_at", "2023-02-03 19:43:34.117358"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.118093"], ["updated_at", "2023-02-03 19:43:34.118093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.118793"], ["updated_at", "2023-02-03 19:43:34.118793"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.119468"], ["updated_at", "2023-02-03 19:43:34.119468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.120165"], ["updated_at", "2023-02-03 19:43:34.120165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.120865"], ["updated_at", "2023-02-03 19:43:34.120865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.121571"], ["updated_at", "2023-02-03 19:43:34.121571"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.122261"], ["updated_at", "2023-02-03 19:43:34.122261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.122956"], ["updated_at", "2023-02-03 19:43:34.122956"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.123673"], ["updated_at", "2023-02-03 19:43:34.123673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.124391"], ["updated_at", "2023-02-03 19:43:34.124391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.125077"], ["updated_at", "2023-02-03 19:43:34.125077"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.139909"], ["updated_at", "2023-02-03 19:43:34.139909"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.140883"], ["updated_at", "2023-02-03 19:43:34.140883"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.141631"], ["updated_at", "2023-02-03 19:43:34.141631"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.142335"], ["updated_at", "2023-02-03 19:43:34.142335"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.143101"], ["updated_at", "2023-02-03 19:43:34.143101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.143803"], ["updated_at", "2023-02-03 19:43:34.143803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.144500"], ["updated_at", "2023-02-03 19:43:34.144500"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.145341"], ["updated_at", "2023-02-03 19:43:34.145341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.146067"], ["updated_at", "2023-02-03 19:43:34.146067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.146766"], ["updated_at", "2023-02-03 19:43:34.146766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.147481"], ["updated_at", "2023-02-03 19:43:34.147481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.148182"], ["updated_at", "2023-02-03 19:43:34.148182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.148861"], ["updated_at", "2023-02-03 19:43:34.148861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.149555"], ["updated_at", "2023-02-03 19:43:34.149555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.150265"], ["updated_at", "2023-02-03 19:43:34.150265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.150970"], ["updated_at", "2023-02-03 19:43:34.150970"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.165987"], ["updated_at", "2023-02-03 19:43:34.165987"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.167002"], ["updated_at", "2023-02-03 19:43:34.167002"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.167762"], ["updated_at", "2023-02-03 19:43:34.167762"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.168457"], ["updated_at", "2023-02-03 19:43:34.168457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.169213"], ["updated_at", "2023-02-03 19:43:34.169213"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.169946"], ["updated_at", "2023-02-03 19:43:34.169946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.170663"], ["updated_at", "2023-02-03 19:43:34.170663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.171412"], ["updated_at", "2023-02-03 19:43:34.171412"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.172110"], ["updated_at", "2023-02-03 19:43:34.172110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.172795"], ["updated_at", "2023-02-03 19:43:34.172795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.173479"], ["updated_at", "2023-02-03 19:43:34.173479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.174180"], ["updated_at", "2023-02-03 19:43:34.174180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.174872"], ["updated_at", "2023-02-03 19:43:34.174872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.175566"], ["updated_at", "2023-02-03 19:43:34.175566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.176241"], ["updated_at", "2023-02-03 19:43:34.176241"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.176935"], ["updated_at", "2023-02-03 19:43:34.176935"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-03 16:43:34 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 383)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:34.186419"], ["updated_at", "2023-02-03 19:43:34.186419"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-03 19:43:34.187900"], ["updated_at", "2023-02-03 19:43:34.187900"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-03 19:43:34.190684"], ["updated_at", "2023-02-03 19:43:34.190684"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-03 19:43:34.191848"], ["updated_at", "2023-02-03 19:43:34.191848"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-03 19:43:34.194465"], ["updated_at", "2023-02-03 19:43:34.194465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-03 19:43:34.195639"], ["updated_at", "2023-02-03 19:43:34.195639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-03 19:43:34.197660"], ["updated_at", "2023-02-03 19:43:34.197660"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-03 19:43:34.199087"], ["updated_at", "2023-02-03 19:43:34.199087"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-03 19:43:34.200635"], ["updated_at", "2023-02-03 19:43:34.200635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-03 19:43:34.201932"], ["updated_at", "2023-02-03 19:43:34.201932"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-03 19:43:34.203326"], ["updated_at", "2023-02-03 19:43:34.203326"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-03 19:43:34.204521"], ["updated_at", "2023-02-03 19:43:34.204521"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-03 19:43:34.205911"], ["updated_at", "2023-02-03 19:43:34.205911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-03 19:43:34.207114"], ["updated_at", "2023-02-03 19:43:34.207114"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-03 19:43:34.208471"], ["updated_at", "2023-02-03 19:43:34.208471"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-03 19:43:34.209622"], ["updated_at", "2023-02-03 19:43:34.209622"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-03 19:43:34.210975"], ["updated_at", "2023-02-03 19:43:34.210975"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-03 19:43:34.212138"], ["updated_at", "2023-02-03 19:43:34.212138"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-03 19:43:34.213467"], ["updated_at", "2023-02-03 19:43:34.213467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-03 19:43:34.214655"], ["updated_at", "2023-02-03 19:43:34.214655"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-03 19:43:34.216025"], ["updated_at", "2023-02-03 19:43:34.216025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-03 19:43:34.217195"], ["updated_at", "2023-02-03 19:43:34.217195"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-03 19:43:34.218556"], ["updated_at", "2023-02-03 19:43:34.218556"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-03 19:43:34.219720"], ["updated_at", "2023-02-03 19:43:34.219720"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-03 19:43:34.221076"], ["updated_at", "2023-02-03 19:43:34.221076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-03 19:43:34.222282"], ["updated_at", "2023-02-03 19:43:34.222282"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-03 19:43:34.223700"], ["updated_at", "2023-02-03 19:43:34.223700"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-03 19:43:34.224926"], ["updated_at", "2023-02-03 19:43:34.224926"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-03 19:43:34.226286"], ["updated_at", "2023-02-03 19:43:34.226286"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-03 19:43:34.227475"], ["updated_at", "2023-02-03 19:43:34.227475"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-03 19:43:34.228815"], ["updated_at", "2023-02-03 19:43:34.228815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-03 19:43:34.229993"], ["updated_at", "2023-02-03 19:43:34.229993"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-03 19:43:34.231348"], ["updated_at", "2023-02-03 19:43:34.231348"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-03 19:43:34.232536"], ["updated_at", "2023-02-03 19:43:34.232536"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-03 19:43:34.233918"], ["updated_at", "2023-02-03 19:43:34.233918"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-03 19:43:34.235116"], ["updated_at", "2023-02-03 19:43:34.235116"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-03 19:43:34.236481"], ["updated_at", "2023-02-03 19:43:34.236481"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-03 19:43:34.237653"], ["updated_at", "2023-02-03 19:43:34.237653"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-03 19:43:34.239023"], ["updated_at", "2023-02-03 19:43:34.239023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-03 19:43:34.240185"], ["updated_at", "2023-02-03 19:43:34.240185"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-03 19:43:34.241523"], ["updated_at", "2023-02-03 19:43:34.241523"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-03 19:43:34.242714"], ["updated_at", "2023-02-03 19:43:34.242714"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-03 19:43:34.244066"], ["updated_at", "2023-02-03 19:43:34.244066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-03 19:43:34.245219"], ["updated_at", "2023-02-03 19:43:34.245219"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-03 19:43:34.246574"], ["updated_at", "2023-02-03 19:43:34.246574"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-03 19:43:34.247736"], ["updated_at", "2023-02-03 19:43:34.247736"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-03 19:43:34.249070"], ["updated_at", "2023-02-03 19:43:34.249070"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-03 19:43:34.250248"], ["updated_at", "2023-02-03 19:43:34.250248"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-03 19:43:34.251604"], ["updated_at", "2023-02-03 19:43:34.251604"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-03 19:43:34.252768"], ["updated_at", "2023-02-03 19:43:34.252768"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-03 19:43:34.254129"], ["updated_at", "2023-02-03 19:43:34.254129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-03 19:43:34.255322"], ["updated_at", "2023-02-03 19:43:34.255322"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-03 19:43:34.256668"], ["updated_at", "2023-02-03 19:43:34.256668"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-03 19:43:34.257835"], ["updated_at", "2023-02-03 19:43:34.257835"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-03 19:43:34.259241"], ["updated_at", "2023-02-03 19:43:34.259241"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-03 19:43:34.260431"], ["updated_at", "2023-02-03 19:43:34.260431"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-03 19:43:34.261783"], ["updated_at", "2023-02-03 19:43:34.261783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-03 19:43:34.262965"], ["updated_at", "2023-02-03 19:43:34.262965"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-03 19:43:34.264316"], ["updated_at", "2023-02-03 19:43:34.264316"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-03 19:43:34.265460"], ["updated_at", "2023-02-03 19:43:34.265460"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-03 19:43:34.266815"], ["updated_at", "2023-02-03 19:43:34.266815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-03 19:43:34.267994"], ["updated_at", "2023-02-03 19:43:34.267994"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-03 19:43:34.269339"], ["updated_at", "2023-02-03 19:43:34.269339"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-03 19:43:34.270530"], ["updated_at", "2023-02-03 19:43:34.270530"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-03 19:43:34.271897"], ["updated_at", "2023-02-03 19:43:34.271897"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-03 19:43:34.273074"], ["updated_at", "2023-02-03 19:43:34.273074"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-03 19:43:34.274416"], ["updated_at", "2023-02-03 19:43:34.274416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-03 19:43:34.275587"], ["updated_at", "2023-02-03 19:43:34.275587"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-03 19:43:34.276918"], ["updated_at", "2023-02-03 19:43:34.276918"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-03 19:43:34.278088"], ["updated_at", "2023-02-03 19:43:34.278088"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-03 19:43:34.279451"], ["updated_at", "2023-02-03 19:43:34.279451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-03 19:43:34.280612"], ["updated_at", "2023-02-03 19:43:34.280612"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-03 19:43:34.281972"], ["updated_at", "2023-02-03 19:43:34.281972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-03 19:43:34.283172"], ["updated_at", "2023-02-03 19:43:34.283172"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-03 19:43:34.284512"], ["updated_at", "2023-02-03 19:43:34.284512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-03 19:43:34.285958"], ["updated_at", "2023-02-03 19:43:34.285958"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-03 19:43:34.287684"], ["updated_at", "2023-02-03 19:43:34.287684"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-03 19:43:34.288999"], ["updated_at", "2023-02-03 19:43:34.288999"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-03 19:43:34.290380"], ["updated_at", "2023-02-03 19:43:34.290380"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-03 19:43:34.291543"], ["updated_at", "2023-02-03 19:43:34.291543"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-03 19:43:34.292869"], ["updated_at", "2023-02-03 19:43:34.292869"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-03 19:43:34.294027"], ["updated_at", "2023-02-03 19:43:34.294027"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-03 19:43:34.295378"], ["updated_at", "2023-02-03 19:43:34.295378"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-03 19:43:34.296532"], ["updated_at", "2023-02-03 19:43:34.296532"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-03 19:43:34.297882"], ["updated_at", "2023-02-03 19:43:34.297882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-03 19:43:34.299051"], ["updated_at", "2023-02-03 19:43:34.299051"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-03 19:43:34.300405"], ["updated_at", "2023-02-03 19:43:34.300405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-03 19:43:34.301577"], ["updated_at", "2023-02-03 19:43:34.301577"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-03 19:43:34.302926"], ["updated_at", "2023-02-03 19:43:34.302926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-03 19:43:34.304136"], ["updated_at", "2023-02-03 19:43:34.304136"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-03 19:43:34.305564"], ["updated_at", "2023-02-03 19:43:34.305564"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-03 19:43:34.306798"], ["updated_at", "2023-02-03 19:43:34.306798"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-03 19:43:34.308194"], ["updated_at", "2023-02-03 19:43:34.308194"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-03 19:43:34.309374"], ["updated_at", "2023-02-03 19:43:34.309374"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-03 19:43:34.310724"], ["updated_at", "2023-02-03 19:43:34.310724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-03 19:43:34.311836"], ["updated_at", "2023-02-03 19:43:34.311836"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-03 19:43:34.313082"], ["updated_at", "2023-02-03 19:43:34.313082"], ["role_id", 19]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-03 19:43:34.314460"], ["updated_at", "2023-02-03 19:43:34.314460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-03 19:43:34.315913"], ["updated_at", "2023-02-03 19:43:34.315913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-03 19:43:34.317013"], ["updated_at", "2023-02-03 19:43:34.317013"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-03 19:43:34.318042"], ["updated_at", "2023-02-03 19:43:34.318042"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:34.328742"], ["updated_at", "2023-02-03 19:43:34.328742"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:34.330065"], ["updated_at", "2023-02-03 19:43:34.330065"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:34.331055"], ["updated_at", "2023-02-03 19:43:34.331055"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.331902"], ["updated_at", "2023-02-03 19:43:34.331902"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.332696"], ["updated_at", "2023-02-03 19:43:34.332696"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.333405"], ["updated_at", "2023-02-03 19:43:34.333405"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.334091"], ["updated_at", "2023-02-03 19:43:34.334091"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.334781"], ["updated_at", "2023-02-03 19:43:34.334781"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:34.335520"], ["updated_at", "2023-02-03 19:43:34.335520"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.336372"], ["updated_at", "2023-02-03 19:43:34.336372"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.337198"], ["updated_at", "2023-02-03 19:43:34.337198"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.337992"], ["updated_at", "2023-02-03 19:43:34.337992"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.338716"], ["updated_at", "2023-02-03 19:43:34.338716"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.339465"], ["updated_at", "2023-02-03 19:43:34.339465"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.340187"], ["updated_at", "2023-02-03 19:43:34.340187"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.340920"], ["updated_at", "2023-02-03 19:43:34.340920"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.341660"], ["updated_at", "2023-02-03 19:43:34.341660"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.342408"], ["updated_at", "2023-02-03 19:43:34.342408"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.343132"], ["updated_at", "2023-02-03 19:43:34.343132"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.343844"], ["updated_at", "2023-02-03 19:43:34.343844"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.344567"], ["updated_at", "2023-02-03 19:43:34.344567"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:34.355451"], ["updated_at", "2023-02-03 19:43:34.355451"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:34.356673"], ["updated_at", "2023-02-03 19:43:34.356673"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:34.357558"], ["updated_at", "2023-02-03 19:43:34.357558"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:34.358402"], ["updated_at", "2023-02-03 19:43:34.358402"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:34.359152"], ["updated_at", "2023-02-03 19:43:34.359152"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:34.359834"], ["updated_at", "2023-02-03 19:43:34.359834"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:34.360495"], ["updated_at", "2023-02-03 19:43:34.360495"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:34.361173"], ["updated_at", "2023-02-03 19:43:34.361173"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:34.361902"], ["updated_at", "2023-02-03 19:43:34.361902"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.362734"], ["updated_at", "2023-02-03 19:43:34.362734"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.363520"], ["updated_at", "2023-02-03 19:43:34.363520"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.364260"], ["updated_at", "2023-02-03 19:43:34.364260"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.364985"], ["updated_at", "2023-02-03 19:43:34.364985"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.365686"], ["updated_at", "2023-02-03 19:43:34.365686"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.366426"], ["updated_at", "2023-02-03 19:43:34.366426"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.367154"], ["updated_at", "2023-02-03 19:43:34.367154"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.367894"], ["updated_at", "2023-02-03 19:43:34.367894"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.368611"], ["updated_at", "2023-02-03 19:43:34.368611"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.369344"], ["updated_at", "2023-02-03 19:43:34.369344"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.370058"], ["updated_at", "2023-02-03 19:43:34.370058"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.370801"], ["updated_at", "2023-02-03 19:43:34.370801"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.386031"], ["updated_at", "2023-02-03 19:43:34.386031"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.387121"], ["updated_at", "2023-02-03 19:43:34.387121"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.387967"], ["updated_at", "2023-02-03 19:43:34.387967"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.388677"], ["updated_at", "2023-02-03 19:43:34.388677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.389439"], ["updated_at", "2023-02-03 19:43:34.389439"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.390244"], ["updated_at", "2023-02-03 19:43:34.390244"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.390962"], ["updated_at", "2023-02-03 19:43:34.390962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.391656"], ["updated_at", "2023-02-03 19:43:34.391656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.392336"], ["updated_at", "2023-02-03 19:43:34.392336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.393033"], ["updated_at", "2023-02-03 19:43:34.393033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.393738"], ["updated_at", "2023-02-03 19:43:34.393738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.394446"], ["updated_at", "2023-02-03 19:43:34.394446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.395120"], ["updated_at", "2023-02-03 19:43:34.395120"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.395807"], ["updated_at", "2023-02-03 19:43:34.395807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.396487"], ["updated_at", "2023-02-03 19:43:34.396487"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.397183"], ["updated_at", "2023-02-03 19:43:34.397183"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.412227"], ["updated_at", "2023-02-03 19:43:34.412227"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.413271"], ["updated_at", "2023-02-03 19:43:34.413271"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.414035"], ["updated_at", "2023-02-03 19:43:34.414035"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.414742"], ["updated_at", "2023-02-03 19:43:34.414742"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.415532"], ["updated_at", "2023-02-03 19:43:34.415532"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.416248"], ["updated_at", "2023-02-03 19:43:34.416248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.416973"], ["updated_at", "2023-02-03 19:43:34.416973"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.417695"], ["updated_at", "2023-02-03 19:43:34.417695"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.418408"], ["updated_at", "2023-02-03 19:43:34.418408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.419114"], ["updated_at", "2023-02-03 19:43:34.419114"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.419823"], ["updated_at", "2023-02-03 19:43:34.419823"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.420516"], ["updated_at", "2023-02-03 19:43:34.420516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.421232"], ["updated_at", "2023-02-03 19:43:34.421232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.421934"], ["updated_at", "2023-02-03 19:43:34.421934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.422647"], ["updated_at", "2023-02-03 19:43:34.422647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.423368"], ["updated_at", "2023-02-03 19:43:34.423368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.438405"], ["updated_at", "2023-02-03 19:43:34.438405"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.439387"], ["updated_at", "2023-02-03 19:43:34.439387"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.440134"], ["updated_at", "2023-02-03 19:43:34.440134"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.440809"], ["updated_at", "2023-02-03 19:43:34.440809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.441561"], ["updated_at", "2023-02-03 19:43:34.441561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.442305"], ["updated_at", "2023-02-03 19:43:34.442305"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.443022"], ["updated_at", "2023-02-03 19:43:34.443022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.443713"], ["updated_at", "2023-02-03 19:43:34.443713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.444428"], ["updated_at", "2023-02-03 19:43:34.444428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.445121"], ["updated_at", "2023-02-03 19:43:34.445121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.445796"], ["updated_at", "2023-02-03 19:43:34.445796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.446501"], ["updated_at", "2023-02-03 19:43:34.446501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.447194"], ["updated_at", "2023-02-03 19:43:34.447194"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.447881"], ["updated_at", "2023-02-03 19:43:34.447881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.448581"], ["updated_at", "2023-02-03 19:43:34.448581"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.449277"], ["updated_at", "2023-02-03 19:43:34.449277"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.464139"], ["updated_at", "2023-02-03 19:43:34.464139"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.465117"], ["updated_at", "2023-02-03 19:43:34.465117"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.465876"], ["updated_at", "2023-02-03 19:43:34.465876"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.466600"], ["updated_at", "2023-02-03 19:43:34.466600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.467345"], ["updated_at", "2023-02-03 19:43:34.467345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.468072"], ["updated_at", "2023-02-03 19:43:34.468072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.468772"], ["updated_at", "2023-02-03 19:43:34.468772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.469473"], ["updated_at", "2023-02-03 19:43:34.469473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.470182"], ["updated_at", "2023-02-03 19:43:34.470182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.470812"], ["updated_at", "2023-02-03 19:43:34.470812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.471523"], ["updated_at", "2023-02-03 19:43:34.471523"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.472228"], ["updated_at", "2023-02-03 19:43:34.472228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.472905"], ["updated_at", "2023-02-03 19:43:34.472905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.473598"], ["updated_at", "2023-02-03 19:43:34.473598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.474303"], ["updated_at", "2023-02-03 19:43:34.474303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.474996"], ["updated_at", "2023-02-03 19:43:34.474996"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.489892"], ["updated_at", "2023-02-03 19:43:34.489892"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.490833"], ["updated_at", "2023-02-03 19:43:34.490833"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.491571"], ["updated_at", "2023-02-03 19:43:34.491571"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.492256"], ["updated_at", "2023-02-03 19:43:34.492256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.492985"], ["updated_at", "2023-02-03 19:43:34.492985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.493697"], ["updated_at", "2023-02-03 19:43:34.493697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.494407"], ["updated_at", "2023-02-03 19:43:34.494407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.495107"], ["updated_at", "2023-02-03 19:43:34.495107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.495817"], ["updated_at", "2023-02-03 19:43:34.495817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.496534"], ["updated_at", "2023-02-03 19:43:34.496534"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.497208"], ["updated_at", "2023-02-03 19:43:34.497208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.497907"], ["updated_at", "2023-02-03 19:43:34.497907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.498599"], ["updated_at", "2023-02-03 19:43:34.498599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.499273"], ["updated_at", "2023-02-03 19:43:34.499273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.499964"], ["updated_at", "2023-02-03 19:43:34.499964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.500657"], ["updated_at", "2023-02-03 19:43:34.500657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.515385"], ["updated_at", "2023-02-03 19:43:34.515385"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.516350"], ["updated_at", "2023-02-03 19:43:34.516350"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.517103"], ["updated_at", "2023-02-03 19:43:34.517103"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.517817"], ["updated_at", "2023-02-03 19:43:34.517817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.518582"], ["updated_at", "2023-02-03 19:43:34.518582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.519290"], ["updated_at", "2023-02-03 19:43:34.519290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.519991"], ["updated_at", "2023-02-03 19:43:34.519991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.520687"], ["updated_at", "2023-02-03 19:43:34.520687"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.521402"], ["updated_at", "2023-02-03 19:43:34.521402"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.522096"], ["updated_at", "2023-02-03 19:43:34.522096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.522800"], ["updated_at", "2023-02-03 19:43:34.522800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.523491"], ["updated_at", "2023-02-03 19:43:34.523491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.524166"], ["updated_at", "2023-02-03 19:43:34.524166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.524857"], ["updated_at", "2023-02-03 19:43:34.524857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.525539"], ["updated_at", "2023-02-03 19:43:34.525539"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.526259"], ["updated_at", "2023-02-03 19:43:34.526259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-03 16:43:34 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 15ms (Views: 10.5ms | ActiveRecord: 0.4ms | Allocations: 9579)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:34.549778"], ["updated_at", "2023-02-03 19:43:34.549778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-03 19:43:34.551282"], ["updated_at", "2023-02-03 19:43:34.551282"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-03 19:43:34.554015"], ["updated_at", "2023-02-03 19:43:34.554015"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-03 19:43:34.555199"], ["updated_at", "2023-02-03 19:43:34.555199"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-03 19:43:34.557783"], ["updated_at", "2023-02-03 19:43:34.557783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-03 19:43:34.558961"], ["updated_at", "2023-02-03 19:43:34.558961"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-03 19:43:34.560955"], ["updated_at", "2023-02-03 19:43:34.560955"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-03 19:43:34.562353"], ["updated_at", "2023-02-03 19:43:34.562353"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-03 19:43:34.563884"], ["updated_at", "2023-02-03 19:43:34.563884"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-03 19:43:34.565150"], ["updated_at", "2023-02-03 19:43:34.565150"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-03 19:43:34.566542"], ["updated_at", "2023-02-03 19:43:34.566542"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-03 19:43:34.567738"], ["updated_at", "2023-02-03 19:43:34.567738"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-03 19:43:34.569081"], ["updated_at", "2023-02-03 19:43:34.569081"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-03 19:43:34.570254"], ["updated_at", "2023-02-03 19:43:34.570254"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-03 19:43:34.571616"], ["updated_at", "2023-02-03 19:43:34.571616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-03 19:43:34.572762"], ["updated_at", "2023-02-03 19:43:34.572762"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-03 19:43:34.574099"], ["updated_at", "2023-02-03 19:43:34.574099"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-03 19:43:34.575255"], ["updated_at", "2023-02-03 19:43:34.575255"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-03 19:43:34.576605"], ["updated_at", "2023-02-03 19:43:34.576605"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-03 19:43:34.577756"], ["updated_at", "2023-02-03 19:43:34.577756"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-03 19:43:34.579107"], ["updated_at", "2023-02-03 19:43:34.579107"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-03 19:43:34.580248"], ["updated_at", "2023-02-03 19:43:34.580248"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-03 19:43:34.581575"], ["updated_at", "2023-02-03 19:43:34.581575"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-03 19:43:34.582770"], ["updated_at", "2023-02-03 19:43:34.582770"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-03 19:43:34.584103"], ["updated_at", "2023-02-03 19:43:34.584103"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-03 19:43:34.585267"], ["updated_at", "2023-02-03 19:43:34.585267"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-03 19:43:34.586656"], ["updated_at", "2023-02-03 19:43:34.586656"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-03 19:43:34.587833"], ["updated_at", "2023-02-03 19:43:34.587833"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-03 19:43:34.589202"], ["updated_at", "2023-02-03 19:43:34.589202"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-03 19:43:34.590396"], ["updated_at", "2023-02-03 19:43:34.590396"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-03 19:43:34.591741"], ["updated_at", "2023-02-03 19:43:34.591741"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-03 19:43:34.592915"], ["updated_at", "2023-02-03 19:43:34.592915"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-03 19:43:34.594276"], ["updated_at", "2023-02-03 19:43:34.594276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-03 19:43:34.595448"], ["updated_at", "2023-02-03 19:43:34.595448"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-03 19:43:34.596809"], ["updated_at", "2023-02-03 19:43:34.596809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-03 19:43:34.597988"], ["updated_at", "2023-02-03 19:43:34.597988"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-03 19:43:34.599320"], ["updated_at", "2023-02-03 19:43:34.599320"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-03 19:43:34.600469"], ["updated_at", "2023-02-03 19:43:34.600469"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-03 19:43:34.601794"], ["updated_at", "2023-02-03 19:43:34.601794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-03 19:43:34.602976"], ["updated_at", "2023-02-03 19:43:34.602976"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-03 19:43:34.604320"], ["updated_at", "2023-02-03 19:43:34.604320"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-03 19:43:34.605490"], ["updated_at", "2023-02-03 19:43:34.605490"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-03 19:43:34.606848"], ["updated_at", "2023-02-03 19:43:34.606848"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-03 19:43:34.608027"], ["updated_at", "2023-02-03 19:43:34.608027"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-03 19:43:34.609358"], ["updated_at", "2023-02-03 19:43:34.609358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-03 19:43:34.610538"], ["updated_at", "2023-02-03 19:43:34.610538"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-03 19:43:34.611923"], ["updated_at", "2023-02-03 19:43:34.611923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-03 19:43:34.613089"], ["updated_at", "2023-02-03 19:43:34.613089"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-03 19:43:34.614430"], ["updated_at", "2023-02-03 19:43:34.614430"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-03 19:43:34.615590"], ["updated_at", "2023-02-03 19:43:34.615590"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-03 19:43:34.616916"], ["updated_at", "2023-02-03 19:43:34.616916"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-03 19:43:34.618094"], ["updated_at", "2023-02-03 19:43:34.618094"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-03 19:43:34.619451"], ["updated_at", "2023-02-03 19:43:34.619451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-03 19:43:34.620635"], ["updated_at", "2023-02-03 19:43:34.620635"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-03 19:43:34.622165"], ["updated_at", "2023-02-03 19:43:34.622165"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-03 19:43:34.623414"], ["updated_at", "2023-02-03 19:43:34.623414"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-03 19:43:34.624891"], ["updated_at", "2023-02-03 19:43:34.624891"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-03 19:43:34.626148"], ["updated_at", "2023-02-03 19:43:34.626148"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-03 19:43:34.627526"], ["updated_at", "2023-02-03 19:43:34.627526"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-03 19:43:34.628769"], ["updated_at", "2023-02-03 19:43:34.628769"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-03 19:43:34.630137"], ["updated_at", "2023-02-03 19:43:34.630137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-03 19:43:34.631320"], ["updated_at", "2023-02-03 19:43:34.631320"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-03 19:43:34.632690"], ["updated_at", "2023-02-03 19:43:34.632690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-03 19:43:34.633874"], ["updated_at", "2023-02-03 19:43:34.633874"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-03 19:43:34.635240"], ["updated_at", "2023-02-03 19:43:34.635240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-03 19:43:34.636410"], ["updated_at", "2023-02-03 19:43:34.636410"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-03 19:43:34.637779"], ["updated_at", "2023-02-03 19:43:34.637779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-03 19:43:34.639021"], ["updated_at", "2023-02-03 19:43:34.639021"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-03 19:43:34.640414"], ["updated_at", "2023-02-03 19:43:34.640414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-03 19:43:34.641594"], ["updated_at", "2023-02-03 19:43:34.641594"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-03 19:43:34.643008"], ["updated_at", "2023-02-03 19:43:34.643008"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-03 19:43:34.644189"], ["updated_at", "2023-02-03 19:43:34.644189"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-03 19:43:34.645547"], ["updated_at", "2023-02-03 19:43:34.645547"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-03 19:43:34.646747"], ["updated_at", "2023-02-03 19:43:34.646747"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-03 19:43:34.648097"], ["updated_at", "2023-02-03 19:43:34.648097"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-03 19:43:34.649284"], ["updated_at", "2023-02-03 19:43:34.649284"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-03 19:43:34.650662"], ["updated_at", "2023-02-03 19:43:34.650662"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-03 19:43:34.651826"], ["updated_at", "2023-02-03 19:43:34.651826"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-03 19:43:34.653200"], ["updated_at", "2023-02-03 19:43:34.653200"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-03 19:43:34.654417"], ["updated_at", "2023-02-03 19:43:34.654417"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-03 19:43:34.655806"], ["updated_at", "2023-02-03 19:43:34.655806"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-03 19:43:34.656975"], ["updated_at", "2023-02-03 19:43:34.656975"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-03 19:43:34.658360"], ["updated_at", "2023-02-03 19:43:34.658360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-03 19:43:34.659552"], ["updated_at", "2023-02-03 19:43:34.659552"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-03 19:43:34.660903"], ["updated_at", "2023-02-03 19:43:34.660903"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-03 19:43:34.662172"], ["updated_at", "2023-02-03 19:43:34.662172"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-03 19:43:34.663729"], ["updated_at", "2023-02-03 19:43:34.663729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-03 19:43:34.665088"], ["updated_at", "2023-02-03 19:43:34.665088"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-03 19:43:34.666680"], ["updated_at", "2023-02-03 19:43:34.666680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-03 19:43:34.668098"], ["updated_at", "2023-02-03 19:43:34.668098"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-03 19:43:34.669700"], ["updated_at", "2023-02-03 19:43:34.669700"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-03 19:43:34.671189"], ["updated_at", "2023-02-03 19:43:34.671189"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-03 19:43:34.672815"], ["updated_at", "2023-02-03 19:43:34.672815"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-03 19:43:34.674231"], ["updated_at", "2023-02-03 19:43:34.674231"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-03 19:43:34.675827"], ["updated_at", "2023-02-03 19:43:34.675827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-03 19:43:34.677119"], ["updated_at", "2023-02-03 19:43:34.677119"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-03 19:43:34.678563"], ["updated_at", "2023-02-03 19:43:34.678563"], ["role_id", 19]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-03 19:43:34.680212"], ["updated_at", "2023-02-03 19:43:34.680212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-03 19:43:34.681905"], ["updated_at", "2023-02-03 19:43:34.681905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-03 19:43:34.683280"], ["updated_at", "2023-02-03 19:43:34.683280"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-03 19:43:34.684445"], ["updated_at", "2023-02-03 19:43:34.684445"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:34.696660"], ["updated_at", "2023-02-03 19:43:34.696660"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:34.698171"], ["updated_at", "2023-02-03 19:43:34.698171"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:34.699255"], ["updated_at", "2023-02-03 19:43:34.699255"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.700165"], ["updated_at", "2023-02-03 19:43:34.700165"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.700991"], ["updated_at", "2023-02-03 19:43:34.700991"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.701733"], ["updated_at", "2023-02-03 19:43:34.701733"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.702516"], ["updated_at", "2023-02-03 19:43:34.702516"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.703404"], ["updated_at", "2023-02-03 19:43:34.703404"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:34.704373"], ["updated_at", "2023-02-03 19:43:34.704373"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.705489"], ["updated_at", "2023-02-03 19:43:34.705489"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.706555"], ["updated_at", "2023-02-03 19:43:34.706555"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.707495"], ["updated_at", "2023-02-03 19:43:34.707495"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.708418"], ["updated_at", "2023-02-03 19:43:34.708418"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.709351"], ["updated_at", "2023-02-03 19:43:34.709351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.710302"], ["updated_at", "2023-02-03 19:43:34.710302"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.711256"], ["updated_at", "2023-02-03 19:43:34.711256"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.712180"], ["updated_at", "2023-02-03 19:43:34.712180"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.713109"], ["updated_at", "2023-02-03 19:43:34.713109"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.713976"], ["updated_at", "2023-02-03 19:43:34.713976"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.714810"], ["updated_at", "2023-02-03 19:43:34.714810"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.715618"], ["updated_at", "2023-02-03 19:43:34.715618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:34.726960"], ["updated_at", "2023-02-03 19:43:34.726960"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:34.728250"], ["updated_at", "2023-02-03 19:43:34.728250"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:34.729117"], ["updated_at", "2023-02-03 19:43:34.729117"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:34.729945"], ["updated_at", "2023-02-03 19:43:34.729945"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:34.730726"], ["updated_at", "2023-02-03 19:43:34.730726"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:34.731475"], ["updated_at", "2023-02-03 19:43:34.731475"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:34.732187"], ["updated_at", "2023-02-03 19:43:34.732187"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:34.732843"], ["updated_at", "2023-02-03 19:43:34.732843"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:34.733555"], ["updated_at", "2023-02-03 19:43:34.733555"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.734422"], ["updated_at", "2023-02-03 19:43:34.734422"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.735256"], ["updated_at", "2023-02-03 19:43:34.735256"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.736058"], ["updated_at", "2023-02-03 19:43:34.736058"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.736792"], ["updated_at", "2023-02-03 19:43:34.736792"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.737533"], ["updated_at", "2023-02-03 19:43:34.737533"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.738330"], ["updated_at", "2023-02-03 19:43:34.738330"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.739195"], ["updated_at", "2023-02-03 19:43:34.739195"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.746829"], ["updated_at", "2023-02-03 19:43:34.746829"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.747743"], ["updated_at", "2023-02-03 19:43:34.747743"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.748497"], ["updated_at", "2023-02-03 19:43:34.748497"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.749217"], ["updated_at", "2023-02-03 19:43:34.749217"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:34.749951"], ["updated_at", "2023-02-03 19:43:34.749951"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.764780"], ["updated_at", "2023-02-03 19:43:34.764780"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.765810"], ["updated_at", "2023-02-03 19:43:34.765810"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.766603"], ["updated_at", "2023-02-03 19:43:34.766603"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.767258"], ["updated_at", "2023-02-03 19:43:34.767258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.767990"], ["updated_at", "2023-02-03 19:43:34.767990"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.768710"], ["updated_at", "2023-02-03 19:43:34.768710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.769383"], ["updated_at", "2023-02-03 19:43:34.769383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.770097"], ["updated_at", "2023-02-03 19:43:34.770097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.770786"], ["updated_at", "2023-02-03 19:43:34.770786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.771488"], ["updated_at", "2023-02-03 19:43:34.771488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.772197"], ["updated_at", "2023-02-03 19:43:34.772197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.772936"], ["updated_at", "2023-02-03 19:43:34.772936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.773599"], ["updated_at", "2023-02-03 19:43:34.773599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.774269"], ["updated_at", "2023-02-03 19:43:34.774269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.774902"], ["updated_at", "2023-02-03 19:43:34.774902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:34.775548"], ["updated_at", "2023-02-03 19:43:34.775548"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.789704"], ["updated_at", "2023-02-03 19:43:34.789704"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.790655"], ["updated_at", "2023-02-03 19:43:34.790655"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.791386"], ["updated_at", "2023-02-03 19:43:34.791386"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.792099"], ["updated_at", "2023-02-03 19:43:34.792099"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.792913"], ["updated_at", "2023-02-03 19:43:34.792913"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.793612"], ["updated_at", "2023-02-03 19:43:34.793612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.794293"], ["updated_at", "2023-02-03 19:43:34.794293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.794933"], ["updated_at", "2023-02-03 19:43:34.794933"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.795573"], ["updated_at", "2023-02-03 19:43:34.795573"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.796205"], ["updated_at", "2023-02-03 19:43:34.796205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.796842"], ["updated_at", "2023-02-03 19:43:34.796842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.797471"], ["updated_at", "2023-02-03 19:43:34.797471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.798126"], ["updated_at", "2023-02-03 19:43:34.798126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.798770"], ["updated_at", "2023-02-03 19:43:34.798770"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.799392"], ["updated_at", "2023-02-03 19:43:34.799392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:34.800044"], ["updated_at", "2023-02-03 19:43:34.800044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.814421"], ["updated_at", "2023-02-03 19:43:34.814421"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.815415"], ["updated_at", "2023-02-03 19:43:34.815415"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.816131"], ["updated_at", "2023-02-03 19:43:34.816131"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.816770"], ["updated_at", "2023-02-03 19:43:34.816770"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.817462"], ["updated_at", "2023-02-03 19:43:34.817462"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.818152"], ["updated_at", "2023-02-03 19:43:34.818152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.818851"], ["updated_at", "2023-02-03 19:43:34.818851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.819558"], ["updated_at", "2023-02-03 19:43:34.819558"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.820275"], ["updated_at", "2023-02-03 19:43:34.820275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.820995"], ["updated_at", "2023-02-03 19:43:34.820995"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.821644"], ["updated_at", "2023-02-03 19:43:34.821644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.822341"], ["updated_at", "2023-02-03 19:43:34.822341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.823077"], ["updated_at", "2023-02-03 19:43:34.823077"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.823745"], ["updated_at", "2023-02-03 19:43:34.823745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.824443"], ["updated_at", "2023-02-03 19:43:34.824443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:34.825106"], ["updated_at", "2023-02-03 19:43:34.825106"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.839304"], ["updated_at", "2023-02-03 19:43:34.839304"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.840281"], ["updated_at", "2023-02-03 19:43:34.840281"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.841086"], ["updated_at", "2023-02-03 19:43:34.841086"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.841782"], ["updated_at", "2023-02-03 19:43:34.841782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.842550"], ["updated_at", "2023-02-03 19:43:34.842550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.843297"], ["updated_at", "2023-02-03 19:43:34.843297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.844034"], ["updated_at", "2023-02-03 19:43:34.844034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.844669"], ["updated_at", "2023-02-03 19:43:34.844669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.845324"], ["updated_at", "2023-02-03 19:43:34.845324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.845985"], ["updated_at", "2023-02-03 19:43:34.845985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.846684"], ["updated_at", "2023-02-03 19:43:34.846684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.847422"], ["updated_at", "2023-02-03 19:43:34.847422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.848127"], ["updated_at", "2023-02-03 19:43:34.848127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.848846"], ["updated_at", "2023-02-03 19:43:34.848846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.849539"], ["updated_at", "2023-02-03 19:43:34.849539"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:34.850238"], ["updated_at", "2023-02-03 19:43:34.850238"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.864496"], ["updated_at", "2023-02-03 19:43:34.864496"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.865419"], ["updated_at", "2023-02-03 19:43:34.865419"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.866155"], ["updated_at", "2023-02-03 19:43:34.866155"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.866810"], ["updated_at", "2023-02-03 19:43:34.866810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.867526"], ["updated_at", "2023-02-03 19:43:34.867526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.868227"], ["updated_at", "2023-02-03 19:43:34.868227"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.868881"], ["updated_at", "2023-02-03 19:43:34.868881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.869524"], ["updated_at", "2023-02-03 19:43:34.869524"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.870185"], ["updated_at", "2023-02-03 19:43:34.870185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.870846"], ["updated_at", "2023-02-03 19:43:34.870846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.871479"], ["updated_at", "2023-02-03 19:43:34.871479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.872111"], ["updated_at", "2023-02-03 19:43:34.872111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.872761"], ["updated_at", "2023-02-03 19:43:34.872761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.873456"], ["updated_at", "2023-02-03 19:43:34.873456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.874201"], ["updated_at", "2023-02-03 19:43:34.874201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:34.874856"], ["updated_at", "2023-02-03 19:43:34.874856"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:34.890103"], ["updated_at", "2023-02-03 19:43:34.890103"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:34.891111"], ["updated_at", "2023-02-03 19:43:34.891111"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:34.891875"], ["updated_at", "2023-02-03 19:43:34.891875"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:34.892568"], ["updated_at", "2023-02-03 19:43:34.892568"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.893308"], ["updated_at", "2023-02-03 19:43:34.893308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.894021"], ["updated_at", "2023-02-03 19:43:34.894021"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.894717"], ["updated_at", "2023-02-03 19:43:34.894717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.895433"], ["updated_at", "2023-02-03 19:43:34.895433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.896130"], ["updated_at", "2023-02-03 19:43:34.896130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.896804"], ["updated_at", "2023-02-03 19:43:34.896804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.897486"], ["updated_at", "2023-02-03 19:43:34.897486"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.898186"], ["updated_at", "2023-02-03 19:43:34.898186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.898904"], ["updated_at", "2023-02-03 19:43:34.898904"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.899606"], ["updated_at", "2023-02-03 19:43:34.899606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.900314"], ["updated_at", "2023-02-03 19:43:34.900314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:34.900984"], ["updated_at", "2023-02-03 19:43:34.900984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-03 16:43:34 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:34.918147"], ["updated_at", "2023-02-03 19:43:34.918147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-03 19:43:34.919623"], ["updated_at", "2023-02-03 19:43:34.919623"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-03 19:43:34.922406"], ["updated_at", "2023-02-03 19:43:34.922406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-03 19:43:34.923601"], ["updated_at", "2023-02-03 19:43:34.923601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-03 19:43:34.926206"], ["updated_at", "2023-02-03 19:43:34.926206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-03 19:43:34.927383"], ["updated_at", "2023-02-03 19:43:34.927383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-03 19:43:34.929426"], ["updated_at", "2023-02-03 19:43:34.929426"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-03 19:43:34.930871"], ["updated_at", "2023-02-03 19:43:34.930871"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-03 19:43:34.932434"], ["updated_at", "2023-02-03 19:43:34.932434"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-03 19:43:34.933725"], ["updated_at", "2023-02-03 19:43:34.933725"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-03 19:43:34.935164"], ["updated_at", "2023-02-03 19:43:34.935164"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-03 19:43:34.936347"], ["updated_at", "2023-02-03 19:43:34.936347"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-03 19:43:34.937707"], ["updated_at", "2023-02-03 19:43:34.937707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-03 19:43:34.938936"], ["updated_at", "2023-02-03 19:43:34.938936"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-03 19:43:34.940280"], ["updated_at", "2023-02-03 19:43:34.940280"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-03 19:43:34.941446"], ["updated_at", "2023-02-03 19:43:34.941446"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-03 19:43:34.942836"], ["updated_at", "2023-02-03 19:43:34.942836"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-03 19:43:34.943994"], ["updated_at", "2023-02-03 19:43:34.943994"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-03 19:43:34.945332"], ["updated_at", "2023-02-03 19:43:34.945332"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-03 19:43:34.946510"], ["updated_at", "2023-02-03 19:43:34.946510"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-03 19:43:34.947838"], ["updated_at", "2023-02-03 19:43:34.947838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-03 19:43:34.949003"], ["updated_at", "2023-02-03 19:43:34.949003"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-03 19:43:34.950349"], ["updated_at", "2023-02-03 19:43:34.950349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-03 19:43:34.951532"], ["updated_at", "2023-02-03 19:43:34.951532"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-03 19:43:34.952887"], ["updated_at", "2023-02-03 19:43:34.952887"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-03 19:43:34.954051"], ["updated_at", "2023-02-03 19:43:34.954051"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-03 19:43:34.955419"], ["updated_at", "2023-02-03 19:43:34.955419"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-03 19:43:34.956600"], ["updated_at", "2023-02-03 19:43:34.956600"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-03 19:43:34.957957"], ["updated_at", "2023-02-03 19:43:34.957957"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-03 19:43:34.959141"], ["updated_at", "2023-02-03 19:43:34.959141"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-03 19:43:34.960482"], ["updated_at", "2023-02-03 19:43:34.960482"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-03 19:43:34.961658"], ["updated_at", "2023-02-03 19:43:34.961658"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-03 19:43:34.963026"], ["updated_at", "2023-02-03 19:43:34.963026"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-03 19:43:34.964194"], ["updated_at", "2023-02-03 19:43:34.964194"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-03 19:43:34.965538"], ["updated_at", "2023-02-03 19:43:34.965538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-03 19:43:34.966713"], ["updated_at", "2023-02-03 19:43:34.966713"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-03 19:43:34.968084"], ["updated_at", "2023-02-03 19:43:34.968084"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-03 19:43:34.969251"], ["updated_at", "2023-02-03 19:43:34.969251"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-03 19:43:34.970618"], ["updated_at", "2023-02-03 19:43:34.970618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-03 19:43:34.971834"], ["updated_at", "2023-02-03 19:43:34.971834"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-03 19:43:34.973169"], ["updated_at", "2023-02-03 19:43:34.973169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-03 19:43:34.974361"], ["updated_at", "2023-02-03 19:43:34.974361"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-03 19:43:34.975714"], ["updated_at", "2023-02-03 19:43:34.975714"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-03 19:43:34.976868"], ["updated_at", "2023-02-03 19:43:34.976868"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-03 19:43:34.978220"], ["updated_at", "2023-02-03 19:43:34.978220"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-03 19:43:34.979416"], ["updated_at", "2023-02-03 19:43:34.979416"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-03 19:43:34.980757"], ["updated_at", "2023-02-03 19:43:34.980757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-03 19:43:34.981953"], ["updated_at", "2023-02-03 19:43:34.981953"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-03 19:43:34.983322"], ["updated_at", "2023-02-03 19:43:34.983322"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-03 19:43:34.984516"], ["updated_at", "2023-02-03 19:43:34.984516"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-03 19:43:34.985884"], ["updated_at", "2023-02-03 19:43:34.985884"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-03 19:43:34.987086"], ["updated_at", "2023-02-03 19:43:34.987086"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-03 19:43:34.988469"], ["updated_at", "2023-02-03 19:43:34.988469"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-03 19:43:34.989642"], ["updated_at", "2023-02-03 19:43:34.989642"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-03 19:43:34.991039"], ["updated_at", "2023-02-03 19:43:34.991039"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-03 19:43:34.992210"], ["updated_at", "2023-02-03 19:43:34.992210"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-03 19:43:34.993564"], ["updated_at", "2023-02-03 19:43:34.993564"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-03 19:43:34.994758"], ["updated_at", "2023-02-03 19:43:34.994758"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-03 19:43:34.996110"], ["updated_at", "2023-02-03 19:43:34.996110"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-03 19:43:34.997269"], ["updated_at", "2023-02-03 19:43:34.997269"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-03 19:43:34.998674"], ["updated_at", "2023-02-03 19:43:34.998674"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-03 19:43:34.999843"], ["updated_at", "2023-02-03 19:43:34.999843"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-03 19:43:35.001204"], ["updated_at", "2023-02-03 19:43:35.001204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.002387"], ["updated_at", "2023-02-03 19:43:35.002387"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-03 19:43:35.003727"], ["updated_at", "2023-02-03 19:43:35.003727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-03 19:43:35.004915"], ["updated_at", "2023-02-03 19:43:35.004915"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-03 19:43:35.006270"], ["updated_at", "2023-02-03 19:43:35.006270"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-03 19:43:35.007500"], ["updated_at", "2023-02-03 19:43:35.007500"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-03 19:43:35.008864"], ["updated_at", "2023-02-03 19:43:35.008864"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.010091"], ["updated_at", "2023-02-03 19:43:35.010091"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-03 19:43:35.011460"], ["updated_at", "2023-02-03 19:43:35.011460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-03 19:43:35.012635"], ["updated_at", "2023-02-03 19:43:35.012635"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-03 19:43:35.013991"], ["updated_at", "2023-02-03 19:43:35.013991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-03 19:43:35.015286"], ["updated_at", "2023-02-03 19:43:35.015286"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-03 19:43:35.016708"], ["updated_at", "2023-02-03 19:43:35.016708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-03 19:43:35.017954"], ["updated_at", "2023-02-03 19:43:35.017954"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-03 19:43:35.019381"], ["updated_at", "2023-02-03 19:43:35.019381"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-03 19:43:35.020562"], ["updated_at", "2023-02-03 19:43:35.020562"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-03 19:43:35.021960"], ["updated_at", "2023-02-03 19:43:35.021960"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-03 19:43:35.023171"], ["updated_at", "2023-02-03 19:43:35.023171"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-03 19:43:35.024540"], ["updated_at", "2023-02-03 19:43:35.024540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.025775"], ["updated_at", "2023-02-03 19:43:35.025775"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-03 19:43:35.027186"], ["updated_at", "2023-02-03 19:43:35.027186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-03 19:43:35.028359"], ["updated_at", "2023-02-03 19:43:35.028359"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-03 19:43:35.029717"], ["updated_at", "2023-02-03 19:43:35.029717"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-03 19:43:35.030915"], ["updated_at", "2023-02-03 19:43:35.030915"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-03 19:43:35.032269"], ["updated_at", "2023-02-03 19:43:35.032269"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-03 19:43:35.033441"], ["updated_at", "2023-02-03 19:43:35.033441"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-03 19:43:35.034827"], ["updated_at", "2023-02-03 19:43:35.034827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-03 19:43:35.036000"], ["updated_at", "2023-02-03 19:43:35.036000"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-03 19:43:35.037355"], ["updated_at", "2023-02-03 19:43:35.037355"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-03 19:43:35.038561"], ["updated_at", "2023-02-03 19:43:35.038561"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-03 19:43:35.039934"], ["updated_at", "2023-02-03 19:43:35.039934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-03 19:43:35.041108"], ["updated_at", "2023-02-03 19:43:35.041108"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-03 19:43:35.042486"], ["updated_at", "2023-02-03 19:43:35.042486"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-03 19:43:35.043562"], ["updated_at", "2023-02-03 19:43:35.043562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-03 19:43:35.044762"], ["updated_at", "2023-02-03 19:43:35.044762"], ["role_id", 19]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-03 19:43:35.046123"], ["updated_at", "2023-02-03 19:43:35.046123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-03 19:43:35.047597"], ["updated_at", "2023-02-03 19:43:35.047597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-03 19:43:35.048716"], ["updated_at", "2023-02-03 19:43:35.048716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-03 19:43:35.049707"], ["updated_at", "2023-02-03 19:43:35.049707"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:35.060468"], ["updated_at", "2023-02-03 19:43:35.060468"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:35.061776"], ["updated_at", "2023-02-03 19:43:35.061776"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:35.062777"], ["updated_at", "2023-02-03 19:43:35.062777"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.063650"], ["updated_at", "2023-02-03 19:43:35.063650"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.064419"], ["updated_at", "2023-02-03 19:43:35.064419"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.065110"], ["updated_at", "2023-02-03 19:43:35.065110"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.065823"], ["updated_at", "2023-02-03 19:43:35.065823"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.066512"], ["updated_at", "2023-02-03 19:43:35.066512"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:35.067257"], ["updated_at", "2023-02-03 19:43:35.067257"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.068104"], ["updated_at", "2023-02-03 19:43:35.068104"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.068927"], ["updated_at", "2023-02-03 19:43:35.068927"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.069681"], ["updated_at", "2023-02-03 19:43:35.069681"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.070418"], ["updated_at", "2023-02-03 19:43:35.070418"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.071164"], ["updated_at", "2023-02-03 19:43:35.071164"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.071899"], ["updated_at", "2023-02-03 19:43:35.071899"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.072619"], ["updated_at", "2023-02-03 19:43:35.072619"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.073333"], ["updated_at", "2023-02-03 19:43:35.073333"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.074071"], ["updated_at", "2023-02-03 19:43:35.074071"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.074784"], ["updated_at", "2023-02-03 19:43:35.074784"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.075505"], ["updated_at", "2023-02-03 19:43:35.075505"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.076249"], ["updated_at", "2023-02-03 19:43:35.076249"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:35.087130"], ["updated_at", "2023-02-03 19:43:35.087130"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:35.088377"], ["updated_at", "2023-02-03 19:43:35.088377"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:35.089280"], ["updated_at", "2023-02-03 19:43:35.089280"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.090109"], ["updated_at", "2023-02-03 19:43:35.090109"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.090878"], ["updated_at", "2023-02-03 19:43:35.090878"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.091571"], ["updated_at", "2023-02-03 19:43:35.091571"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.092230"], ["updated_at", "2023-02-03 19:43:35.092230"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.092928"], ["updated_at", "2023-02-03 19:43:35.092928"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:35.093677"], ["updated_at", "2023-02-03 19:43:35.093677"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.094530"], ["updated_at", "2023-02-03 19:43:35.094530"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.095327"], ["updated_at", "2023-02-03 19:43:35.095327"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.096058"], ["updated_at", "2023-02-03 19:43:35.096058"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.096807"], ["updated_at", "2023-02-03 19:43:35.096807"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.097531"], ["updated_at", "2023-02-03 19:43:35.097531"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.098273"], ["updated_at", "2023-02-03 19:43:35.098273"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.098998"], ["updated_at", "2023-02-03 19:43:35.098998"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.099728"], ["updated_at", "2023-02-03 19:43:35.099728"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.100451"], ["updated_at", "2023-02-03 19:43:35.100451"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.101170"], ["updated_at", "2023-02-03 19:43:35.101170"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.101898"], ["updated_at", "2023-02-03 19:43:35.101898"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.102608"], ["updated_at", "2023-02-03 19:43:35.102608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.117924"], ["updated_at", "2023-02-03 19:43:35.117924"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.119014"], ["updated_at", "2023-02-03 19:43:35.119014"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.119846"], ["updated_at", "2023-02-03 19:43:35.119846"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.120555"], ["updated_at", "2023-02-03 19:43:35.120555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.121324"], ["updated_at", "2023-02-03 19:43:35.121324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.122145"], ["updated_at", "2023-02-03 19:43:35.122145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.122873"], ["updated_at", "2023-02-03 19:43:35.122873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.123576"], ["updated_at", "2023-02-03 19:43:35.123576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.124253"], ["updated_at", "2023-02-03 19:43:35.124253"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.124947"], ["updated_at", "2023-02-03 19:43:35.124947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.125629"], ["updated_at", "2023-02-03 19:43:35.125629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.126337"], ["updated_at", "2023-02-03 19:43:35.126337"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.127022"], ["updated_at", "2023-02-03 19:43:35.127022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.127697"], ["updated_at", "2023-02-03 19:43:35.127697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.128383"], ["updated_at", "2023-02-03 19:43:35.128383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.129070"], ["updated_at", "2023-02-03 19:43:35.129070"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.143995"], ["updated_at", "2023-02-03 19:43:35.143995"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.144970"], ["updated_at", "2023-02-03 19:43:35.144970"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.145721"], ["updated_at", "2023-02-03 19:43:35.145721"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.146449"], ["updated_at", "2023-02-03 19:43:35.146449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.147205"], ["updated_at", "2023-02-03 19:43:35.147205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.147918"], ["updated_at", "2023-02-03 19:43:35.147918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.148626"], ["updated_at", "2023-02-03 19:43:35.148626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.149315"], ["updated_at", "2023-02-03 19:43:35.149315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.150034"], ["updated_at", "2023-02-03 19:43:35.150034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.150725"], ["updated_at", "2023-02-03 19:43:35.150725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.151442"], ["updated_at", "2023-02-03 19:43:35.151442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.152134"], ["updated_at", "2023-02-03 19:43:35.152134"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.152815"], ["updated_at", "2023-02-03 19:43:35.152815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.153514"], ["updated_at", "2023-02-03 19:43:35.153514"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.154234"], ["updated_at", "2023-02-03 19:43:35.154234"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.154943"], ["updated_at", "2023-02-03 19:43:35.154943"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.170058"], ["updated_at", "2023-02-03 19:43:35.170058"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.171067"], ["updated_at", "2023-02-03 19:43:35.171067"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.171833"], ["updated_at", "2023-02-03 19:43:35.171833"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.172509"], ["updated_at", "2023-02-03 19:43:35.172509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.173265"], ["updated_at", "2023-02-03 19:43:35.173265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.173999"], ["updated_at", "2023-02-03 19:43:35.173999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.174686"], ["updated_at", "2023-02-03 19:43:35.174686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.175392"], ["updated_at", "2023-02-03 19:43:35.175392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.176098"], ["updated_at", "2023-02-03 19:43:35.176098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.176815"], ["updated_at", "2023-02-03 19:43:35.176815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.177518"], ["updated_at", "2023-02-03 19:43:35.177518"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.178220"], ["updated_at", "2023-02-03 19:43:35.178220"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.178905"], ["updated_at", "2023-02-03 19:43:35.178905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.179591"], ["updated_at", "2023-02-03 19:43:35.179591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.180280"], ["updated_at", "2023-02-03 19:43:35.180280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.180973"], ["updated_at", "2023-02-03 19:43:35.180973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.195903"], ["updated_at", "2023-02-03 19:43:35.195903"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.196900"], ["updated_at", "2023-02-03 19:43:35.196900"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.197637"], ["updated_at", "2023-02-03 19:43:35.197637"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.198345"], ["updated_at", "2023-02-03 19:43:35.198345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.199098"], ["updated_at", "2023-02-03 19:43:35.199098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.199810"], ["updated_at", "2023-02-03 19:43:35.199810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.200518"], ["updated_at", "2023-02-03 19:43:35.200518"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.201219"], ["updated_at", "2023-02-03 19:43:35.201219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.201912"], ["updated_at", "2023-02-03 19:43:35.201912"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.202614"], ["updated_at", "2023-02-03 19:43:35.202614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.203302"], ["updated_at", "2023-02-03 19:43:35.203302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.203989"], ["updated_at", "2023-02-03 19:43:35.203989"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.204690"], ["updated_at", "2023-02-03 19:43:35.204690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.205364"], ["updated_at", "2023-02-03 19:43:35.205364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.206066"], ["updated_at", "2023-02-03 19:43:35.206066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.206764"], ["updated_at", "2023-02-03 19:43:35.206764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.224026"], ["updated_at", "2023-02-03 19:43:35.224026"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.225073"], ["updated_at", "2023-02-03 19:43:35.225073"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.225862"], ["updated_at", "2023-02-03 19:43:35.225862"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.226580"], ["updated_at", "2023-02-03 19:43:35.226580"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.227353"], ["updated_at", "2023-02-03 19:43:35.227353"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.228086"], ["updated_at", "2023-02-03 19:43:35.228086"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.229123"], ["updated_at", "2023-02-03 19:43:35.229123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.230100"], ["updated_at", "2023-02-03 19:43:35.230100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.230978"], ["updated_at", "2023-02-03 19:43:35.230978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.231750"], ["updated_at", "2023-02-03 19:43:35.231750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.232446"], ["updated_at", "2023-02-03 19:43:35.232446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.233123"], ["updated_at", "2023-02-03 19:43:35.233123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.233834"], ["updated_at", "2023-02-03 19:43:35.233834"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.234547"], ["updated_at", "2023-02-03 19:43:35.234547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.235251"], ["updated_at", "2023-02-03 19:43:35.235251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.235920"], ["updated_at", "2023-02-03 19:43:35.235920"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.252513"], ["updated_at", "2023-02-03 19:43:35.252513"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.253505"], ["updated_at", "2023-02-03 19:43:35.253505"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.254445"], ["updated_at", "2023-02-03 19:43:35.254445"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.255460"], ["updated_at", "2023-02-03 19:43:35.255460"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.256298"], ["updated_at", "2023-02-03 19:43:35.256298"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.257006"], ["updated_at", "2023-02-03 19:43:35.257006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.257732"], ["updated_at", "2023-02-03 19:43:35.257732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.258478"], ["updated_at", "2023-02-03 19:43:35.258478"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.259169"], ["updated_at", "2023-02-03 19:43:35.259169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.259861"], ["updated_at", "2023-02-03 19:43:35.259861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.260572"], ["updated_at", "2023-02-03 19:43:35.260572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.261263"], ["updated_at", "2023-02-03 19:43:35.261263"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.262225"], ["updated_at", "2023-02-03 19:43:35.262225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.263236"], ["updated_at", "2023-02-03 19:43:35.263236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.263993"], ["updated_at", "2023-02-03 19:43:35.263993"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.264687"], ["updated_at", "2023-02-03 19:43:35.264687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-03 16:43:35 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:35.273417"], ["updated_at", "2023-02-03 19:43:35.273417"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-03 19:43:35.274988"], ["updated_at", "2023-02-03 19:43:35.274988"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-03 19:43:35.277746"], ["updated_at", "2023-02-03 19:43:35.277746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-03 19:43:35.278982"], ["updated_at", "2023-02-03 19:43:35.278982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-03 19:43:35.281737"], ["updated_at", "2023-02-03 19:43:35.281737"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-03 19:43:35.282949"], ["updated_at", "2023-02-03 19:43:35.282949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-03 19:43:35.284997"], ["updated_at", "2023-02-03 19:43:35.284997"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-03 19:43:35.286407"], ["updated_at", "2023-02-03 19:43:35.286407"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-03 19:43:35.288230"], ["updated_at", "2023-02-03 19:43:35.288230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-03 19:43:35.289787"], ["updated_at", "2023-02-03 19:43:35.289787"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-03 19:43:35.291268"], ["updated_at", "2023-02-03 19:43:35.291268"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-03 19:43:35.292493"], ["updated_at", "2023-02-03 19:43:35.292493"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-03 19:43:35.293873"], ["updated_at", "2023-02-03 19:43:35.293873"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-03 19:43:35.295065"], ["updated_at", "2023-02-03 19:43:35.295065"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-03 19:43:35.296451"], ["updated_at", "2023-02-03 19:43:35.296451"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-03 19:43:35.298150"], ["updated_at", "2023-02-03 19:43:35.298150"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-03 19:43:35.299978"], ["updated_at", "2023-02-03 19:43:35.299978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-03 19:43:35.301256"], ["updated_at", "2023-02-03 19:43:35.301256"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-03 19:43:35.302647"], ["updated_at", "2023-02-03 19:43:35.302647"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-03 19:43:35.303845"], ["updated_at", "2023-02-03 19:43:35.303845"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-03 19:43:35.305620"], ["updated_at", "2023-02-03 19:43:35.305620"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-03 19:43:35.306906"], ["updated_at", "2023-02-03 19:43:35.306906"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-03 19:43:35.308330"], ["updated_at", "2023-02-03 19:43:35.308330"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-03 19:43:35.309528"], ["updated_at", "2023-02-03 19:43:35.309528"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-03 19:43:35.310913"], ["updated_at", "2023-02-03 19:43:35.310913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-03 19:43:35.312217"], ["updated_at", "2023-02-03 19:43:35.312217"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-03 19:43:35.313850"], ["updated_at", "2023-02-03 19:43:35.313850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-03 19:43:35.315420"], ["updated_at", "2023-02-03 19:43:35.315420"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-03 19:43:35.316839"], ["updated_at", "2023-02-03 19:43:35.316839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-03 19:43:35.318043"], ["updated_at", "2023-02-03 19:43:35.318043"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-03 19:43:35.319421"], ["updated_at", "2023-02-03 19:43:35.319421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-03 19:43:35.320628"], ["updated_at", "2023-02-03 19:43:35.320628"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-03 19:43:35.322425"], ["updated_at", "2023-02-03 19:43:35.322425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-03 19:43:35.323735"], ["updated_at", "2023-02-03 19:43:35.323735"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-03 19:43:35.325209"], ["updated_at", "2023-02-03 19:43:35.325209"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-03 19:43:35.326625"], ["updated_at", "2023-02-03 19:43:35.326625"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-03 19:43:35.328182"], ["updated_at", "2023-02-03 19:43:35.328182"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-03 19:43:35.329599"], ["updated_at", "2023-02-03 19:43:35.329599"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-03 19:43:35.331015"], ["updated_at", "2023-02-03 19:43:35.331015"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-03 19:43:35.332189"], ["updated_at", "2023-02-03 19:43:35.332189"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-03 19:43:35.333524"], ["updated_at", "2023-02-03 19:43:35.333524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-03 19:43:35.334729"], ["updated_at", "2023-02-03 19:43:35.334729"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-03 19:43:35.336071"], ["updated_at", "2023-02-03 19:43:35.336071"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.337282"], ["updated_at", "2023-02-03 19:43:35.337282"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-03 19:43:35.339076"], ["updated_at", "2023-02-03 19:43:35.339076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-03 19:43:35.340332"], ["updated_at", "2023-02-03 19:43:35.340332"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-03 19:43:35.341762"], ["updated_at", "2023-02-03 19:43:35.341762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-03 19:43:35.342976"], ["updated_at", "2023-02-03 19:43:35.342976"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-03 19:43:35.344314"], ["updated_at", "2023-02-03 19:43:35.344314"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-03 19:43:35.345482"], ["updated_at", "2023-02-03 19:43:35.345482"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-03 19:43:35.347255"], ["updated_at", "2023-02-03 19:43:35.347255"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-03 19:43:35.348630"], ["updated_at", "2023-02-03 19:43:35.348630"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-03 19:43:35.350027"], ["updated_at", "2023-02-03 19:43:35.350027"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-03 19:43:35.351205"], ["updated_at", "2023-02-03 19:43:35.351205"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-03 19:43:35.352631"], ["updated_at", "2023-02-03 19:43:35.352631"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-03 19:43:35.353867"], ["updated_at", "2023-02-03 19:43:35.353867"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-03 19:43:35.355661"], ["updated_at", "2023-02-03 19:43:35.355661"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-03 19:43:35.356952"], ["updated_at", "2023-02-03 19:43:35.356952"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-03 19:43:35.358385"], ["updated_at", "2023-02-03 19:43:35.358385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-03 19:43:35.359613"], ["updated_at", "2023-02-03 19:43:35.359613"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-03 19:43:35.360983"], ["updated_at", "2023-02-03 19:43:35.360983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-03 19:43:35.362197"], ["updated_at", "2023-02-03 19:43:35.362197"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-03 19:43:35.363825"], ["updated_at", "2023-02-03 19:43:35.363825"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.365325"], ["updated_at", "2023-02-03 19:43:35.365325"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-03 19:43:35.366750"], ["updated_at", "2023-02-03 19:43:35.366750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-03 19:43:35.367987"], ["updated_at", "2023-02-03 19:43:35.367987"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-03 19:43:35.369333"], ["updated_at", "2023-02-03 19:43:35.369333"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-03 19:43:35.370542"], ["updated_at", "2023-02-03 19:43:35.370542"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-03 19:43:35.372347"], ["updated_at", "2023-02-03 19:43:35.372347"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.373604"], ["updated_at", "2023-02-03 19:43:35.373604"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-03 19:43:35.375042"], ["updated_at", "2023-02-03 19:43:35.375042"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-03 19:43:35.376431"], ["updated_at", "2023-02-03 19:43:35.376431"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-03 19:43:35.377897"], ["updated_at", "2023-02-03 19:43:35.377897"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-03 19:43:35.379268"], ["updated_at", "2023-02-03 19:43:35.379268"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-03 19:43:35.380982"], ["updated_at", "2023-02-03 19:43:35.380982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-03 19:43:35.382218"], ["updated_at", "2023-02-03 19:43:35.382218"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-03 19:43:35.383601"], ["updated_at", "2023-02-03 19:43:35.383601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-03 19:43:35.384792"], ["updated_at", "2023-02-03 19:43:35.384792"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-03 19:43:35.386139"], ["updated_at", "2023-02-03 19:43:35.386139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-03 19:43:35.387359"], ["updated_at", "2023-02-03 19:43:35.387359"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-03 19:43:35.389151"], ["updated_at", "2023-02-03 19:43:35.389151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.390413"], ["updated_at", "2023-02-03 19:43:35.390413"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-03 19:43:35.391822"], ["updated_at", "2023-02-03 19:43:35.391822"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-03 19:43:35.393028"], ["updated_at", "2023-02-03 19:43:35.393028"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-03 19:43:35.394408"], ["updated_at", "2023-02-03 19:43:35.394408"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-03 19:43:35.395582"], ["updated_at", "2023-02-03 19:43:35.395582"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-03 19:43:35.397058"], ["updated_at", "2023-02-03 19:43:35.397058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-03 19:43:35.398669"], ["updated_at", "2023-02-03 19:43:35.398669"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-03 19:43:35.400113"], ["updated_at", "2023-02-03 19:43:35.400113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-03 19:43:35.401314"], ["updated_at", "2023-02-03 19:43:35.401314"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-03 19:43:35.402703"], ["updated_at", "2023-02-03 19:43:35.402703"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-03 19:43:35.403954"], ["updated_at", "2023-02-03 19:43:35.403954"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-03 19:43:35.405757"], ["updated_at", "2023-02-03 19:43:35.405757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-03 19:43:35.407095"], ["updated_at", "2023-02-03 19:43:35.407095"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-03 19:43:35.409063"], ["updated_at", "2023-02-03 19:43:35.409063"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-03 19:43:35.410632"], ["updated_at", "2023-02-03 19:43:35.410632"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-03 19:43:35.412356"], ["updated_at", "2023-02-03 19:43:35.412356"], ["role_id", 19]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-03 19:43:35.414310"], ["updated_at", "2023-02-03 19:43:35.414310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-03 19:43:35.416189"], ["updated_at", "2023-02-03 19:43:35.416189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-03 19:43:35.417386"], ["updated_at", "2023-02-03 19:43:35.417386"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-03 19:43:35.418431"], ["updated_at", "2023-02-03 19:43:35.418431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:35.430432"], ["updated_at", "2023-02-03 19:43:35.430432"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:35.431871"], ["updated_at", "2023-02-03 19:43:35.431871"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:35.432879"], ["updated_at", "2023-02-03 19:43:35.432879"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.433729"], ["updated_at", "2023-02-03 19:43:35.433729"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.434559"], ["updated_at", "2023-02-03 19:43:35.434559"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.435269"], ["updated_at", "2023-02-03 19:43:35.435269"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.435971"], ["updated_at", "2023-02-03 19:43:35.435971"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.436656"], ["updated_at", "2023-02-03 19:43:35.436656"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:35.437501"], ["updated_at", "2023-02-03 19:43:35.437501"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.438721"], ["updated_at", "2023-02-03 19:43:35.438721"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.439683"], ["updated_at", "2023-02-03 19:43:35.439683"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.440456"], ["updated_at", "2023-02-03 19:43:35.440456"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.441225"], ["updated_at", "2023-02-03 19:43:35.441225"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.442001"], ["updated_at", "2023-02-03 19:43:35.442001"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.442744"], ["updated_at", "2023-02-03 19:43:35.442744"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.443658"], ["updated_at", "2023-02-03 19:43:35.443658"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.444588"], ["updated_at", "2023-02-03 19:43:35.444588"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.445623"], ["updated_at", "2023-02-03 19:43:35.445623"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.446490"], ["updated_at", "2023-02-03 19:43:35.446490"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.447240"], ["updated_at", "2023-02-03 19:43:35.447240"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.448014"], ["updated_at", "2023-02-03 19:43:35.448014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:35.460240"], ["updated_at", "2023-02-03 19:43:35.460240"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:35.461849"], ["updated_at", "2023-02-03 19:43:35.461849"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:35.463083"], ["updated_at", "2023-02-03 19:43:35.463083"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.464095"], ["updated_at", "2023-02-03 19:43:35.464095"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.464876"], ["updated_at", "2023-02-03 19:43:35.464876"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.465690"], ["updated_at", "2023-02-03 19:43:35.465690"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.466438"], ["updated_at", "2023-02-03 19:43:35.466438"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.467124"], ["updated_at", "2023-02-03 19:43:35.467124"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:35.467900"], ["updated_at", "2023-02-03 19:43:35.467900"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.468742"], ["updated_at", "2023-02-03 19:43:35.468742"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.469536"], ["updated_at", "2023-02-03 19:43:35.469536"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.470300"], ["updated_at", "2023-02-03 19:43:35.470300"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.471246"], ["updated_at", "2023-02-03 19:43:35.471246"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.472314"], ["updated_at", "2023-02-03 19:43:35.472314"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.473163"], ["updated_at", "2023-02-03 19:43:35.473163"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.473927"], ["updated_at", "2023-02-03 19:43:35.473927"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.474796"], ["updated_at", "2023-02-03 19:43:35.474796"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.475955"], ["updated_at", "2023-02-03 19:43:35.475955"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.477123"], ["updated_at", "2023-02-03 19:43:35.477123"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.478309"], ["updated_at", "2023-02-03 19:43:35.478309"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.479439"], ["updated_at", "2023-02-03 19:43:35.479439"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.498701"], ["updated_at", "2023-02-03 19:43:35.498701"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.499805"], ["updated_at", "2023-02-03 19:43:35.499805"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.500629"], ["updated_at", "2023-02-03 19:43:35.500629"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.501360"], ["updated_at", "2023-02-03 19:43:35.501360"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.502169"], ["updated_at", "2023-02-03 19:43:35.502169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.502979"], ["updated_at", "2023-02-03 19:43:35.502979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.503696"], ["updated_at", "2023-02-03 19:43:35.503696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.504610"], ["updated_at", "2023-02-03 19:43:35.504610"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.505652"], ["updated_at", "2023-02-03 19:43:35.505652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.506497"], ["updated_at", "2023-02-03 19:43:35.506497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.507255"], ["updated_at", "2023-02-03 19:43:35.507255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.508293"], ["updated_at", "2023-02-03 19:43:35.508293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.509446"], ["updated_at", "2023-02-03 19:43:35.509446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.510614"], ["updated_at", "2023-02-03 19:43:35.510614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.511723"], ["updated_at", "2023-02-03 19:43:35.511723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.512805"], ["updated_at", "2023-02-03 19:43:35.512805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.535130"], ["updated_at", "2023-02-03 19:43:35.535130"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.536131"], ["updated_at", "2023-02-03 19:43:35.536131"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.536873"], ["updated_at", "2023-02-03 19:43:35.536873"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.537730"], ["updated_at", "2023-02-03 19:43:35.537730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.538852"], ["updated_at", "2023-02-03 19:43:35.538852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.539710"], ["updated_at", "2023-02-03 19:43:35.539710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.540421"], ["updated_at", "2023-02-03 19:43:35.540421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.541279"], ["updated_at", "2023-02-03 19:43:35.541279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.542371"], ["updated_at", "2023-02-03 19:43:35.542371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.543481"], ["updated_at", "2023-02-03 19:43:35.543481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.544545"], ["updated_at", "2023-02-03 19:43:35.544545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.545486"], ["updated_at", "2023-02-03 19:43:35.545486"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.546297"], ["updated_at", "2023-02-03 19:43:35.546297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.547133"], ["updated_at", "2023-02-03 19:43:35.547133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.547854"], ["updated_at", "2023-02-03 19:43:35.547854"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.548549"], ["updated_at", "2023-02-03 19:43:35.548549"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.564280"], ["updated_at", "2023-02-03 19:43:35.564280"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.565267"], ["updated_at", "2023-02-03 19:43:35.565267"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.566029"], ["updated_at", "2023-02-03 19:43:35.566029"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.566787"], ["updated_at", "2023-02-03 19:43:35.566787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.567700"], ["updated_at", "2023-02-03 19:43:35.567700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.568465"], ["updated_at", "2023-02-03 19:43:35.568465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.569165"], ["updated_at", "2023-02-03 19:43:35.569165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.569883"], ["updated_at", "2023-02-03 19:43:35.569883"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.570628"], ["updated_at", "2023-02-03 19:43:35.570628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.571648"], ["updated_at", "2023-02-03 19:43:35.571648"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.572581"], ["updated_at", "2023-02-03 19:43:35.572581"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.573312"], ["updated_at", "2023-02-03 19:43:35.573312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.574032"], ["updated_at", "2023-02-03 19:43:35.574032"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.574767"], ["updated_at", "2023-02-03 19:43:35.574767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.575465"], ["updated_at", "2023-02-03 19:43:35.575465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.576166"], ["updated_at", "2023-02-03 19:43:35.576166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.591043"], ["updated_at", "2023-02-03 19:43:35.591043"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.592019"], ["updated_at", "2023-02-03 19:43:35.592019"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.592758"], ["updated_at", "2023-02-03 19:43:35.592758"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.593463"], ["updated_at", "2023-02-03 19:43:35.593463"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.594232"], ["updated_at", "2023-02-03 19:43:35.594232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.594935"], ["updated_at", "2023-02-03 19:43:35.594935"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.595628"], ["updated_at", "2023-02-03 19:43:35.595628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.596308"], ["updated_at", "2023-02-03 19:43:35.596308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.596991"], ["updated_at", "2023-02-03 19:43:35.596991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.597681"], ["updated_at", "2023-02-03 19:43:35.597681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.598386"], ["updated_at", "2023-02-03 19:43:35.598386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.599070"], ["updated_at", "2023-02-03 19:43:35.599070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.599748"], ["updated_at", "2023-02-03 19:43:35.599748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.600454"], ["updated_at", "2023-02-03 19:43:35.600454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.601164"], ["updated_at", "2023-02-03 19:43:35.601164"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.601872"], ["updated_at", "2023-02-03 19:43:35.601872"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.616804"], ["updated_at", "2023-02-03 19:43:35.616804"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.617790"], ["updated_at", "2023-02-03 19:43:35.617790"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.618545"], ["updated_at", "2023-02-03 19:43:35.618545"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.619235"], ["updated_at", "2023-02-03 19:43:35.619235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.619984"], ["updated_at", "2023-02-03 19:43:35.619984"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.620713"], ["updated_at", "2023-02-03 19:43:35.620713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.621423"], ["updated_at", "2023-02-03 19:43:35.621423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.622124"], ["updated_at", "2023-02-03 19:43:35.622124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.622812"], ["updated_at", "2023-02-03 19:43:35.622812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.623504"], ["updated_at", "2023-02-03 19:43:35.623504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.624199"], ["updated_at", "2023-02-03 19:43:35.624199"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.624909"], ["updated_at", "2023-02-03 19:43:35.624909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.625639"], ["updated_at", "2023-02-03 19:43:35.625639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.626370"], ["updated_at", "2023-02-03 19:43:35.626370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.627061"], ["updated_at", "2023-02-03 19:43:35.627061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.627749"], ["updated_at", "2023-02-03 19:43:35.627749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.642633"], ["updated_at", "2023-02-03 19:43:35.642633"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.643618"], ["updated_at", "2023-02-03 19:43:35.643618"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.644376"], ["updated_at", "2023-02-03 19:43:35.644376"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.645066"], ["updated_at", "2023-02-03 19:43:35.645066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.645826"], ["updated_at", "2023-02-03 19:43:35.645826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.646554"], ["updated_at", "2023-02-03 19:43:35.646554"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.647252"], ["updated_at", "2023-02-03 19:43:35.647252"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.647965"], ["updated_at", "2023-02-03 19:43:35.647965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.648664"], ["updated_at", "2023-02-03 19:43:35.648664"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.649354"], ["updated_at", "2023-02-03 19:43:35.649354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.650041"], ["updated_at", "2023-02-03 19:43:35.650041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.650731"], ["updated_at", "2023-02-03 19:43:35.650731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.651419"], ["updated_at", "2023-02-03 19:43:35.651419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.652087"], ["updated_at", "2023-02-03 19:43:35.652087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.652771"], ["updated_at", "2023-02-03 19:43:35.652771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:35.653458"], ["updated_at", "2023-02-03 19:43:35.653458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-03 16:43:35 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:35.662512"], ["updated_at", "2023-02-03 19:43:35.662512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-03 19:43:35.663970"], ["updated_at", "2023-02-03 19:43:35.663970"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-03 19:43:35.666727"], ["updated_at", "2023-02-03 19:43:35.666727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-03 19:43:35.667897"], ["updated_at", "2023-02-03 19:43:35.667897"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-03 19:43:35.670539"], ["updated_at", "2023-02-03 19:43:35.670539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-03 19:43:35.671724"], ["updated_at", "2023-02-03 19:43:35.671724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-03 19:43:35.673743"], ["updated_at", "2023-02-03 19:43:35.673743"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-03 19:43:35.675146"], ["updated_at", "2023-02-03 19:43:35.675146"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-03 19:43:35.676669"], ["updated_at", "2023-02-03 19:43:35.676669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-03 19:43:35.677940"], ["updated_at", "2023-02-03 19:43:35.677940"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-03 19:43:35.679323"], ["updated_at", "2023-02-03 19:43:35.679323"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-03 19:43:35.680480"], ["updated_at", "2023-02-03 19:43:35.680480"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-03 19:43:35.681817"], ["updated_at", "2023-02-03 19:43:35.681817"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-03 19:43:35.683009"], ["updated_at", "2023-02-03 19:43:35.683009"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-03 19:43:35.684392"], ["updated_at", "2023-02-03 19:43:35.684392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-03 19:43:35.685551"], ["updated_at", "2023-02-03 19:43:35.685551"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-03 19:43:35.686901"], ["updated_at", "2023-02-03 19:43:35.686901"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-03 19:43:35.688072"], ["updated_at", "2023-02-03 19:43:35.688072"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-03 19:43:35.689411"], ["updated_at", "2023-02-03 19:43:35.689411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-03 19:43:35.690582"], ["updated_at", "2023-02-03 19:43:35.690582"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-03 19:43:35.691944"], ["updated_at", "2023-02-03 19:43:35.691944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-03 19:43:35.693099"], ["updated_at", "2023-02-03 19:43:35.693099"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-03 19:43:35.694451"], ["updated_at", "2023-02-03 19:43:35.694451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-03 19:43:35.695644"], ["updated_at", "2023-02-03 19:43:35.695644"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-03 19:43:35.696986"], ["updated_at", "2023-02-03 19:43:35.696986"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-03 19:43:35.698189"], ["updated_at", "2023-02-03 19:43:35.698189"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-03 19:43:35.699571"], ["updated_at", "2023-02-03 19:43:35.699571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-03 19:43:35.700767"], ["updated_at", "2023-02-03 19:43:35.700767"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-03 19:43:35.702126"], ["updated_at", "2023-02-03 19:43:35.702126"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-03 19:43:35.703287"], ["updated_at", "2023-02-03 19:43:35.703287"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-03 19:43:35.704625"], ["updated_at", "2023-02-03 19:43:35.704625"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-03 19:43:35.705775"], ["updated_at", "2023-02-03 19:43:35.705775"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-03 19:43:35.707135"], ["updated_at", "2023-02-03 19:43:35.707135"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-03 19:43:35.708578"], ["updated_at", "2023-02-03 19:43:35.708578"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-03 19:43:35.710051"], ["updated_at", "2023-02-03 19:43:35.710051"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-03 19:43:35.711235"], ["updated_at", "2023-02-03 19:43:35.711235"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-03 19:43:35.712587"], ["updated_at", "2023-02-03 19:43:35.712587"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-03 19:43:35.713758"], ["updated_at", "2023-02-03 19:43:35.713758"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-03 19:43:35.715141"], ["updated_at", "2023-02-03 19:43:35.715141"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-03 19:43:35.716304"], ["updated_at", "2023-02-03 19:43:35.716304"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-03 19:43:35.717637"], ["updated_at", "2023-02-03 19:43:35.717637"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-03 19:43:35.718864"], ["updated_at", "2023-02-03 19:43:35.718864"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-03 19:43:35.720261"], ["updated_at", "2023-02-03 19:43:35.720261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.721611"], ["updated_at", "2023-02-03 19:43:35.721611"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-03 19:43:35.723043"], ["updated_at", "2023-02-03 19:43:35.723043"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-03 19:43:35.724347"], ["updated_at", "2023-02-03 19:43:35.724347"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-03 19:43:35.726935"], ["updated_at", "2023-02-03 19:43:35.726935"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-03 19:43:35.728281"], ["updated_at", "2023-02-03 19:43:35.728281"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-03 19:43:35.729692"], ["updated_at", "2023-02-03 19:43:35.729692"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-03 19:43:35.730917"], ["updated_at", "2023-02-03 19:43:35.730917"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-03 19:43:35.732287"], ["updated_at", "2023-02-03 19:43:35.732287"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-03 19:43:35.733494"], ["updated_at", "2023-02-03 19:43:35.733494"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-03 19:43:35.734902"], ["updated_at", "2023-02-03 19:43:35.734902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-03 19:43:35.736088"], ["updated_at", "2023-02-03 19:43:35.736088"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-03 19:43:35.737549"], ["updated_at", "2023-02-03 19:43:35.737549"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-03 19:43:35.738863"], ["updated_at", "2023-02-03 19:43:35.738863"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-03 19:43:35.740265"], ["updated_at", "2023-02-03 19:43:35.740265"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-03 19:43:35.741769"], ["updated_at", "2023-02-03 19:43:35.741769"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-03 19:43:35.743501"], ["updated_at", "2023-02-03 19:43:35.743501"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-03 19:43:35.744733"], ["updated_at", "2023-02-03 19:43:35.744733"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-03 19:43:35.746098"], ["updated_at", "2023-02-03 19:43:35.746098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-03 19:43:35.747292"], ["updated_at", "2023-02-03 19:43:35.747292"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-03 19:43:35.748643"], ["updated_at", "2023-02-03 19:43:35.748643"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.749836"], ["updated_at", "2023-02-03 19:43:35.749836"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-03 19:43:35.751198"], ["updated_at", "2023-02-03 19:43:35.751198"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-03 19:43:35.752374"], ["updated_at", "2023-02-03 19:43:35.752374"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-03 19:43:35.753708"], ["updated_at", "2023-02-03 19:43:35.753708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-03 19:43:35.755060"], ["updated_at", "2023-02-03 19:43:35.755060"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-03 19:43:35.756481"], ["updated_at", "2023-02-03 19:43:35.756481"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.757738"], ["updated_at", "2023-02-03 19:43:35.757738"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-03 19:43:35.759560"], ["updated_at", "2023-02-03 19:43:35.759560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-03 19:43:35.760794"], ["updated_at", "2023-02-03 19:43:35.760794"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-03 19:43:35.762177"], ["updated_at", "2023-02-03 19:43:35.762177"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-03 19:43:35.763364"], ["updated_at", "2023-02-03 19:43:35.763364"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-03 19:43:35.764710"], ["updated_at", "2023-02-03 19:43:35.764710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-03 19:43:35.765897"], ["updated_at", "2023-02-03 19:43:35.765897"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-03 19:43:35.767231"], ["updated_at", "2023-02-03 19:43:35.767231"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-03 19:43:35.768425"], ["updated_at", "2023-02-03 19:43:35.768425"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-03 19:43:35.769791"], ["updated_at", "2023-02-03 19:43:35.769791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-03 19:43:35.771078"], ["updated_at", "2023-02-03 19:43:35.771078"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-03 19:43:35.772578"], ["updated_at", "2023-02-03 19:43:35.772578"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-03 19:43:35.773770"], ["updated_at", "2023-02-03 19:43:35.773770"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-03 19:43:35.775660"], ["updated_at", "2023-02-03 19:43:35.775660"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-03 19:43:35.777063"], ["updated_at", "2023-02-03 19:43:35.777063"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-03 19:43:35.778463"], ["updated_at", "2023-02-03 19:43:35.778463"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-03 19:43:35.779682"], ["updated_at", "2023-02-03 19:43:35.779682"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-03 19:43:35.781035"], ["updated_at", "2023-02-03 19:43:35.781035"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-03 19:43:35.782222"], ["updated_at", "2023-02-03 19:43:35.782222"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-03 19:43:35.783602"], ["updated_at", "2023-02-03 19:43:35.783602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-03 19:43:35.784776"], ["updated_at", "2023-02-03 19:43:35.784776"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-03 19:43:35.786174"], ["updated_at", "2023-02-03 19:43:35.786174"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-03 19:43:35.787391"], ["updated_at", "2023-02-03 19:43:35.787391"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-03 19:43:35.788911"], ["updated_at", "2023-02-03 19:43:35.788911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-03 19:43:35.790128"], ["updated_at", "2023-02-03 19:43:35.790128"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-03 19:43:35.791854"], ["updated_at", "2023-02-03 19:43:35.791854"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-03 19:43:35.793218"], ["updated_at", "2023-02-03 19:43:35.793218"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-03 19:43:35.794484"], ["updated_at", "2023-02-03 19:43:35.794484"], ["role_id", 19]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-03 19:43:35.795892"], ["updated_at", "2023-02-03 19:43:35.795892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-03 19:43:35.797365"], ["updated_at", "2023-02-03 19:43:35.797365"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-03 19:43:35.798513"], ["updated_at", "2023-02-03 19:43:35.798513"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-03 19:43:35.799533"], ["updated_at", "2023-02-03 19:43:35.799533"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:35.811060"], ["updated_at", "2023-02-03 19:43:35.811060"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:35.812393"], ["updated_at", "2023-02-03 19:43:35.812393"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:35.813361"], ["updated_at", "2023-02-03 19:43:35.813361"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.814242"], ["updated_at", "2023-02-03 19:43:35.814242"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.815014"], ["updated_at", "2023-02-03 19:43:35.815014"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.815711"], ["updated_at", "2023-02-03 19:43:35.815711"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.816377"], ["updated_at", "2023-02-03 19:43:35.816377"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.817061"], ["updated_at", "2023-02-03 19:43:35.817061"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:35.817827"], ["updated_at", "2023-02-03 19:43:35.817827"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.818692"], ["updated_at", "2023-02-03 19:43:35.818692"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.819515"], ["updated_at", "2023-02-03 19:43:35.819515"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.820236"], ["updated_at", "2023-02-03 19:43:35.820236"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.821072"], ["updated_at", "2023-02-03 19:43:35.821072"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.821896"], ["updated_at", "2023-02-03 19:43:35.821896"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.822643"], ["updated_at", "2023-02-03 19:43:35.822643"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.823361"], ["updated_at", "2023-02-03 19:43:35.823361"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.824295"], ["updated_at", "2023-02-03 19:43:35.824295"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.825421"], ["updated_at", "2023-02-03 19:43:35.825421"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.826351"], ["updated_at", "2023-02-03 19:43:35.826351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.827456"], ["updated_at", "2023-02-03 19:43:35.827456"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.828445"], ["updated_at", "2023-02-03 19:43:35.828445"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:35.839533"], ["updated_at", "2023-02-03 19:43:35.839533"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:35.840908"], ["updated_at", "2023-02-03 19:43:35.840908"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:35.842145"], ["updated_at", "2023-02-03 19:43:35.842145"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.843188"], ["updated_at", "2023-02-03 19:43:35.843188"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.843979"], ["updated_at", "2023-02-03 19:43:35.843979"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.844697"], ["updated_at", "2023-02-03 19:43:35.844697"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.845376"], ["updated_at", "2023-02-03 19:43:35.845376"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:35.846080"], ["updated_at", "2023-02-03 19:43:35.846080"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:35.846840"], ["updated_at", "2023-02-03 19:43:35.846840"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.847675"], ["updated_at", "2023-02-03 19:43:35.847675"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.848466"], ["updated_at", "2023-02-03 19:43:35.848466"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.849190"], ["updated_at", "2023-02-03 19:43:35.849190"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.849954"], ["updated_at", "2023-02-03 19:43:35.849954"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.850719"], ["updated_at", "2023-02-03 19:43:35.850719"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.851451"], ["updated_at", "2023-02-03 19:43:35.851451"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.852208"], ["updated_at", "2023-02-03 19:43:35.852208"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.852943"], ["updated_at", "2023-02-03 19:43:35.852943"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.853682"], ["updated_at", "2023-02-03 19:43:35.853682"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.854496"], ["updated_at", "2023-02-03 19:43:35.854496"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.855319"], ["updated_at", "2023-02-03 19:43:35.855319"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:35.856093"], ["updated_at", "2023-02-03 19:43:35.856093"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.873095"], ["updated_at", "2023-02-03 19:43:35.873095"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.874233"], ["updated_at", "2023-02-03 19:43:35.874233"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.875136"], ["updated_at", "2023-02-03 19:43:35.875136"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.875893"], ["updated_at", "2023-02-03 19:43:35.875893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.876707"], ["updated_at", "2023-02-03 19:43:35.876707"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.877508"], ["updated_at", "2023-02-03 19:43:35.877508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.878261"], ["updated_at", "2023-02-03 19:43:35.878261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.879284"], ["updated_at", "2023-02-03 19:43:35.879284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.880242"], ["updated_at", "2023-02-03 19:43:35.880242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.881006"], ["updated_at", "2023-02-03 19:43:35.881006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.881690"], ["updated_at", "2023-02-03 19:43:35.881690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.882419"], ["updated_at", "2023-02-03 19:43:35.882419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.883122"], ["updated_at", "2023-02-03 19:43:35.883122"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.883827"], ["updated_at", "2023-02-03 19:43:35.883827"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.884529"], ["updated_at", "2023-02-03 19:43:35.884529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:35.885230"], ["updated_at", "2023-02-03 19:43:35.885230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.903148"], ["updated_at", "2023-02-03 19:43:35.903148"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.904179"], ["updated_at", "2023-02-03 19:43:35.904179"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.905002"], ["updated_at", "2023-02-03 19:43:35.905002"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.905706"], ["updated_at", "2023-02-03 19:43:35.905706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.906483"], ["updated_at", "2023-02-03 19:43:35.906483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.907230"], ["updated_at", "2023-02-03 19:43:35.907230"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.908293"], ["updated_at", "2023-02-03 19:43:35.908293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.909409"], ["updated_at", "2023-02-03 19:43:35.909409"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.910540"], ["updated_at", "2023-02-03 19:43:35.910540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.911658"], ["updated_at", "2023-02-03 19:43:35.911658"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.912732"], ["updated_at", "2023-02-03 19:43:35.912732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.913786"], ["updated_at", "2023-02-03 19:43:35.913786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.914888"], ["updated_at", "2023-02-03 19:43:35.914888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.915916"], ["updated_at", "2023-02-03 19:43:35.915916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.916693"], ["updated_at", "2023-02-03 19:43:35.916693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:35.917378"], ["updated_at", "2023-02-03 19:43:35.917378"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.935590"], ["updated_at", "2023-02-03 19:43:35.935590"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.936570"], ["updated_at", "2023-02-03 19:43:35.936570"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.937357"], ["updated_at", "2023-02-03 19:43:35.937357"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.938126"], ["updated_at", "2023-02-03 19:43:35.938126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.938923"], ["updated_at", "2023-02-03 19:43:35.938923"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.939659"], ["updated_at", "2023-02-03 19:43:35.939659"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.940361"], ["updated_at", "2023-02-03 19:43:35.940361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.941242"], ["updated_at", "2023-02-03 19:43:35.941242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.942370"], ["updated_at", "2023-02-03 19:43:35.942370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.943491"], ["updated_at", "2023-02-03 19:43:35.943491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.944550"], ["updated_at", "2023-02-03 19:43:35.944550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.945656"], ["updated_at", "2023-02-03 19:43:35.945656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.946750"], ["updated_at", "2023-02-03 19:43:35.946750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.947722"], ["updated_at", "2023-02-03 19:43:35.947722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.948471"], ["updated_at", "2023-02-03 19:43:35.948471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:35.949189"], ["updated_at", "2023-02-03 19:43:35.949189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.964867"], ["updated_at", "2023-02-03 19:43:35.964867"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.965970"], ["updated_at", "2023-02-03 19:43:35.965970"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.966833"], ["updated_at", "2023-02-03 19:43:35.966833"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.967560"], ["updated_at", "2023-02-03 19:43:35.967560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.968332"], ["updated_at", "2023-02-03 19:43:35.968332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.969053"], ["updated_at", "2023-02-03 19:43:35.969053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.969738"], ["updated_at", "2023-02-03 19:43:35.969738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.970469"], ["updated_at", "2023-02-03 19:43:35.970469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.971233"], ["updated_at", "2023-02-03 19:43:35.971233"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.971971"], ["updated_at", "2023-02-03 19:43:35.971971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.972656"], ["updated_at", "2023-02-03 19:43:35.972656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.973375"], ["updated_at", "2023-02-03 19:43:35.973375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.974123"], ["updated_at", "2023-02-03 19:43:35.974123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.974900"], ["updated_at", "2023-02-03 19:43:35.974900"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.975682"], ["updated_at", "2023-02-03 19:43:35.975682"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:35.976398"], ["updated_at", "2023-02-03 19:43:35.976398"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:35.991784"], ["updated_at", "2023-02-03 19:43:35.991784"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:35.992803"], ["updated_at", "2023-02-03 19:43:35.992803"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:35.993578"], ["updated_at", "2023-02-03 19:43:35.993578"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:35.994301"], ["updated_at", "2023-02-03 19:43:35.994301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.995067"], ["updated_at", "2023-02-03 19:43:35.995067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.995816"], ["updated_at", "2023-02-03 19:43:35.995816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.996677"], ["updated_at", "2023-02-03 19:43:35.996677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.997758"], ["updated_at", "2023-02-03 19:43:35.997758"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.998642"], ["updated_at", "2023-02-03 19:43:35.998642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:35.999383"], ["updated_at", "2023-02-03 19:43:35.999383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.000067"], ["updated_at", "2023-02-03 19:43:36.000067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.000704"], ["updated_at", "2023-02-03 19:43:36.000704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.001354"], ["updated_at", "2023-02-03 19:43:36.001354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.002024"], ["updated_at", "2023-02-03 19:43:36.002024"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.002729"], ["updated_at", "2023-02-03 19:43:36.002729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.003475"], ["updated_at", "2023-02-03 19:43:36.003475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:36.018877"], ["updated_at", "2023-02-03 19:43:36.018877"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:36.019895"], ["updated_at", "2023-02-03 19:43:36.019895"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.020680"], ["updated_at", "2023-02-03 19:43:36.020680"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.021443"], ["updated_at", "2023-02-03 19:43:36.021443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.022237"], ["updated_at", "2023-02-03 19:43:36.022237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.022991"], ["updated_at", "2023-02-03 19:43:36.022991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.023709"], ["updated_at", "2023-02-03 19:43:36.023709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.024516"], ["updated_at", "2023-02-03 19:43:36.024516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.025350"], ["updated_at", "2023-02-03 19:43:36.025350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.026133"], ["updated_at", "2023-02-03 19:43:36.026133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.026876"], ["updated_at", "2023-02-03 19:43:36.026876"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.027591"], ["updated_at", "2023-02-03 19:43:36.027591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.028442"], ["updated_at", "2023-02-03 19:43:36.028442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.029346"], ["updated_at", "2023-02-03 19:43:36.029346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.030107"], ["updated_at", "2023-02-03 19:43:36.030107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.030835"], ["updated_at", "2023-02-03 19:43:36.030835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-03 16:43:36 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-03 19:43:36.040025"], ["updated_at", "2023-02-03 19:43:36.040025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-03 19:43:36.041581"], ["updated_at", "2023-02-03 19:43:36.041581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-03 19:43:36.044426"], ["updated_at", "2023-02-03 19:43:36.044426"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-03 19:43:36.045844"], ["updated_at", "2023-02-03 19:43:36.045844"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-03 19:43:36.048545"], ["updated_at", "2023-02-03 19:43:36.048545"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-03 19:43:36.049742"], ["updated_at", "2023-02-03 19:43:36.049742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-03 19:43:36.051831"], ["updated_at", "2023-02-03 19:43:36.051831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-03 19:43:36.053235"], ["updated_at", "2023-02-03 19:43:36.053235"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-03 19:43:36.054859"], ["updated_at", "2023-02-03 19:43:36.054859"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-03 19:43:36.056212"], ["updated_at", "2023-02-03 19:43:36.056212"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-03 19:43:36.057648"], ["updated_at", "2023-02-03 19:43:36.057648"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-03 19:43:36.059073"], ["updated_at", "2023-02-03 19:43:36.059073"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-03 19:43:36.060501"], ["updated_at", "2023-02-03 19:43:36.060501"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-03 19:43:36.061658"], ["updated_at", "2023-02-03 19:43:36.061658"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-03 19:43:36.063041"], ["updated_at", "2023-02-03 19:43:36.063041"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-03 19:43:36.064209"], ["updated_at", "2023-02-03 19:43:36.064209"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-03 19:43:36.065535"], ["updated_at", "2023-02-03 19:43:36.065535"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-03 19:43:36.066722"], ["updated_at", "2023-02-03 19:43:36.066722"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-03 19:43:36.068117"], ["updated_at", "2023-02-03 19:43:36.068117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-03 19:43:36.069289"], ["updated_at", "2023-02-03 19:43:36.069289"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-03 19:43:36.070651"], ["updated_at", "2023-02-03 19:43:36.070651"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-03 19:43:36.071858"], ["updated_at", "2023-02-03 19:43:36.071858"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-03 19:43:36.073227"], ["updated_at", "2023-02-03 19:43:36.073227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-03 19:43:36.074494"], ["updated_at", "2023-02-03 19:43:36.074494"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-03 19:43:36.075912"], ["updated_at", "2023-02-03 19:43:36.075912"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-03 19:43:36.077078"], ["updated_at", "2023-02-03 19:43:36.077078"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-03 19:43:36.078449"], ["updated_at", "2023-02-03 19:43:36.078449"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-03 19:43:36.079638"], ["updated_at", "2023-02-03 19:43:36.079638"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-03 19:43:36.080971"], ["updated_at", "2023-02-03 19:43:36.080971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-03 19:43:36.082166"], ["updated_at", "2023-02-03 19:43:36.082166"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-03 19:43:36.083516"], ["updated_at", "2023-02-03 19:43:36.083516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-03 19:43:36.084685"], ["updated_at", "2023-02-03 19:43:36.084685"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-03 19:43:36.086064"], ["updated_at", "2023-02-03 19:43:36.086064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-03 19:43:36.087266"], ["updated_at", "2023-02-03 19:43:36.087266"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-03 19:43:36.088658"], ["updated_at", "2023-02-03 19:43:36.088658"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-03 19:43:36.089868"], ["updated_at", "2023-02-03 19:43:36.089868"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-03 19:43:36.091491"], ["updated_at", "2023-02-03 19:43:36.091491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-03 19:43:36.092995"], ["updated_at", "2023-02-03 19:43:36.092995"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-03 19:43:36.094431"], ["updated_at", "2023-02-03 19:43:36.094431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-03 19:43:36.095616"], ["updated_at", "2023-02-03 19:43:36.095616"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-03 19:43:36.096988"], ["updated_at", "2023-02-03 19:43:36.096988"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-03 19:43:36.098206"], ["updated_at", "2023-02-03 19:43:36.098206"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-03 19:43:36.099562"], ["updated_at", "2023-02-03 19:43:36.099562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-03 19:43:36.100725"], ["updated_at", "2023-02-03 19:43:36.100725"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-03 19:43:36.102073"], ["updated_at", "2023-02-03 19:43:36.102073"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-03 19:43:36.103251"], ["updated_at", "2023-02-03 19:43:36.103251"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-03 19:43:36.104673"], ["updated_at", "2023-02-03 19:43:36.104673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-03 19:43:36.105917"], ["updated_at", "2023-02-03 19:43:36.105917"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-03 19:43:36.107399"], ["updated_at", "2023-02-03 19:43:36.107399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-03 19:43:36.108992"], ["updated_at", "2023-02-03 19:43:36.108992"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-03 19:43:36.110446"], ["updated_at", "2023-02-03 19:43:36.110446"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-03 19:43:36.111671"], ["updated_at", "2023-02-03 19:43:36.111671"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-03 19:43:36.113088"], ["updated_at", "2023-02-03 19:43:36.113088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-03 19:43:36.114315"], ["updated_at", "2023-02-03 19:43:36.114315"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-03 19:43:36.115721"], ["updated_at", "2023-02-03 19:43:36.115721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-03 19:43:36.116913"], ["updated_at", "2023-02-03 19:43:36.116913"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-03 19:43:36.118299"], ["updated_at", "2023-02-03 19:43:36.118299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-03 19:43:36.119477"], ["updated_at", "2023-02-03 19:43:36.119477"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-03 19:43:36.120842"], ["updated_at", "2023-02-03 19:43:36.120842"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-03 19:43:36.122102"], ["updated_at", "2023-02-03 19:43:36.122102"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-03 19:43:36.123468"], ["updated_at", "2023-02-03 19:43:36.123468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-03 19:43:36.124721"], ["updated_at", "2023-02-03 19:43:36.124721"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-03 19:43:36.126489"], ["updated_at", "2023-02-03 19:43:36.126489"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-03 19:43:36.127766"], ["updated_at", "2023-02-03 19:43:36.127766"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-03 19:43:36.129184"], ["updated_at", "2023-02-03 19:43:36.129184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-03 19:43:36.130440"], ["updated_at", "2023-02-03 19:43:36.130440"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-03 19:43:36.131805"], ["updated_at", "2023-02-03 19:43:36.131805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-03 19:43:36.132982"], ["updated_at", "2023-02-03 19:43:36.132982"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-03 19:43:36.134349"], ["updated_at", "2023-02-03 19:43:36.134349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-03 19:43:36.135557"], ["updated_at", "2023-02-03 19:43:36.135557"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-03 19:43:36.136940"], ["updated_at", "2023-02-03 19:43:36.136940"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-03 19:43:36.138229"], ["updated_at", "2023-02-03 19:43:36.138229"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-03 19:43:36.139630"], ["updated_at", "2023-02-03 19:43:36.139630"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-03 19:43:36.140812"], ["updated_at", "2023-02-03 19:43:36.140812"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-03 19:43:36.142579"], ["updated_at", "2023-02-03 19:43:36.142579"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-03 19:43:36.143905"], ["updated_at", "2023-02-03 19:43:36.143905"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-03 19:43:36.145335"], ["updated_at", "2023-02-03 19:43:36.145335"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-03 19:43:36.146578"], ["updated_at", "2023-02-03 19:43:36.146578"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-03 19:43:36.147980"], ["updated_at", "2023-02-03 19:43:36.147980"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-03 19:43:36.149146"], ["updated_at", "2023-02-03 19:43:36.149146"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-03 19:43:36.150499"], ["updated_at", "2023-02-03 19:43:36.150499"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-03 19:43:36.151703"], ["updated_at", "2023-02-03 19:43:36.151703"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-03 19:43:36.153081"], ["updated_at", "2023-02-03 19:43:36.153081"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-03 19:43:36.154337"], ["updated_at", "2023-02-03 19:43:36.154337"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-03 19:43:36.155785"], ["updated_at", "2023-02-03 19:43:36.155785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-03 19:43:36.156961"], ["updated_at", "2023-02-03 19:43:36.156961"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-03 19:43:36.158636"], ["updated_at", "2023-02-03 19:43:36.158636"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-03 19:43:36.160020"], ["updated_at", "2023-02-03 19:43:36.160020"], ["role_id", 18]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-03 19:43:36.161402"], ["updated_at", "2023-02-03 19:43:36.161402"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-03 19:43:36.162680"], ["updated_at", "2023-02-03 19:43:36.162680"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-03 19:43:36.164071"], ["updated_at", "2023-02-03 19:43:36.164071"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-03 19:43:36.165260"], ["updated_at", "2023-02-03 19:43:36.165260"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-03 19:43:36.166626"], ["updated_at", "2023-02-03 19:43:36.166626"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-03 19:43:36.167816"], ["updated_at", "2023-02-03 19:43:36.167816"], ["role_id", 18]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-03 19:43:36.169174"], ["updated_at", "2023-02-03 19:43:36.169174"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-03 19:43:36.170258"], ["updated_at", "2023-02-03 19:43:36.170258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-03 19:43:36.171551"], ["updated_at", "2023-02-03 19:43:36.171551"], ["role_id", 19]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-03 19:43:36.172946"], ["updated_at", "2023-02-03 19:43:36.172946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-03 19:43:36.174522"], ["updated_at", "2023-02-03 19:43:36.174522"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-03 19:43:36.175980"], ["updated_at", "2023-02-03 19:43:36.175980"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-03 19:43:36.177005"], ["updated_at", "2023-02-03 19:43:36.177005"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:36.187884"], ["updated_at", "2023-02-03 19:43:36.187884"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:36.189351"], ["updated_at", "2023-02-03 19:43:36.189351"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:36.190429"], ["updated_at", "2023-02-03 19:43:36.190429"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.191304"], ["updated_at", "2023-02-03 19:43:36.191304"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.192105"], ["updated_at", "2023-02-03 19:43:36.192105"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.192825"], ["updated_at", "2023-02-03 19:43:36.192825"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.193529"], ["updated_at", "2023-02-03 19:43:36.193529"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.194279"], ["updated_at", "2023-02-03 19:43:36.194279"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:36.195086"], ["updated_at", "2023-02-03 19:43:36.195086"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.195979"], ["updated_at", "2023-02-03 19:43:36.195979"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.197033"], ["updated_at", "2023-02-03 19:43:36.197033"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.198145"], ["updated_at", "2023-02-03 19:43:36.198145"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.198992"], ["updated_at", "2023-02-03 19:43:36.198992"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.199744"], ["updated_at", "2023-02-03 19:43:36.199744"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.200503"], ["updated_at", "2023-02-03 19:43:36.200503"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.201256"], ["updated_at", "2023-02-03 19:43:36.201256"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.201994"], ["updated_at", "2023-02-03 19:43:36.201994"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.202747"], ["updated_at", "2023-02-03 19:43:36.202747"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.203489"], ["updated_at", "2023-02-03 19:43:36.203489"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.204254"], ["updated_at", "2023-02-03 19:43:36.204254"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.205030"], ["updated_at", "2023-02-03 19:43:36.205030"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-03 19:43:36.216516"], ["updated_at", "2023-02-03 19:43:36.216516"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-03 19:43:36.217823"], ["updated_at", "2023-02-03 19:43:36.217823"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-03 19:43:36.218725"], ["updated_at", "2023-02-03 19:43:36.218725"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:36.219602"], ["updated_at", "2023-02-03 19:43:36.219602"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:36.220342"], ["updated_at", "2023-02-03 19:43:36.220342"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:36.221120"], ["updated_at", "2023-02-03 19:43:36.221120"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:36.221847"], ["updated_at", "2023-02-03 19:43:36.221847"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-03 19:43:36.222549"], ["updated_at", "2023-02-03 19:43:36.222549"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-03 19:43:36.223315"], ["updated_at", "2023-02-03 19:43:36.223315"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.224189"], ["updated_at", "2023-02-03 19:43:36.224189"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.225046"], ["updated_at", "2023-02-03 19:43:36.225046"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.225876"], ["updated_at", "2023-02-03 19:43:36.225876"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.226666"], ["updated_at", "2023-02-03 19:43:36.226666"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.227423"], ["updated_at", "2023-02-03 19:43:36.227423"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.228184"], ["updated_at", "2023-02-03 19:43:36.228184"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.228977"], ["updated_at", "2023-02-03 19:43:36.228977"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.229747"], ["updated_at", "2023-02-03 19:43:36.229747"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.230825"], ["updated_at", "2023-02-03 19:43:36.230825"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.231885"], ["updated_at", "2023-02-03 19:43:36.231885"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.232705"], ["updated_at", "2023-02-03 19:43:36.232705"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-03 19:43:36.233447"], ["updated_at", "2023-02-03 19:43:36.233447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:36.249806"], ["updated_at", "2023-02-03 19:43:36.249806"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:36.250939"], ["updated_at", "2023-02-03 19:43:36.250939"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.251807"], ["updated_at", "2023-02-03 19:43:36.251807"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.252538"], ["updated_at", "2023-02-03 19:43:36.252538"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.253318"], ["updated_at", "2023-02-03 19:43:36.253318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.254191"], ["updated_at", "2023-02-03 19:43:36.254191"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.254969"], ["updated_at", "2023-02-03 19:43:36.254969"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.255690"], ["updated_at", "2023-02-03 19:43:36.255690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.256394"], ["updated_at", "2023-02-03 19:43:36.256394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.257119"], ["updated_at", "2023-02-03 19:43:36.257119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.257863"], ["updated_at", "2023-02-03 19:43:36.257863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.258606"], ["updated_at", "2023-02-03 19:43:36.258606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.259324"], ["updated_at", "2023-02-03 19:43:36.259324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.260053"], ["updated_at", "2023-02-03 19:43:36.260053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.260768"], ["updated_at", "2023-02-03 19:43:36.260768"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-03 19:43:36.261586"], ["updated_at", "2023-02-03 19:43:36.261586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:36.277165"], ["updated_at", "2023-02-03 19:43:36.277165"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:36.278337"], ["updated_at", "2023-02-03 19:43:36.278337"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.279332"], ["updated_at", "2023-02-03 19:43:36.279332"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.280107"], ["updated_at", "2023-02-03 19:43:36.280107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.280892"], ["updated_at", "2023-02-03 19:43:36.280892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.281650"], ["updated_at", "2023-02-03 19:43:36.281650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.282370"], ["updated_at", "2023-02-03 19:43:36.282370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.283068"], ["updated_at", "2023-02-03 19:43:36.283068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.283765"], ["updated_at", "2023-02-03 19:43:36.283765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.284470"], ["updated_at", "2023-02-03 19:43:36.284470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.285170"], ["updated_at", "2023-02-03 19:43:36.285170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.285886"], ["updated_at", "2023-02-03 19:43:36.285886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.286597"], ["updated_at", "2023-02-03 19:43:36.286597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.287334"], ["updated_at", "2023-02-03 19:43:36.287334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.288110"], ["updated_at", "2023-02-03 19:43:36.288110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-03 19:43:36.288833"], ["updated_at", "2023-02-03 19:43:36.288833"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:36.304325"], ["updated_at", "2023-02-03 19:43:36.304325"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:36.305349"], ["updated_at", "2023-02-03 19:43:36.305349"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.306164"], ["updated_at", "2023-02-03 19:43:36.306164"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.306941"], ["updated_at", "2023-02-03 19:43:36.306941"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.307806"], ["updated_at", "2023-02-03 19:43:36.307806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.313454"], ["updated_at", "2023-02-03 19:43:36.313454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.314205"], ["updated_at", "2023-02-03 19:43:36.314205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.314918"], ["updated_at", "2023-02-03 19:43:36.314918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.315628"], ["updated_at", "2023-02-03 19:43:36.315628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.316326"], ["updated_at", "2023-02-03 19:43:36.316326"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.317040"], ["updated_at", "2023-02-03 19:43:36.317040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.317735"], ["updated_at", "2023-02-03 19:43:36.317735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.318455"], ["updated_at", "2023-02-03 19:43:36.318455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.319154"], ["updated_at", "2023-02-03 19:43:36.319154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.319865"], ["updated_at", "2023-02-03 19:43:36.319865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-03 19:43:36.320582"], ["updated_at", "2023-02-03 19:43:36.320582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:36.335864"], ["updated_at", "2023-02-03 19:43:36.335864"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:36.336857"], ["updated_at", "2023-02-03 19:43:36.336857"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.337603"], ["updated_at", "2023-02-03 19:43:36.337603"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.338364"], ["updated_at", "2023-02-03 19:43:36.338364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.339106"], ["updated_at", "2023-02-03 19:43:36.339106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.339837"], ["updated_at", "2023-02-03 19:43:36.339837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.340522"], ["updated_at", "2023-02-03 19:43:36.340522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.341220"], ["updated_at", "2023-02-03 19:43:36.341220"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.341926"], ["updated_at", "2023-02-03 19:43:36.341926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.342619"], ["updated_at", "2023-02-03 19:43:36.342619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.343314"], ["updated_at", "2023-02-03 19:43:36.343314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.344004"], ["updated_at", "2023-02-03 19:43:36.344004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.344693"], ["updated_at", "2023-02-03 19:43:36.344693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.345378"], ["updated_at", "2023-02-03 19:43:36.345378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.346072"], ["updated_at", "2023-02-03 19:43:36.346072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-03 19:43:36.346770"], ["updated_at", "2023-02-03 19:43:36.346770"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:36.362073"], ["updated_at", "2023-02-03 19:43:36.362073"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:36.363265"], ["updated_at", "2023-02-03 19:43:36.363265"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.364083"], ["updated_at", "2023-02-03 19:43:36.364083"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.364780"], ["updated_at", "2023-02-03 19:43:36.364780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.365534"], ["updated_at", "2023-02-03 19:43:36.365534"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.366276"], ["updated_at", "2023-02-03 19:43:36.366276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.367004"], ["updated_at", "2023-02-03 19:43:36.367004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.367692"], ["updated_at", "2023-02-03 19:43:36.367692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.368396"], ["updated_at", "2023-02-03 19:43:36.368396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.369092"], ["updated_at", "2023-02-03 19:43:36.369092"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.369767"], ["updated_at", "2023-02-03 19:43:36.369767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.370522"], ["updated_at", "2023-02-03 19:43:36.370522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.371282"], ["updated_at", "2023-02-03 19:43:36.371282"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.371979"], ["updated_at", "2023-02-03 19:43:36.371979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.372681"], ["updated_at", "2023-02-03 19:43:36.372681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-03 19:43:36.373374"], ["updated_at", "2023-02-03 19:43:36.373374"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-03 19:43:36.388793"], ["updated_at", "2023-02-03 19:43:36.388793"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-03 19:43:36.389788"], ["updated_at", "2023-02-03 19:43:36.389788"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-03 19:43:36.390569"], ["updated_at", "2023-02-03 19:43:36.390569"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-03 19:43:36.391325"], ["updated_at", "2023-02-03 19:43:36.391325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.392110"], ["updated_at", "2023-02-03 19:43:36.392110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.392835"], ["updated_at", "2023-02-03 19:43:36.392835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.393533"], ["updated_at", "2023-02-03 19:43:36.393533"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.394256"], ["updated_at", "2023-02-03 19:43:36.394256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.394950"], ["updated_at", "2023-02-03 19:43:36.394950"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.395646"], ["updated_at", "2023-02-03 19:43:36.395646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.396285"], ["updated_at", "2023-02-03 19:43:36.396285"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.397166"], ["updated_at", "2023-02-03 19:43:36.397166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.398262"], ["updated_at", "2023-02-03 19:43:36.398262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.399260"], ["updated_at", "2023-02-03 19:43:36.399260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.400040"], ["updated_at", "2023-02-03 19:43:36.400040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-03 19:43:36.400783"], ["updated_at", "2023-02-03 19:43:36.400783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-03 16:43:36 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-03 16:43:36 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 211)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-03 16:43:36 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 19:43:51.746935"], ["updated_at", "2023-02-03 19:43:51.746935"]]
TRANSACTION (1.7ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 16:43:51 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 19:43:51.806479"], ["updated_at", "2023-02-03 19:43:51.806479"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 35ms (Views: 10.0ms | ActiveRecord: 1.2ms | Allocations: 37349)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-03 20:36:32.479219"], ["updated_at", "2023-02-03 20:36:32.479219"]]
TRANSACTION (1.7ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 17:36:32 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-03 20:36:32.576806"], ["updated_at", "2023-02-03 20:36:32.576806"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 78ms (Views: 26.9ms | ActiveRecord: 1.4ms | Allocations: 37397)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-03 17:36:32 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"survey"=>{"name"=>"teste"}}}

Unpermitted parameter: :survey. Context: { controller: SurveysController, action: create, request: #<ActionDispatch::Request:0x000055cf78f83098>, params: {“survey”=>{“survey”=>{“name”=>“teste”}}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms | Allocations: 2288)

TRANSACTION (0.1ms)  rollback transaction
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:07:56.700879"], ["updated_at", "2023-02-14 12:07:56.700879"]]
TRANSACTION (4.1ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:08:15.187965"], ["updated_at", "2023-02-14 12:08:15.187965"]]
TRANSACTION (2.0ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-14 09:08:15 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"name"=>"Questionário", "description"=>"Descrição teste", "expiration_date"=>"", "semester"=>"2022/2", "role_id"=>"1"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.8ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:08:15.268619"], ["updated_at", "2023-02-14 12:08:15.268619"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.3ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 42ms (Views: 11.4ms | ActiveRecord: 2.1ms | Allocations: 37397)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started POST “/create_survey” for 127.0.0.1 at 2023-02-14 09:08:15 -0300 Processing by SurveysController#create as JSON

Parameters: {"survey"=>{"survey"=>{"name"=>"teste"}}}

Unpermitted parameter: :survey. Context: { controller: SurveysController, action: create, request: #<ActionDispatch::Request:0x000055fbdc009168>, params: {“survey”=>{“survey”=>{“name”=>“teste”}}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms | Allocations: 2288)

TRANSACTION (0.1ms)  rollback transaction
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.3ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.3ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:22:26.399011"], ["updated_at", "2023-02-14 12:22:26.399011"]]
TRANSACTION (1.8ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.6ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.4ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.3ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.2ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.5ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:26:57.970126"], ["updated_at", "2023-02-14 12:26:57.970126"]]
TRANSACTION (1.8ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML Completed 400 Bad Request in 0ms (ActiveRecord: 0.0ms | Allocations: 193)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.7ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:28:02.970483"], ["updated_at", "2023-02-14 12:28:02.970483"]]
TRANSACTION (1.8ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.8ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:28:03.012593"], ["updated_at", "2023-02-14 12:28:03.012593"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.1ms | Allocations: 4571)

TRANSACTION (0.2ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:28:41.261222"], ["updated_at", "2023-02-14 12:28:41.261222"]]
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:28:41.303049"], ["updated_at", "2023-02-14 12:28:41.303049"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.4ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 22ms (Views: 12.5ms | ActiveRecord: 1.2ms | Allocations: 14286)

TRANSACTION (0.1ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:29:07.900848"], ["updated_at", "2023-02-14 12:29:07.900848"]]
TRANSACTION (1.8ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:29:07.940086"], ["updated_at", "2023-02-14 12:29:07.940086"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 20ms (Views: 11.4ms | ActiveRecord: 0.8ms | Allocations: 14287)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:29:27.506354"], ["updated_at", "2023-02-14 12:29:27.506354"]]
TRANSACTION (1.7ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:29:27.547094"], ["updated_at", "2023-02-14 12:29:27.547094"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 21ms (Views: 11.8ms | ActiveRecord: 0.8ms | Allocations: 14288)

TRANSACTION (0.1ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:29:58.113996"], ["updated_at", "2023-02-14 12:29:58.113996"]]
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:29:58.154685"], ["updated_at", "2023-02-14 12:29:58.154685"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 22ms (Views: 13.3ms | ActiveRecord: 0.9ms | Allocations: 14286)

TRANSACTION (0.2ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:30:39.005034"], ["updated_at", "2023-02-14 12:30:39.005034"]]
TRANSACTION (1.7ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:30:39.044414"], ["updated_at", "2023-02-14 12:30:39.044414"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 21ms (Views: 12.6ms | ActiveRecord: 0.8ms | Allocations: 14286)

TRANSACTION (0.2ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:30:51.654491"], ["updated_at", "2023-02-14 12:30:51.654491"]]
TRANSACTION (2.2ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:30:51.703468"], ["updated_at", "2023-02-14 12:30:51.703468"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 23ms (Views: 12.3ms | ActiveRecord: 0.9ms | Allocations: 14287)

TRANSACTION (0.2ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.3ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:31:01.138488"], ["updated_at", "2023-02-14 12:31:01.138488"]]
TRANSACTION (1.8ms)  commit transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:31:01.193913"], ["updated_at", "2023-02-14 12:31:01.193913"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 20ms (Views: 11.2ms | ActiveRecord: 1.0ms | Allocations: 14292)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:33:30.932289"], ["updated_at", "2023-02-14 12:33:30.932289"]]
TRANSACTION (1.9ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:33:30.973807"], ["updated_at", "2023-02-14 12:33:30.973807"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 21ms (Views: 11.6ms | ActiveRecord: 1.0ms | Allocations: 14289)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "teste"], ["description", "teste"], ["created_at", "2023-02-14 12:34:48.929323"], ["updated_at", "2023-02-14 12:34:48.929323"]]
TRANSACTION (2.1ms)  commit transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:34:48.969093"], ["updated_at", "2023-02-14 12:34:48.969093"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 21ms (Views: 12.0ms | ActiveRecord: 0.9ms | Allocations: 14289)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.3ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:41:10.632157"], ["updated_at", "2023-02-14 12:41:10.632157"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 28ms (Views: 12.8ms | ActiveRecord: 1.2ms | Allocations: 17438)

TRANSACTION (0.1ms)  rollback transaction
 (1.4ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:44:29.251978"], ["updated_at", "2023-02-14 12:44:29.251978"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 60ms (Views: 44.1ms | ActiveRecord: 1.3ms | Allocations: 17415)

Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:46:22.961792"], ["updated_at", "2023-02-14 12:46:22.961792"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 27ms (Views: 12.3ms | ActiveRecord: 1.2ms | Allocations: 17439)

TRANSACTION (0.2ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:47:52.005584"], ["updated_at", "2023-02-14 12:47:52.005584"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 25ms (Views: 11.1ms | ActiveRecord: 1.2ms | Allocations: 17438)

TRANSACTION (0.1ms)  rollback transaction
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.5ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms | Allocations: 337)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (1.0ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.0ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:55:25.528996"], ["updated_at", "2023-02-14 12:55:25.528996"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 37ms (Views: 11.6ms | ActiveRecord: 1.7ms | Allocations: 27551)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055ec47096800>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-14 12:56:00.371370"], ["updated_at", "2023-02-14 12:56:00.371370"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 53ms (Views: 13.0ms | ActiveRecord: 2.3ms | Allocations: 27604)

TRANSACTION (0.3ms)  rollback transaction
 (1.5ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055673ca83128>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 1552)

TRANSACTION (0.1ms)  rollback transaction
 (1.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (1.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055bab6295628>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 1596)

TRANSACTION (0.1ms)  rollback transaction
 (5.5ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.6ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.7ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.4ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00007fac7628d000>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 1597)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.8ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-16 00:40:56.377139"], ["updated_at", "2023-02-16 00:40:56.377139"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.3ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 28ms (Views: 11.9ms | ActiveRecord: 1.9ms | Allocations: 17438)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055abaa7ebde0>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 1596)

TRANSACTION (0.1ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00007feeccd7a4e8>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms | Allocations: 445)

TRANSACTION (0.1ms)  rollback transaction
 (2.6ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00005607c380d6c8>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 443)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00007f6a51dbd928>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 443)

TRANSACTION (0.1ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055f8af43a690>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 443)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055e6dc8741f0>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 421)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2", "survey_questions"=>[{"question"=>"What is your favorite color?"}]}}

Unpermitted parameter: :survey_questions. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00007fa3ad14c690>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”, “survey_questions”=>[{“question”=>“What is your favorite color?”}]}, “controller”=>“surveys”, “action”=>“create”} }

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-16 01:09:32.581975"], ["updated_at", "2023-02-16 01:09:32.581975"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 38ms (Views: 10.4ms | ActiveRecord: 1.7ms | Allocations: 27601)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2", "survey_questions"=>[{"question"=>"What is your favorite color?"}]}}

Unpermitted parameter: :survey_questions. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000561697407168>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”, “survey_questions”=>[{“question”=>“What is your favorite color?”}]}, “controller”=>“surveys”, “action”=>“create”} }

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-16 01:09:40.238343"], ["updated_at", "2023-02-16 01:09:40.238343"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 35ms (Views: 10.8ms | ActiveRecord: 1.7ms | Allocations: 27601)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-16 01:11:02.094391"], ["updated_at", "2023-02-16 01:11:02.094391"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 27ms (Views: 10.3ms | ActiveRecord: 1.2ms | Allocations: 17438)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055c33192b7e8>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 421)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.4ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.5ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (1.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 18:04:01.698345"], ["updated_at", "2023-02-17 18:04:01.698345"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.3ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 28ms (Views: 11.7ms | ActiveRecord: 2.2ms | Allocations: 17438)

TRANSACTION (0.1ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.5ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 225)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 225)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 240)

TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 240)

TRANSACTION (0.1ms)  rollback transaction
 (2.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 240)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 240)

TRANSACTION (0.1ms)  rollback transaction
 (1.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 240)

TRANSACTION (0.1ms)  rollback transaction
 (1.5ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 240)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 240)

TRANSACTION (0.1ms)  rollback transaction
 (0.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 240)

TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:18:29.920919"], ["updated_at", "2023-02-17 19:18:29.920919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:18:29.935577"], ["updated_at", "2023-02-17 19:18:29.935577"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:18:29.941330"], ["updated_at", "2023-02-17 19:18:29.941330"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:18:29.951417"], ["updated_at", "2023-02-17 19:18:29.951417"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:18:29.958379"], ["updated_at", "2023-02-17 19:18:29.958379"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:18:29.961601"], ["updated_at", "2023-02-17 19:18:29.961601"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:18:29.964060"], ["updated_at", "2023-02-17 19:18:29.964060"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 4.9ms | Allocations: 28612)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:18:29.981095"], ["updated_at", "2023-02-17 19:18:29.981095"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 11ms (Views: 6.3ms | ActiveRecord: 0.8ms | Allocations: 4605)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00005632d56c6048>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 17ms (Views: 0.2ms | ActiveRecord: 0.9ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML

TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.036323"], ["updated_at", "2023-02-17 19:18:30.036323"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:18:30.037880"], ["updated_at", "2023-02-17 19:18:30.037880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:18:30.040980"], ["updated_at", "2023-02-17 19:18:30.040980"]]

Processing by ScrapperController#index as JSON

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:18:30.042197"], ["updated_at", "2023-02-17 19:18:30.042197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:18:30.045088"], ["updated_at", "2023-02-17 19:18:30.045088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:18:30.046346"], ["updated_at", "2023-02-17 19:18:30.046346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:18:30.049014"], ["updated_at", "2023-02-17 19:18:30.049014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:18:30.050443"], ["updated_at", "2023-02-17 19:18:30.050443"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:18:30.051306"], ["updated_at", "2023-02-17 19:18:30.051306"]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.3ms | Allocations: 6170)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:18:30.052061"], ["updated_at", "2023-02-17 19:18:30.052061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:18:30.053416"], ["updated_at", "2023-02-17 19:18:30.053416"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:18:30.055125"], ["updated_at", "2023-02-17 19:18:30.055125"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:18:30.056485"], ["updated_at", "2023-02-17 19:18:30.056485"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:18:30.057947"], ["updated_at", "2023-02-17 19:18:30.057947"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:18:30.059143"], ["updated_at", "2023-02-17 19:18:30.059143"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:18:30.060582"], ["updated_at", "2023-02-17 19:18:30.060582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:18:30.061931"], ["updated_at", "2023-02-17 19:18:30.061931"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:18:30.063421"], ["updated_at", "2023-02-17 19:18:30.063421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:18:30.064757"], ["updated_at", "2023-02-17 19:18:30.064757"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:18:30.066240"], ["updated_at", "2023-02-17 19:18:30.066240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:18:30.067453"], ["updated_at", "2023-02-17 19:18:30.067453"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:18:30.068994"], ["updated_at", "2023-02-17 19:18:30.068994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:18:30.070261"], ["updated_at", "2023-02-17 19:18:30.070261"], ["role_id", 34]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:18:30.071643"], ["updated_at", "2023-02-17 19:18:30.071643"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:18:30.073003"], ["updated_at", "2023-02-17 19:18:30.073003"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:18:30.074850"], ["updated_at", "2023-02-17 19:18:30.074850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Create (0.5ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:18:30.075278"], ["updated_at", "2023-02-17 19:18:30.075278"], ["role_id", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 12ms (ActiveRecord: 1.0ms | Allocations: 5710)

Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:18:30.076307"], ["updated_at", "2023-02-17 19:18:30.076307"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:18:30.078072"], ["updated_at", "2023-02-17 19:18:30.078072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:18:30.079526"], ["updated_at", "2023-02-17 19:18:30.079526"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055a2cb8252f8>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:18:30.081035"], ["updated_at", "2023-02-17 19:18:30.081035"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:18:30.082361"], ["updated_at", "2023-02-17 19:18:30.082361"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:18:30.084057"], ["updated_at", "2023-02-17 19:18:30.084057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:18:30.085382"], ["updated_at", "2023-02-17 19:18:30.085382"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:18:30.086938"], ["updated_at", "2023-02-17 19:18:30.086938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:18:30.088231"], ["updated_at", "2023-02-17 19:18:30.088231"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:18:30.089762"], ["updated_at", "2023-02-17 19:18:30.089762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:18:30.091090"], ["updated_at", "2023-02-17 19:18:30.091090"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:18:30.092572"], ["updated_at", "2023-02-17 19:18:30.092572"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:18:30.093955"], ["updated_at", "2023-02-17 19:18:30.093955"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:18:30.095419"], ["updated_at", "2023-02-17 19:18:30.095419"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:18:30.096625"], ["updated_at", "2023-02-17 19:18:30.096625"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:18:30.098134"], ["updated_at", "2023-02-17 19:18:30.098134"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:18:30.099456"], ["updated_at", "2023-02-17 19:18:30.099456"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:18:30.100851"], ["updated_at", "2023-02-17 19:18:30.100851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.102431"], ["updated_at", "2023-02-17 19:18:30.102431"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:18:30.104346"], ["updated_at", "2023-02-17 19:18:30.104346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:18:30.105919"], ["updated_at", "2023-02-17 19:18:30.105919"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:18:30.107710"], ["updated_at", "2023-02-17 19:18:30.107710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 6053)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:18:30.109338"], ["updated_at", "2023-02-17 19:18:30.109338"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:18:30.111118"], ["updated_at", "2023-02-17 19:18:30.111118"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:18:30.115235"], ["updated_at", "2023-02-17 19:18:30.115235"], ["role_id", 34]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:18:30.117167"], ["updated_at", "2023-02-17 19:18:30.117167"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:18:30.118858"], ["updated_at", "2023-02-17 19:18:30.118858"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:18:30.120957"], ["updated_at", "2023-02-17 19:18:30.120957"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:18:30.122716"], ["updated_at", "2023-02-17 19:18:30.122716"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.9ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:18:30.124878"], ["updated_at", "2023-02-17 19:18:30.124878"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.127831"], ["updated_at", "2023-02-17 19:18:30.127831"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:18:30.129002"], ["updated_at", "2023-02-17 19:18:30.129002"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:18:30.130471"], ["updated_at", "2023-02-17 19:18:30.130471"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:18:30.131757"], ["updated_at", "2023-02-17 19:18:30.131757"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.132778"], ["updated_at", "2023-02-17 19:18:30.132778"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:18:30.133216"], ["updated_at", "2023-02-17 19:18:30.133216"]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:18:30.134533"], ["updated_at", "2023-02-17 19:18:30.134533"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:18:30.136060"], ["updated_at", "2023-02-17 19:18:30.136060"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:18:30.137359"], ["updated_at", "2023-02-17 19:18:30.137359"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.137974"], ["updated_at", "2023-02-17 19:18:30.137974"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:18:30.138857"], ["updated_at", "2023-02-17 19:18:30.138857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.140186"], ["updated_at", "2023-02-17 19:18:30.140186"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:18:30.141637"], ["updated_at", "2023-02-17 19:18:30.141637"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:18:30.142908"], ["updated_at", "2023-02-17 19:18:30.142908"], ["role_id", 34]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.143062"], ["updated_at", "2023-02-17 19:18:30.143062"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:18:30.144832"], ["updated_at", "2023-02-17 19:18:30.144832"]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:18:30.146181"], ["updated_at", "2023-02-17 19:18:30.146181"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:18:30.147592"], ["updated_at", "2023-02-17 19:18:30.147592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.148288"], ["updated_at", "2023-02-17 19:18:30.148288"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.148908"], ["updated_at", "2023-02-17 19:18:30.148908"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:18:30.150362"], ["updated_at", "2023-02-17 19:18:30.150362"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:18:30.151672"], ["updated_at", "2023-02-17 19:18:30.151672"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:18:30.153118"], ["updated_at", "2023-02-17 19:18:30.153118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.153846"], ["updated_at", "2023-02-17 19:18:30.153846"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:18:30.154546"], ["updated_at", "2023-02-17 19:18:30.154546"], ["role_id", 34]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:18:30.155990"], ["updated_at", "2023-02-17 19:18:30.155990"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:18:30.157251"], ["updated_at", "2023-02-17 19:18:30.157251"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:18:30.158750"], ["updated_at", "2023-02-17 19:18:30.158750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.159026"], ["updated_at", "2023-02-17 19:18:30.159026"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:18:30.159994"], ["updated_at", "2023-02-17 19:18:30.159994"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:18:30.161473"], ["updated_at", "2023-02-17 19:18:30.161473"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:18:30.162706"], ["updated_at", "2023-02-17 19:18:30.162706"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.163781"], ["updated_at", "2023-02-17 19:18:30.163781"]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:18:30.164136"], ["updated_at", "2023-02-17 19:18:30.164136"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.165497"], ["updated_at", "2023-02-17 19:18:30.165497"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:18:30.167028"], ["updated_at", "2023-02-17 19:18:30.167028"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:18:30.168208"], ["updated_at", "2023-02-17 19:18:30.168208"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:18:30.169703"], ["updated_at", "2023-02-17 19:18:30.169703"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:18:30.171175"], ["updated_at", "2023-02-17 19:18:30.171175"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:18:30.172930"], ["updated_at", "2023-02-17 19:18:30.172930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:18:30 -0300

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:18:30.174410"], ["updated_at", "2023-02-17 19:18:30.174410"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:18:30.175804"], ["updated_at", "2023-02-17 19:18:30.175804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:18:30.177031"], ["updated_at", "2023-02-17 19:18:30.177031"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:18:30.178593"], ["updated_at", "2023-02-17 19:18:30.178593"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:18:30.179887"], ["updated_at", "2023-02-17 19:18:30.179887"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:18:30.181482"], ["updated_at", "2023-02-17 19:18:30.181482"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:18:30.182955"], ["updated_at", "2023-02-17 19:18:30.182955"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 233)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:18:30.184509"], ["updated_at", "2023-02-17 19:18:30.184509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:18:30.185626"], ["updated_at", "2023-02-17 19:18:30.185626"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:18:30.186992"], ["updated_at", "2023-02-17 19:18:30.186992"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:18:30.188518"], ["updated_at", "2023-02-17 19:18:30.188518"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:18:30 -0300 Processing by SurveysController#open as JSON

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Parameters: {"survey"=>{}}
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:18:30.193197"], ["updated_at", "2023-02-17 19:18:30.193197"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 180)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:18:30.194768"], ["updated_at", "2023-02-17 19:18:30.194768"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:18:30.195913"], ["updated_at", "2023-02-17 19:18:30.195913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (1.6ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:30.226214"], ["updated_at", "2023-02-17 19:18:30.226214"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:30.227995"], ["updated_at", "2023-02-17 19:18:30.227995"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:30.229192"], ["updated_at", "2023-02-17 19:18:30.229192"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.230203"], ["updated_at", "2023-02-17 19:18:30.230203"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.231145"], ["updated_at", "2023-02-17 19:18:30.231145"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.232250"], ["updated_at", "2023-02-17 19:18:30.232250"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.233018"], ["updated_at", "2023-02-17 19:18:30.233018"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.233767"], ["updated_at", "2023-02-17 19:18:30.233767"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:30.234546"], ["updated_at", "2023-02-17 19:18:30.234546"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.235616"], ["updated_at", "2023-02-17 19:18:30.235616"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.236582"], ["updated_at", "2023-02-17 19:18:30.236582"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.237332"], ["updated_at", "2023-02-17 19:18:30.237332"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.238132"], ["updated_at", "2023-02-17 19:18:30.238132"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.239154"], ["updated_at", "2023-02-17 19:18:30.239154"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.240053"], ["updated_at", "2023-02-17 19:18:30.240053"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.240847"], ["updated_at", "2023-02-17 19:18:30.240847"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.241703"], ["updated_at", "2023-02-17 19:18:30.241703"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.242681"], ["updated_at", "2023-02-17 19:18:30.242681"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.243504"], ["updated_at", "2023-02-17 19:18:30.243504"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.244252"], ["updated_at", "2023-02-17 19:18:30.244252"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.245027"], ["updated_at", "2023-02-17 19:18:30.245027"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:30.257490"], ["updated_at", "2023-02-17 19:18:30.257490"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:30.258909"], ["updated_at", "2023-02-17 19:18:30.258909"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:30.259841"], ["updated_at", "2023-02-17 19:18:30.259841"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:30.260751"], ["updated_at", "2023-02-17 19:18:30.260751"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:30.261860"], ["updated_at", "2023-02-17 19:18:30.261860"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:30.262805"], ["updated_at", "2023-02-17 19:18:30.262805"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:30.263688"], ["updated_at", "2023-02-17 19:18:30.263688"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:30.264604"], ["updated_at", "2023-02-17 19:18:30.264604"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:30.265814"], ["updated_at", "2023-02-17 19:18:30.265814"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.266990"], ["updated_at", "2023-02-17 19:18:30.266990"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.267985"], ["updated_at", "2023-02-17 19:18:30.267985"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.268882"], ["updated_at", "2023-02-17 19:18:30.268882"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.270140"], ["updated_at", "2023-02-17 19:18:30.270140"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.271246"], ["updated_at", "2023-02-17 19:18:30.271246"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.272217"], ["updated_at", "2023-02-17 19:18:30.272217"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.273371"], ["updated_at", "2023-02-17 19:18:30.273371"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.274356"], ["updated_at", "2023-02-17 19:18:30.274356"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.275368"], ["updated_at", "2023-02-17 19:18:30.275368"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.276299"], ["updated_at", "2023-02-17 19:18:30.276299"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.277700"], ["updated_at", "2023-02-17 19:18:30.277700"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.278885"], ["updated_at", "2023-02-17 19:18:30.278885"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.313723"], ["updated_at", "2023-02-17 19:18:30.313723"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.314926"], ["updated_at", "2023-02-17 19:18:30.314926"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.315802"], ["updated_at", "2023-02-17 19:18:30.315802"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.316742"], ["updated_at", "2023-02-17 19:18:30.316742"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.317691"], ["updated_at", "2023-02-17 19:18:30.317691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.318568"], ["updated_at", "2023-02-17 19:18:30.318568"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.319301"], ["updated_at", "2023-02-17 19:18:30.319301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.320003"], ["updated_at", "2023-02-17 19:18:30.320003"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.320817"], ["updated_at", "2023-02-17 19:18:30.320817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.322016"], ["updated_at", "2023-02-17 19:18:30.322016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.322941"], ["updated_at", "2023-02-17 19:18:30.322941"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.323712"], ["updated_at", "2023-02-17 19:18:30.323712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.324613"], ["updated_at", "2023-02-17 19:18:30.324613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.325584"], ["updated_at", "2023-02-17 19:18:30.325584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.326586"], ["updated_at", "2023-02-17 19:18:30.326586"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.327553"], ["updated_at", "2023-02-17 19:18:30.327553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.344505"], ["updated_at", "2023-02-17 19:18:30.344505"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.346278"], ["updated_at", "2023-02-17 19:18:30.346278"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.347077"], ["updated_at", "2023-02-17 19:18:30.347077"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.347791"], ["updated_at", "2023-02-17 19:18:30.347791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.348557"], ["updated_at", "2023-02-17 19:18:30.348557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.349315"], ["updated_at", "2023-02-17 19:18:30.349315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.350036"], ["updated_at", "2023-02-17 19:18:30.350036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.350725"], ["updated_at", "2023-02-17 19:18:30.350725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.351457"], ["updated_at", "2023-02-17 19:18:30.351457"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.352243"], ["updated_at", "2023-02-17 19:18:30.352243"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.353314"], ["updated_at", "2023-02-17 19:18:30.353314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.354146"], ["updated_at", "2023-02-17 19:18:30.354146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.354904"], ["updated_at", "2023-02-17 19:18:30.354904"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.355605"], ["updated_at", "2023-02-17 19:18:30.355605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.356291"], ["updated_at", "2023-02-17 19:18:30.356291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.357021"], ["updated_at", "2023-02-17 19:18:30.357021"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.374014"], ["updated_at", "2023-02-17 19:18:30.374014"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.374995"], ["updated_at", "2023-02-17 19:18:30.374995"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.375759"], ["updated_at", "2023-02-17 19:18:30.375759"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.376496"], ["updated_at", "2023-02-17 19:18:30.376496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.377425"], ["updated_at", "2023-02-17 19:18:30.377425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.378208"], ["updated_at", "2023-02-17 19:18:30.378208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.378946"], ["updated_at", "2023-02-17 19:18:30.378946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.379639"], ["updated_at", "2023-02-17 19:18:30.379639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.380424"], ["updated_at", "2023-02-17 19:18:30.380424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.381176"], ["updated_at", "2023-02-17 19:18:30.381176"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.381909"], ["updated_at", "2023-02-17 19:18:30.381909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.382660"], ["updated_at", "2023-02-17 19:18:30.382660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.383404"], ["updated_at", "2023-02-17 19:18:30.383404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.384120"], ["updated_at", "2023-02-17 19:18:30.384120"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.384933"], ["updated_at", "2023-02-17 19:18:30.384933"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.385670"], ["updated_at", "2023-02-17 19:18:30.385670"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.403905"], ["updated_at", "2023-02-17 19:18:30.403905"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.405229"], ["updated_at", "2023-02-17 19:18:30.405229"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.406549"], ["updated_at", "2023-02-17 19:18:30.406549"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.407572"], ["updated_at", "2023-02-17 19:18:30.407572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.408654"], ["updated_at", "2023-02-17 19:18:30.408654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.409689"], ["updated_at", "2023-02-17 19:18:30.409689"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.410625"], ["updated_at", "2023-02-17 19:18:30.410625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.411559"], ["updated_at", "2023-02-17 19:18:30.411559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.412505"], ["updated_at", "2023-02-17 19:18:30.412505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.413427"], ["updated_at", "2023-02-17 19:18:30.413427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.414192"], ["updated_at", "2023-02-17 19:18:30.414192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.414922"], ["updated_at", "2023-02-17 19:18:30.414922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.415611"], ["updated_at", "2023-02-17 19:18:30.415611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.416337"], ["updated_at", "2023-02-17 19:18:30.416337"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.417029"], ["updated_at", "2023-02-17 19:18:30.417029"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.417743"], ["updated_at", "2023-02-17 19:18:30.417743"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.434572"], ["updated_at", "2023-02-17 19:18:30.434572"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.436001"], ["updated_at", "2023-02-17 19:18:30.436001"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.437221"], ["updated_at", "2023-02-17 19:18:30.437221"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.438045"], ["updated_at", "2023-02-17 19:18:30.438045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.438846"], ["updated_at", "2023-02-17 19:18:30.438846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.439570"], ["updated_at", "2023-02-17 19:18:30.439570"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.440292"], ["updated_at", "2023-02-17 19:18:30.440292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.441092"], ["updated_at", "2023-02-17 19:18:30.441092"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.442167"], ["updated_at", "2023-02-17 19:18:30.442167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.443247"], ["updated_at", "2023-02-17 19:18:30.443247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.444110"], ["updated_at", "2023-02-17 19:18:30.444110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.444805"], ["updated_at", "2023-02-17 19:18:30.444805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.445575"], ["updated_at", "2023-02-17 19:18:30.445575"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.446297"], ["updated_at", "2023-02-17 19:18:30.446297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.446987"], ["updated_at", "2023-02-17 19:18:30.446987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.447655"], ["updated_at", "2023-02-17 19:18:30.447655"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.463343"], ["updated_at", "2023-02-17 19:18:30.463343"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.464304"], ["updated_at", "2023-02-17 19:18:30.464304"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.465057"], ["updated_at", "2023-02-17 19:18:30.465057"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.465787"], ["updated_at", "2023-02-17 19:18:30.465787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.466547"], ["updated_at", "2023-02-17 19:18:30.466547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.467288"], ["updated_at", "2023-02-17 19:18:30.467288"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.467977"], ["updated_at", "2023-02-17 19:18:30.467977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.468681"], ["updated_at", "2023-02-17 19:18:30.468681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.469410"], ["updated_at", "2023-02-17 19:18:30.469410"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.470188"], ["updated_at", "2023-02-17 19:18:30.470188"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.471000"], ["updated_at", "2023-02-17 19:18:30.471000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.471718"], ["updated_at", "2023-02-17 19:18:30.471718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.472448"], ["updated_at", "2023-02-17 19:18:30.472448"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.473156"], ["updated_at", "2023-02-17 19:18:30.473156"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.473883"], ["updated_at", "2023-02-17 19:18:30.473883"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.474589"], ["updated_at", "2023-02-17 19:18:30.474589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:18:30 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.3ms | Allocations: 3127)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.500069"], ["updated_at", "2023-02-17 19:18:30.500069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:18:30.501551"], ["updated_at", "2023-02-17 19:18:30.501551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:18:30.504419"], ["updated_at", "2023-02-17 19:18:30.504419"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:18:30.505602"], ["updated_at", "2023-02-17 19:18:30.505602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:18:30.508338"], ["updated_at", "2023-02-17 19:18:30.508338"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:18:30.509518"], ["updated_at", "2023-02-17 19:18:30.509518"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:18:30.511676"], ["updated_at", "2023-02-17 19:18:30.511676"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:18:30.513135"], ["updated_at", "2023-02-17 19:18:30.513135"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:18:30.514708"], ["updated_at", "2023-02-17 19:18:30.514708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:18:30.516150"], ["updated_at", "2023-02-17 19:18:30.516150"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:18:30.517648"], ["updated_at", "2023-02-17 19:18:30.517648"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:18:30.518905"], ["updated_at", "2023-02-17 19:18:30.518905"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:18:30.520742"], ["updated_at", "2023-02-17 19:18:30.520742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:18:30.522427"], ["updated_at", "2023-02-17 19:18:30.522427"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:18:30.524055"], ["updated_at", "2023-02-17 19:18:30.524055"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:18:30.525317"], ["updated_at", "2023-02-17 19:18:30.525317"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:18:30.526732"], ["updated_at", "2023-02-17 19:18:30.526732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:18:30.527937"], ["updated_at", "2023-02-17 19:18:30.527937"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:18:30.529308"], ["updated_at", "2023-02-17 19:18:30.529308"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:18:30.530504"], ["updated_at", "2023-02-17 19:18:30.530504"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:18:30.532058"], ["updated_at", "2023-02-17 19:18:30.532058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:18:30.533424"], ["updated_at", "2023-02-17 19:18:30.533424"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:18:30.534867"], ["updated_at", "2023-02-17 19:18:30.534867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:18:30.536103"], ["updated_at", "2023-02-17 19:18:30.536103"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:18:30.537536"], ["updated_at", "2023-02-17 19:18:30.537536"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:18:30.538764"], ["updated_at", "2023-02-17 19:18:30.538764"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:18:30.540217"], ["updated_at", "2023-02-17 19:18:30.540217"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:18:30.541482"], ["updated_at", "2023-02-17 19:18:30.541482"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:18:30.542973"], ["updated_at", "2023-02-17 19:18:30.542973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:18:30.544185"], ["updated_at", "2023-02-17 19:18:30.544185"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:18:30.545588"], ["updated_at", "2023-02-17 19:18:30.545588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:18:30.546819"], ["updated_at", "2023-02-17 19:18:30.546819"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:18:30.548237"], ["updated_at", "2023-02-17 19:18:30.548237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:18:30.549451"], ["updated_at", "2023-02-17 19:18:30.549451"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:18:30.550894"], ["updated_at", "2023-02-17 19:18:30.550894"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:18:30.552133"], ["updated_at", "2023-02-17 19:18:30.552133"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:18:30.553571"], ["updated_at", "2023-02-17 19:18:30.553571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:18:30.554801"], ["updated_at", "2023-02-17 19:18:30.554801"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:18:30.556225"], ["updated_at", "2023-02-17 19:18:30.556225"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:18:30.557462"], ["updated_at", "2023-02-17 19:18:30.557462"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:18:30.558901"], ["updated_at", "2023-02-17 19:18:30.558901"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:18:30.560123"], ["updated_at", "2023-02-17 19:18:30.560123"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:18:30.561583"], ["updated_at", "2023-02-17 19:18:30.561583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.562915"], ["updated_at", "2023-02-17 19:18:30.562915"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:18:30.564330"], ["updated_at", "2023-02-17 19:18:30.564330"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:18:30.565557"], ["updated_at", "2023-02-17 19:18:30.565557"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:18:30.567010"], ["updated_at", "2023-02-17 19:18:30.567010"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:18:30.568232"], ["updated_at", "2023-02-17 19:18:30.568232"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:18:30.569649"], ["updated_at", "2023-02-17 19:18:30.569649"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:18:30.570865"], ["updated_at", "2023-02-17 19:18:30.570865"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:18:30.572327"], ["updated_at", "2023-02-17 19:18:30.572327"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:18:30.573615"], ["updated_at", "2023-02-17 19:18:30.573615"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:18:30.575109"], ["updated_at", "2023-02-17 19:18:30.575109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:18:30.576328"], ["updated_at", "2023-02-17 19:18:30.576328"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:18:30.577809"], ["updated_at", "2023-02-17 19:18:30.577809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:18:30.579058"], ["updated_at", "2023-02-17 19:18:30.579058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:18:30.580496"], ["updated_at", "2023-02-17 19:18:30.580496"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:18:30.581829"], ["updated_at", "2023-02-17 19:18:30.581829"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:18:30.583406"], ["updated_at", "2023-02-17 19:18:30.583406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:18:30.584656"], ["updated_at", "2023-02-17 19:18:30.584656"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:18:30.586065"], ["updated_at", "2023-02-17 19:18:30.586065"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:18:30.587388"], ["updated_at", "2023-02-17 19:18:30.587388"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:18:30.588819"], ["updated_at", "2023-02-17 19:18:30.588819"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.590105"], ["updated_at", "2023-02-17 19:18:30.590105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:18:30.591608"], ["updated_at", "2023-02-17 19:18:30.591608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:18:30.592859"], ["updated_at", "2023-02-17 19:18:30.592859"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:18:30.594300"], ["updated_at", "2023-02-17 19:18:30.594300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:18:30.595474"], ["updated_at", "2023-02-17 19:18:30.595474"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:18:30.596893"], ["updated_at", "2023-02-17 19:18:30.596893"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.598149"], ["updated_at", "2023-02-17 19:18:30.598149"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:18:30.599590"], ["updated_at", "2023-02-17 19:18:30.599590"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:18:30.600828"], ["updated_at", "2023-02-17 19:18:30.600828"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:18:30.602321"], ["updated_at", "2023-02-17 19:18:30.602321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:18:30.603624"], ["updated_at", "2023-02-17 19:18:30.603624"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:18:30.605171"], ["updated_at", "2023-02-17 19:18:30.605171"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:18:30.616573"], ["updated_at", "2023-02-17 19:18:30.616573"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:18:30.618076"], ["updated_at", "2023-02-17 19:18:30.618076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:18:30.619274"], ["updated_at", "2023-02-17 19:18:30.619274"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:18:30.620629"], ["updated_at", "2023-02-17 19:18:30.620629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:18:30.621866"], ["updated_at", "2023-02-17 19:18:30.621866"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:18:30.623358"], ["updated_at", "2023-02-17 19:18:30.623358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.624581"], ["updated_at", "2023-02-17 19:18:30.624581"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:18:30.625975"], ["updated_at", "2023-02-17 19:18:30.625975"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:18:30.627144"], ["updated_at", "2023-02-17 19:18:30.627144"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:18:30.628473"], ["updated_at", "2023-02-17 19:18:30.628473"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:18:30.629645"], ["updated_at", "2023-02-17 19:18:30.629645"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:18:30.631044"], ["updated_at", "2023-02-17 19:18:30.631044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:18:30.632287"], ["updated_at", "2023-02-17 19:18:30.632287"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:18:30.633783"], ["updated_at", "2023-02-17 19:18:30.633783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:18:30.635078"], ["updated_at", "2023-02-17 19:18:30.635078"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:18:30.636481"], ["updated_at", "2023-02-17 19:18:30.636481"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:18:30.637704"], ["updated_at", "2023-02-17 19:18:30.637704"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:18:30.639084"], ["updated_at", "2023-02-17 19:18:30.639084"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:18:30.640288"], ["updated_at", "2023-02-17 19:18:30.640288"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:18:30.641631"], ["updated_at", "2023-02-17 19:18:30.641631"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:18:30.642799"], ["updated_at", "2023-02-17 19:18:30.642799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:18:30.644050"], ["updated_at", "2023-02-17 19:18:30.644050"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:18:30.645461"], ["updated_at", "2023-02-17 19:18:30.645461"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:18:30.646954"], ["updated_at", "2023-02-17 19:18:30.646954"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:18:30.648099"], ["updated_at", "2023-02-17 19:18:30.648099"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:18:30.649129"], ["updated_at", "2023-02-17 19:18:30.649129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:30.660617"], ["updated_at", "2023-02-17 19:18:30.660617"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:30.661948"], ["updated_at", "2023-02-17 19:18:30.661948"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:30.662975"], ["updated_at", "2023-02-17 19:18:30.662975"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.663864"], ["updated_at", "2023-02-17 19:18:30.663864"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.664645"], ["updated_at", "2023-02-17 19:18:30.664645"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.665366"], ["updated_at", "2023-02-17 19:18:30.665366"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.666048"], ["updated_at", "2023-02-17 19:18:30.666048"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.666713"], ["updated_at", "2023-02-17 19:18:30.666713"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:30.667455"], ["updated_at", "2023-02-17 19:18:30.667455"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.668322"], ["updated_at", "2023-02-17 19:18:30.668322"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.669157"], ["updated_at", "2023-02-17 19:18:30.669157"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.669914"], ["updated_at", "2023-02-17 19:18:30.669914"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.670647"], ["updated_at", "2023-02-17 19:18:30.670647"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.671371"], ["updated_at", "2023-02-17 19:18:30.671371"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.672137"], ["updated_at", "2023-02-17 19:18:30.672137"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.672869"], ["updated_at", "2023-02-17 19:18:30.672869"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.673627"], ["updated_at", "2023-02-17 19:18:30.673627"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.674399"], ["updated_at", "2023-02-17 19:18:30.674399"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.675164"], ["updated_at", "2023-02-17 19:18:30.675164"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.675915"], ["updated_at", "2023-02-17 19:18:30.675915"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.676676"], ["updated_at", "2023-02-17 19:18:30.676676"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:30.687846"], ["updated_at", "2023-02-17 19:18:30.687846"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:30.689119"], ["updated_at", "2023-02-17 19:18:30.689119"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:30.690077"], ["updated_at", "2023-02-17 19:18:30.690077"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:30.691007"], ["updated_at", "2023-02-17 19:18:30.691007"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:30.691921"], ["updated_at", "2023-02-17 19:18:30.691921"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:30.692647"], ["updated_at", "2023-02-17 19:18:30.692647"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:30.693372"], ["updated_at", "2023-02-17 19:18:30.693372"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:30.694055"], ["updated_at", "2023-02-17 19:18:30.694055"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:30.694780"], ["updated_at", "2023-02-17 19:18:30.694780"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.695714"], ["updated_at", "2023-02-17 19:18:30.695714"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.696512"], ["updated_at", "2023-02-17 19:18:30.696512"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.697277"], ["updated_at", "2023-02-17 19:18:30.697277"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.698050"], ["updated_at", "2023-02-17 19:18:30.698050"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.698836"], ["updated_at", "2023-02-17 19:18:30.698836"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.699613"], ["updated_at", "2023-02-17 19:18:30.699613"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.700319"], ["updated_at", "2023-02-17 19:18:30.700319"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.701033"], ["updated_at", "2023-02-17 19:18:30.701033"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.701800"], ["updated_at", "2023-02-17 19:18:30.701800"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.702555"], ["updated_at", "2023-02-17 19:18:30.702555"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.703362"], ["updated_at", "2023-02-17 19:18:30.703362"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:30.704166"], ["updated_at", "2023-02-17 19:18:30.704166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.720081"], ["updated_at", "2023-02-17 19:18:30.720081"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.721200"], ["updated_at", "2023-02-17 19:18:30.721200"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.722068"], ["updated_at", "2023-02-17 19:18:30.722068"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.722796"], ["updated_at", "2023-02-17 19:18:30.722796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.723576"], ["updated_at", "2023-02-17 19:18:30.723576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.724484"], ["updated_at", "2023-02-17 19:18:30.724484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.725271"], ["updated_at", "2023-02-17 19:18:30.725271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.725967"], ["updated_at", "2023-02-17 19:18:30.725967"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.726662"], ["updated_at", "2023-02-17 19:18:30.726662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.727317"], ["updated_at", "2023-02-17 19:18:30.727317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.728010"], ["updated_at", "2023-02-17 19:18:30.728010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.728777"], ["updated_at", "2023-02-17 19:18:30.728777"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.729513"], ["updated_at", "2023-02-17 19:18:30.729513"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.730222"], ["updated_at", "2023-02-17 19:18:30.730222"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.730927"], ["updated_at", "2023-02-17 19:18:30.730927"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:30.731606"], ["updated_at", "2023-02-17 19:18:30.731606"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.746996"], ["updated_at", "2023-02-17 19:18:30.746996"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.748058"], ["updated_at", "2023-02-17 19:18:30.748058"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.748915"], ["updated_at", "2023-02-17 19:18:30.748915"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.749683"], ["updated_at", "2023-02-17 19:18:30.749683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.750453"], ["updated_at", "2023-02-17 19:18:30.750453"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.751214"], ["updated_at", "2023-02-17 19:18:30.751214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.751931"], ["updated_at", "2023-02-17 19:18:30.751931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.752615"], ["updated_at", "2023-02-17 19:18:30.752615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.753392"], ["updated_at", "2023-02-17 19:18:30.753392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.754131"], ["updated_at", "2023-02-17 19:18:30.754131"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.754822"], ["updated_at", "2023-02-17 19:18:30.754822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.755519"], ["updated_at", "2023-02-17 19:18:30.755519"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.756205"], ["updated_at", "2023-02-17 19:18:30.756205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.756942"], ["updated_at", "2023-02-17 19:18:30.756942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.757686"], ["updated_at", "2023-02-17 19:18:30.757686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:30.758423"], ["updated_at", "2023-02-17 19:18:30.758423"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.774095"], ["updated_at", "2023-02-17 19:18:30.774095"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.775078"], ["updated_at", "2023-02-17 19:18:30.775078"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.775844"], ["updated_at", "2023-02-17 19:18:30.775844"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.776551"], ["updated_at", "2023-02-17 19:18:30.776551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.777312"], ["updated_at", "2023-02-17 19:18:30.777312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.778096"], ["updated_at", "2023-02-17 19:18:30.778096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.778821"], ["updated_at", "2023-02-17 19:18:30.778821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.779537"], ["updated_at", "2023-02-17 19:18:30.779537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.780242"], ["updated_at", "2023-02-17 19:18:30.780242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.780949"], ["updated_at", "2023-02-17 19:18:30.780949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.781635"], ["updated_at", "2023-02-17 19:18:30.781635"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.782434"], ["updated_at", "2023-02-17 19:18:30.782434"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.783172"], ["updated_at", "2023-02-17 19:18:30.783172"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.783868"], ["updated_at", "2023-02-17 19:18:30.783868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.784597"], ["updated_at", "2023-02-17 19:18:30.784597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:30.785312"], ["updated_at", "2023-02-17 19:18:30.785312"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.800745"], ["updated_at", "2023-02-17 19:18:30.800745"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.801714"], ["updated_at", "2023-02-17 19:18:30.801714"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.802851"], ["updated_at", "2023-02-17 19:18:30.802851"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.803779"], ["updated_at", "2023-02-17 19:18:30.803779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.804572"], ["updated_at", "2023-02-17 19:18:30.804572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.805312"], ["updated_at", "2023-02-17 19:18:30.805312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.806018"], ["updated_at", "2023-02-17 19:18:30.806018"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.806732"], ["updated_at", "2023-02-17 19:18:30.806732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.807485"], ["updated_at", "2023-02-17 19:18:30.807485"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.808215"], ["updated_at", "2023-02-17 19:18:30.808215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.808939"], ["updated_at", "2023-02-17 19:18:30.808939"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.809622"], ["updated_at", "2023-02-17 19:18:30.809622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.810326"], ["updated_at", "2023-02-17 19:18:30.810326"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.811061"], ["updated_at", "2023-02-17 19:18:30.811061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.811770"], ["updated_at", "2023-02-17 19:18:30.811770"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:30.812852"], ["updated_at", "2023-02-17 19:18:30.812852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.828766"], ["updated_at", "2023-02-17 19:18:30.828766"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.829770"], ["updated_at", "2023-02-17 19:18:30.829770"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.830552"], ["updated_at", "2023-02-17 19:18:30.830552"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.831264"], ["updated_at", "2023-02-17 19:18:30.831264"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.832226"], ["updated_at", "2023-02-17 19:18:30.832226"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.833300"], ["updated_at", "2023-02-17 19:18:30.833300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.834052"], ["updated_at", "2023-02-17 19:18:30.834052"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.834771"], ["updated_at", "2023-02-17 19:18:30.834771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.835474"], ["updated_at", "2023-02-17 19:18:30.835474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.836224"], ["updated_at", "2023-02-17 19:18:30.836224"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.836978"], ["updated_at", "2023-02-17 19:18:30.836978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.837680"], ["updated_at", "2023-02-17 19:18:30.837680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.838373"], ["updated_at", "2023-02-17 19:18:30.838373"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.839077"], ["updated_at", "2023-02-17 19:18:30.839077"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.839804"], ["updated_at", "2023-02-17 19:18:30.839804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:30.840605"], ["updated_at", "2023-02-17 19:18:30.840605"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:30.857683"], ["updated_at", "2023-02-17 19:18:30.857683"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:30.858655"], ["updated_at", "2023-02-17 19:18:30.858655"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:30.859430"], ["updated_at", "2023-02-17 19:18:30.859430"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:30.860145"], ["updated_at", "2023-02-17 19:18:30.860145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.860885"], ["updated_at", "2023-02-17 19:18:30.860885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.861621"], ["updated_at", "2023-02-17 19:18:30.861621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.862559"], ["updated_at", "2023-02-17 19:18:30.862559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.863610"], ["updated_at", "2023-02-17 19:18:30.863610"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.864383"], ["updated_at", "2023-02-17 19:18:30.864383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.865096"], ["updated_at", "2023-02-17 19:18:30.865096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.865812"], ["updated_at", "2023-02-17 19:18:30.865812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.866521"], ["updated_at", "2023-02-17 19:18:30.866521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.867204"], ["updated_at", "2023-02-17 19:18:30.867204"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.867910"], ["updated_at", "2023-02-17 19:18:30.867910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.868601"], ["updated_at", "2023-02-17 19:18:30.868601"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:30.869728"], ["updated_at", "2023-02-17 19:18:30.869728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:18:30 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:30.879333"], ["updated_at", "2023-02-17 19:18:30.879333"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:18:30.880748"], ["updated_at", "2023-02-17 19:18:30.880748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:18:30.883893"], ["updated_at", "2023-02-17 19:18:30.883893"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:18:30.885104"], ["updated_at", "2023-02-17 19:18:30.885104"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:18:30.887832"], ["updated_at", "2023-02-17 19:18:30.887832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:18:30.889023"], ["updated_at", "2023-02-17 19:18:30.889023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:18:30.891058"], ["updated_at", "2023-02-17 19:18:30.891058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:18:30.892481"], ["updated_at", "2023-02-17 19:18:30.892481"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:18:30.894456"], ["updated_at", "2023-02-17 19:18:30.894456"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:18:30.895779"], ["updated_at", "2023-02-17 19:18:30.895779"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:18:30.897227"], ["updated_at", "2023-02-17 19:18:30.897227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:18:30.898428"], ["updated_at", "2023-02-17 19:18:30.898428"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:18:30.899785"], ["updated_at", "2023-02-17 19:18:30.899785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:18:30.901083"], ["updated_at", "2023-02-17 19:18:30.901083"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:18:30.902556"], ["updated_at", "2023-02-17 19:18:30.902556"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:18:30.904269"], ["updated_at", "2023-02-17 19:18:30.904269"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:18:30.905825"], ["updated_at", "2023-02-17 19:18:30.905825"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:18:30.907053"], ["updated_at", "2023-02-17 19:18:30.907053"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:18:30.908495"], ["updated_at", "2023-02-17 19:18:30.908495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:18:30.909713"], ["updated_at", "2023-02-17 19:18:30.909713"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:18:30.911075"], ["updated_at", "2023-02-17 19:18:30.911075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:18:30.912435"], ["updated_at", "2023-02-17 19:18:30.912435"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:18:30.913863"], ["updated_at", "2023-02-17 19:18:30.913863"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:18:30.915092"], ["updated_at", "2023-02-17 19:18:30.915092"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:18:30.916500"], ["updated_at", "2023-02-17 19:18:30.916500"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:18:30.917688"], ["updated_at", "2023-02-17 19:18:30.917688"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:18:30.919093"], ["updated_at", "2023-02-17 19:18:30.919093"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:18:30.920301"], ["updated_at", "2023-02-17 19:18:30.920301"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:18:30.921899"], ["updated_at", "2023-02-17 19:18:30.921899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:18:30.923419"], ["updated_at", "2023-02-17 19:18:30.923419"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:18:30.924838"], ["updated_at", "2023-02-17 19:18:30.924838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:18:30.926057"], ["updated_at", "2023-02-17 19:18:30.926057"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:18:30.927383"], ["updated_at", "2023-02-17 19:18:30.927383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:18:30.928529"], ["updated_at", "2023-02-17 19:18:30.928529"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:18:30.929909"], ["updated_at", "2023-02-17 19:18:30.929909"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:18:30.931195"], ["updated_at", "2023-02-17 19:18:30.931195"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:18:30.933022"], ["updated_at", "2023-02-17 19:18:30.933022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:18:30.934403"], ["updated_at", "2023-02-17 19:18:30.934403"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:18:30.935803"], ["updated_at", "2023-02-17 19:18:30.935803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:18:30.937022"], ["updated_at", "2023-02-17 19:18:30.937022"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:18:30.938479"], ["updated_at", "2023-02-17 19:18:30.938479"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:18:30.939669"], ["updated_at", "2023-02-17 19:18:30.939669"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:18:30.941058"], ["updated_at", "2023-02-17 19:18:30.941058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.942440"], ["updated_at", "2023-02-17 19:18:30.942440"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:18:30.943848"], ["updated_at", "2023-02-17 19:18:30.943848"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:18:30.945078"], ["updated_at", "2023-02-17 19:18:30.945078"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:18:30.946475"], ["updated_at", "2023-02-17 19:18:30.946475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:18:30.947665"], ["updated_at", "2023-02-17 19:18:30.947665"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:18:30.949027"], ["updated_at", "2023-02-17 19:18:30.949027"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:18:30.950212"], ["updated_at", "2023-02-17 19:18:30.950212"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:18:30.951633"], ["updated_at", "2023-02-17 19:18:30.951633"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:18:30.953251"], ["updated_at", "2023-02-17 19:18:30.953251"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:18:30.954688"], ["updated_at", "2023-02-17 19:18:30.954688"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:18:30.955849"], ["updated_at", "2023-02-17 19:18:30.955849"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:18:30.957289"], ["updated_at", "2023-02-17 19:18:30.957289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:18:30.958558"], ["updated_at", "2023-02-17 19:18:30.958558"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:18:30.959978"], ["updated_at", "2023-02-17 19:18:30.959978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:18:30.961227"], ["updated_at", "2023-02-17 19:18:30.961227"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:18:30.963040"], ["updated_at", "2023-02-17 19:18:30.963040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:18:30.964326"], ["updated_at", "2023-02-17 19:18:30.964326"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:18:30.965692"], ["updated_at", "2023-02-17 19:18:30.965692"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:18:30.966853"], ["updated_at", "2023-02-17 19:18:30.966853"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:18:30.968323"], ["updated_at", "2023-02-17 19:18:30.968323"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.969546"], ["updated_at", "2023-02-17 19:18:30.969546"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:18:30.970936"], ["updated_at", "2023-02-17 19:18:30.970936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:18:30.972307"], ["updated_at", "2023-02-17 19:18:30.972307"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:18:30.973760"], ["updated_at", "2023-02-17 19:18:30.973760"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:18:30.975020"], ["updated_at", "2023-02-17 19:18:30.975020"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:18:30.976450"], ["updated_at", "2023-02-17 19:18:30.976450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.977621"], ["updated_at", "2023-02-17 19:18:30.977621"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:18:30.978984"], ["updated_at", "2023-02-17 19:18:30.978984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:18:30.980132"], ["updated_at", "2023-02-17 19:18:30.980132"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:18:30.981532"], ["updated_at", "2023-02-17 19:18:30.981532"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:18:30.983193"], ["updated_at", "2023-02-17 19:18:30.983193"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:18:30.984699"], ["updated_at", "2023-02-17 19:18:30.984699"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:18:30.985931"], ["updated_at", "2023-02-17 19:18:30.985931"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:18:30.987333"], ["updated_at", "2023-02-17 19:18:30.987333"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:18:30.988518"], ["updated_at", "2023-02-17 19:18:30.988518"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:18:30.989933"], ["updated_at", "2023-02-17 19:18:30.989933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:18:30.991195"], ["updated_at", "2023-02-17 19:18:30.991195"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:18:30.993074"], ["updated_at", "2023-02-17 19:18:30.993074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:18:30.994546"], ["updated_at", "2023-02-17 19:18:30.994546"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:18:30.996078"], ["updated_at", "2023-02-17 19:18:30.996078"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:18:30.997296"], ["updated_at", "2023-02-17 19:18:30.997296"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:18:30.998674"], ["updated_at", "2023-02-17 19:18:30.998674"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:18:30.999970"], ["updated_at", "2023-02-17 19:18:30.999970"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:18:31.001391"], ["updated_at", "2023-02-17 19:18:31.001391"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:18:31.002784"], ["updated_at", "2023-02-17 19:18:31.002784"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:18:31.004204"], ["updated_at", "2023-02-17 19:18:31.004204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:18:31.005498"], ["updated_at", "2023-02-17 19:18:31.005498"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:18:31.006984"], ["updated_at", "2023-02-17 19:18:31.006984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:18:31.008257"], ["updated_at", "2023-02-17 19:18:31.008257"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:18:31.009607"], ["updated_at", "2023-02-17 19:18:31.009607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:18:31.010788"], ["updated_at", "2023-02-17 19:18:31.010788"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:18:31.012527"], ["updated_at", "2023-02-17 19:18:31.012527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:18:31.013767"], ["updated_at", "2023-02-17 19:18:31.013767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:18:31.015018"], ["updated_at", "2023-02-17 19:18:31.015018"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:18:31.016394"], ["updated_at", "2023-02-17 19:18:31.016394"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:18:31.017838"], ["updated_at", "2023-02-17 19:18:31.017838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:18:31.018973"], ["updated_at", "2023-02-17 19:18:31.018973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:18:31.019986"], ["updated_at", "2023-02-17 19:18:31.019986"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:31.031688"], ["updated_at", "2023-02-17 19:18:31.031688"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:31.033120"], ["updated_at", "2023-02-17 19:18:31.033120"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:31.034175"], ["updated_at", "2023-02-17 19:18:31.034175"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.035090"], ["updated_at", "2023-02-17 19:18:31.035090"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.035850"], ["updated_at", "2023-02-17 19:18:31.035850"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.036573"], ["updated_at", "2023-02-17 19:18:31.036573"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.037303"], ["updated_at", "2023-02-17 19:18:31.037303"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.038020"], ["updated_at", "2023-02-17 19:18:31.038020"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:31.038755"], ["updated_at", "2023-02-17 19:18:31.038755"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.039608"], ["updated_at", "2023-02-17 19:18:31.039608"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.040442"], ["updated_at", "2023-02-17 19:18:31.040442"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.041200"], ["updated_at", "2023-02-17 19:18:31.041200"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.042119"], ["updated_at", "2023-02-17 19:18:31.042119"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.043180"], ["updated_at", "2023-02-17 19:18:31.043180"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.043989"], ["updated_at", "2023-02-17 19:18:31.043989"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.044760"], ["updated_at", "2023-02-17 19:18:31.044760"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.045540"], ["updated_at", "2023-02-17 19:18:31.045540"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.046279"], ["updated_at", "2023-02-17 19:18:31.046279"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.046992"], ["updated_at", "2023-02-17 19:18:31.046992"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.047707"], ["updated_at", "2023-02-17 19:18:31.047707"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.048433"], ["updated_at", "2023-02-17 19:18:31.048433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:31.059901"], ["updated_at", "2023-02-17 19:18:31.059901"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:31.061143"], ["updated_at", "2023-02-17 19:18:31.061143"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:31.062125"], ["updated_at", "2023-02-17 19:18:31.062125"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.063127"], ["updated_at", "2023-02-17 19:18:31.063127"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.063875"], ["updated_at", "2023-02-17 19:18:31.063875"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.064550"], ["updated_at", "2023-02-17 19:18:31.064550"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.065254"], ["updated_at", "2023-02-17 19:18:31.065254"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.065944"], ["updated_at", "2023-02-17 19:18:31.065944"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:31.066684"], ["updated_at", "2023-02-17 19:18:31.066684"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.067546"], ["updated_at", "2023-02-17 19:18:31.067546"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.068367"], ["updated_at", "2023-02-17 19:18:31.068367"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.069112"], ["updated_at", "2023-02-17 19:18:31.069112"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.069861"], ["updated_at", "2023-02-17 19:18:31.069861"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.070595"], ["updated_at", "2023-02-17 19:18:31.070595"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.071318"], ["updated_at", "2023-02-17 19:18:31.071318"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.072233"], ["updated_at", "2023-02-17 19:18:31.072233"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.073314"], ["updated_at", "2023-02-17 19:18:31.073314"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.074146"], ["updated_at", "2023-02-17 19:18:31.074146"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.074925"], ["updated_at", "2023-02-17 19:18:31.074925"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.075689"], ["updated_at", "2023-02-17 19:18:31.075689"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.076425"], ["updated_at", "2023-02-17 19:18:31.076425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.092092"], ["updated_at", "2023-02-17 19:18:31.092092"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.093150"], ["updated_at", "2023-02-17 19:18:31.093150"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.093988"], ["updated_at", "2023-02-17 19:18:31.093988"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.094696"], ["updated_at", "2023-02-17 19:18:31.094696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.095474"], ["updated_at", "2023-02-17 19:18:31.095474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.096296"], ["updated_at", "2023-02-17 19:18:31.096296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.097048"], ["updated_at", "2023-02-17 19:18:31.097048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.097747"], ["updated_at", "2023-02-17 19:18:31.097747"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.098442"], ["updated_at", "2023-02-17 19:18:31.098442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.099138"], ["updated_at", "2023-02-17 19:18:31.099138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.099831"], ["updated_at", "2023-02-17 19:18:31.099831"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.100538"], ["updated_at", "2023-02-17 19:18:31.100538"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.101243"], ["updated_at", "2023-02-17 19:18:31.101243"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.101947"], ["updated_at", "2023-02-17 19:18:31.101947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.102640"], ["updated_at", "2023-02-17 19:18:31.102640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.103355"], ["updated_at", "2023-02-17 19:18:31.103355"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.118623"], ["updated_at", "2023-02-17 19:18:31.118623"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.119596"], ["updated_at", "2023-02-17 19:18:31.119596"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.120354"], ["updated_at", "2023-02-17 19:18:31.120354"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.121084"], ["updated_at", "2023-02-17 19:18:31.121084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.121838"], ["updated_at", "2023-02-17 19:18:31.121838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.122555"], ["updated_at", "2023-02-17 19:18:31.122555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.123274"], ["updated_at", "2023-02-17 19:18:31.123274"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.123989"], ["updated_at", "2023-02-17 19:18:31.123989"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.124684"], ["updated_at", "2023-02-17 19:18:31.124684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.125401"], ["updated_at", "2023-02-17 19:18:31.125401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.126104"], ["updated_at", "2023-02-17 19:18:31.126104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.126800"], ["updated_at", "2023-02-17 19:18:31.126800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.127494"], ["updated_at", "2023-02-17 19:18:31.127494"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.128170"], ["updated_at", "2023-02-17 19:18:31.128170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.128857"], ["updated_at", "2023-02-17 19:18:31.128857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.129556"], ["updated_at", "2023-02-17 19:18:31.129556"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.144875"], ["updated_at", "2023-02-17 19:18:31.144875"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.145874"], ["updated_at", "2023-02-17 19:18:31.145874"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.146623"], ["updated_at", "2023-02-17 19:18:31.146623"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.147352"], ["updated_at", "2023-02-17 19:18:31.147352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.148132"], ["updated_at", "2023-02-17 19:18:31.148132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.148844"], ["updated_at", "2023-02-17 19:18:31.148844"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.149555"], ["updated_at", "2023-02-17 19:18:31.149555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.150249"], ["updated_at", "2023-02-17 19:18:31.150249"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.150946"], ["updated_at", "2023-02-17 19:18:31.150946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.151629"], ["updated_at", "2023-02-17 19:18:31.151629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.152312"], ["updated_at", "2023-02-17 19:18:31.152312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.153014"], ["updated_at", "2023-02-17 19:18:31.153014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.153702"], ["updated_at", "2023-02-17 19:18:31.153702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.154383"], ["updated_at", "2023-02-17 19:18:31.154383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.155091"], ["updated_at", "2023-02-17 19:18:31.155091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.155784"], ["updated_at", "2023-02-17 19:18:31.155784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.170957"], ["updated_at", "2023-02-17 19:18:31.170957"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.171942"], ["updated_at", "2023-02-17 19:18:31.171942"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.172699"], ["updated_at", "2023-02-17 19:18:31.172699"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.173401"], ["updated_at", "2023-02-17 19:18:31.173401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.174170"], ["updated_at", "2023-02-17 19:18:31.174170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.174917"], ["updated_at", "2023-02-17 19:18:31.174917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.175611"], ["updated_at", "2023-02-17 19:18:31.175611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.176327"], ["updated_at", "2023-02-17 19:18:31.176327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.177035"], ["updated_at", "2023-02-17 19:18:31.177035"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.177714"], ["updated_at", "2023-02-17 19:18:31.177714"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.178425"], ["updated_at", "2023-02-17 19:18:31.178425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.179137"], ["updated_at", "2023-02-17 19:18:31.179137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.179825"], ["updated_at", "2023-02-17 19:18:31.179825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.180509"], ["updated_at", "2023-02-17 19:18:31.180509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.181233"], ["updated_at", "2023-02-17 19:18:31.181233"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.181941"], ["updated_at", "2023-02-17 19:18:31.181941"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.197119"], ["updated_at", "2023-02-17 19:18:31.197119"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.198106"], ["updated_at", "2023-02-17 19:18:31.198106"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.198876"], ["updated_at", "2023-02-17 19:18:31.198876"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.199588"], ["updated_at", "2023-02-17 19:18:31.199588"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.200345"], ["updated_at", "2023-02-17 19:18:31.200345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.201091"], ["updated_at", "2023-02-17 19:18:31.201091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.201799"], ["updated_at", "2023-02-17 19:18:31.201799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.202515"], ["updated_at", "2023-02-17 19:18:31.202515"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.203234"], ["updated_at", "2023-02-17 19:18:31.203234"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.203931"], ["updated_at", "2023-02-17 19:18:31.203931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.204626"], ["updated_at", "2023-02-17 19:18:31.204626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.205330"], ["updated_at", "2023-02-17 19:18:31.205330"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.206030"], ["updated_at", "2023-02-17 19:18:31.206030"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.206726"], ["updated_at", "2023-02-17 19:18:31.206726"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.207443"], ["updated_at", "2023-02-17 19:18:31.207443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.208128"], ["updated_at", "2023-02-17 19:18:31.208128"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.223279"], ["updated_at", "2023-02-17 19:18:31.223279"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.224262"], ["updated_at", "2023-02-17 19:18:31.224262"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.225035"], ["updated_at", "2023-02-17 19:18:31.225035"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.225769"], ["updated_at", "2023-02-17 19:18:31.225769"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.226554"], ["updated_at", "2023-02-17 19:18:31.226554"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.227309"], ["updated_at", "2023-02-17 19:18:31.227309"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.228035"], ["updated_at", "2023-02-17 19:18:31.228035"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.228729"], ["updated_at", "2023-02-17 19:18:31.228729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.229459"], ["updated_at", "2023-02-17 19:18:31.229459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.230190"], ["updated_at", "2023-02-17 19:18:31.230190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.230925"], ["updated_at", "2023-02-17 19:18:31.230925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.231638"], ["updated_at", "2023-02-17 19:18:31.231638"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.232361"], ["updated_at", "2023-02-17 19:18:31.232361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.233093"], ["updated_at", "2023-02-17 19:18:31.233093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.233794"], ["updated_at", "2023-02-17 19:18:31.233794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.234516"], ["updated_at", "2023-02-17 19:18:31.234516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:18:31 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 15ms (Views: 11.2ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:31.259531"], ["updated_at", "2023-02-17 19:18:31.259531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:18:31.261026"], ["updated_at", "2023-02-17 19:18:31.261026"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:18:31.263829"], ["updated_at", "2023-02-17 19:18:31.263829"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:18:31.265032"], ["updated_at", "2023-02-17 19:18:31.265032"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:18:31.267752"], ["updated_at", "2023-02-17 19:18:31.267752"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:18:31.268944"], ["updated_at", "2023-02-17 19:18:31.268944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:18:31.271042"], ["updated_at", "2023-02-17 19:18:31.271042"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:18:31.272473"], ["updated_at", "2023-02-17 19:18:31.272473"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:18:31.274051"], ["updated_at", "2023-02-17 19:18:31.274051"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:18:31.275373"], ["updated_at", "2023-02-17 19:18:31.275373"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:18:31.276805"], ["updated_at", "2023-02-17 19:18:31.276805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:18:31.278036"], ["updated_at", "2023-02-17 19:18:31.278036"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:18:31.279438"], ["updated_at", "2023-02-17 19:18:31.279438"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:18:31.280611"], ["updated_at", "2023-02-17 19:18:31.280611"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:18:31.281976"], ["updated_at", "2023-02-17 19:18:31.281976"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:18:31.283203"], ["updated_at", "2023-02-17 19:18:31.283203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:18:31.284556"], ["updated_at", "2023-02-17 19:18:31.284556"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:18:31.285760"], ["updated_at", "2023-02-17 19:18:31.285760"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:18:31.287185"], ["updated_at", "2023-02-17 19:18:31.287185"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:18:31.288481"], ["updated_at", "2023-02-17 19:18:31.288481"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:18:31.289900"], ["updated_at", "2023-02-17 19:18:31.289900"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:18:31.291101"], ["updated_at", "2023-02-17 19:18:31.291101"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:18:31.292475"], ["updated_at", "2023-02-17 19:18:31.292475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:18:31.293679"], ["updated_at", "2023-02-17 19:18:31.293679"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:18:31.295092"], ["updated_at", "2023-02-17 19:18:31.295092"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:18:31.296289"], ["updated_at", "2023-02-17 19:18:31.296289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:18:31.297675"], ["updated_at", "2023-02-17 19:18:31.297675"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:18:31.298901"], ["updated_at", "2023-02-17 19:18:31.298901"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:18:31.300310"], ["updated_at", "2023-02-17 19:18:31.300310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:18:31.301502"], ["updated_at", "2023-02-17 19:18:31.301502"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:18:31.302876"], ["updated_at", "2023-02-17 19:18:31.302876"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:18:31.304068"], ["updated_at", "2023-02-17 19:18:31.304068"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:18:31.305442"], ["updated_at", "2023-02-17 19:18:31.305442"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:18:31.306643"], ["updated_at", "2023-02-17 19:18:31.306643"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:18:31.308034"], ["updated_at", "2023-02-17 19:18:31.308034"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:18:31.309232"], ["updated_at", "2023-02-17 19:18:31.309232"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:18:31.310609"], ["updated_at", "2023-02-17 19:18:31.310609"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:18:31.311781"], ["updated_at", "2023-02-17 19:18:31.311781"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:18:31.313176"], ["updated_at", "2023-02-17 19:18:31.313176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:18:31.314408"], ["updated_at", "2023-02-17 19:18:31.314408"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:18:31.315774"], ["updated_at", "2023-02-17 19:18:31.315774"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:18:31.316959"], ["updated_at", "2023-02-17 19:18:31.316959"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:18:31.318312"], ["updated_at", "2023-02-17 19:18:31.318312"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:18:31.319465"], ["updated_at", "2023-02-17 19:18:31.319465"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:18:31.320796"], ["updated_at", "2023-02-17 19:18:31.320796"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:18:31.321975"], ["updated_at", "2023-02-17 19:18:31.321975"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:18:31.323362"], ["updated_at", "2023-02-17 19:18:31.323362"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:18:31.324539"], ["updated_at", "2023-02-17 19:18:31.324539"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:18:31.325918"], ["updated_at", "2023-02-17 19:18:31.325918"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:18:31.327076"], ["updated_at", "2023-02-17 19:18:31.327076"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:18:31.328437"], ["updated_at", "2023-02-17 19:18:31.328437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:18:31.329632"], ["updated_at", "2023-02-17 19:18:31.329632"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:18:31.331008"], ["updated_at", "2023-02-17 19:18:31.331008"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:18:31.332203"], ["updated_at", "2023-02-17 19:18:31.332203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:18:31.333711"], ["updated_at", "2023-02-17 19:18:31.333711"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:18:31.334926"], ["updated_at", "2023-02-17 19:18:31.334926"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:18:31.336290"], ["updated_at", "2023-02-17 19:18:31.336290"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:18:31.337467"], ["updated_at", "2023-02-17 19:18:31.337467"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:18:31.338911"], ["updated_at", "2023-02-17 19:18:31.338911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:18:31.340120"], ["updated_at", "2023-02-17 19:18:31.340120"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:18:31.341555"], ["updated_at", "2023-02-17 19:18:31.341555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:18:31.342765"], ["updated_at", "2023-02-17 19:18:31.342765"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:18:31.344152"], ["updated_at", "2023-02-17 19:18:31.344152"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:18:31.345313"], ["updated_at", "2023-02-17 19:18:31.345313"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:18:31.346669"], ["updated_at", "2023-02-17 19:18:31.346669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:18:31.347843"], ["updated_at", "2023-02-17 19:18:31.347843"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:18:31.349206"], ["updated_at", "2023-02-17 19:18:31.349206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:18:31.350370"], ["updated_at", "2023-02-17 19:18:31.350370"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:18:31.351753"], ["updated_at", "2023-02-17 19:18:31.351753"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:18:31.353118"], ["updated_at", "2023-02-17 19:18:31.353118"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:18:31.354571"], ["updated_at", "2023-02-17 19:18:31.354571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:18:31.355802"], ["updated_at", "2023-02-17 19:18:31.355802"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:18:31.357185"], ["updated_at", "2023-02-17 19:18:31.357185"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:18:31.358398"], ["updated_at", "2023-02-17 19:18:31.358398"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:18:31.359772"], ["updated_at", "2023-02-17 19:18:31.359772"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:18:31.360974"], ["updated_at", "2023-02-17 19:18:31.360974"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:18:31.362404"], ["updated_at", "2023-02-17 19:18:31.362404"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:18:31.363780"], ["updated_at", "2023-02-17 19:18:31.363780"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:18:31.365264"], ["updated_at", "2023-02-17 19:18:31.365264"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:18:31.366469"], ["updated_at", "2023-02-17 19:18:31.366469"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:18:31.367851"], ["updated_at", "2023-02-17 19:18:31.367851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:18:31.369062"], ["updated_at", "2023-02-17 19:18:31.369062"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:18:31.370725"], ["updated_at", "2023-02-17 19:18:31.370725"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:18:31.372077"], ["updated_at", "2023-02-17 19:18:31.372077"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:18:31.373518"], ["updated_at", "2023-02-17 19:18:31.373518"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:18:31.374725"], ["updated_at", "2023-02-17 19:18:31.374725"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:18:31.376088"], ["updated_at", "2023-02-17 19:18:31.376088"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:18:31.377267"], ["updated_at", "2023-02-17 19:18:31.377267"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:18:31.378747"], ["updated_at", "2023-02-17 19:18:31.378747"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:18:31.380098"], ["updated_at", "2023-02-17 19:18:31.380098"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:18:31.381675"], ["updated_at", "2023-02-17 19:18:31.381675"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:18:31.382963"], ["updated_at", "2023-02-17 19:18:31.382963"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:18:31.384390"], ["updated_at", "2023-02-17 19:18:31.384390"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:18:31.385579"], ["updated_at", "2023-02-17 19:18:31.385579"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:18:31.387113"], ["updated_at", "2023-02-17 19:18:31.387113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:18:31.388298"], ["updated_at", "2023-02-17 19:18:31.388298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:18:31.389548"], ["updated_at", "2023-02-17 19:18:31.389548"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:18:31.391037"], ["updated_at", "2023-02-17 19:18:31.391037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:18:31.392678"], ["updated_at", "2023-02-17 19:18:31.392678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:18:31.393851"], ["updated_at", "2023-02-17 19:18:31.393851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:18:31.394846"], ["updated_at", "2023-02-17 19:18:31.394846"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:31.406533"], ["updated_at", "2023-02-17 19:18:31.406533"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:31.407981"], ["updated_at", "2023-02-17 19:18:31.407981"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:31.408961"], ["updated_at", "2023-02-17 19:18:31.408961"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.409821"], ["updated_at", "2023-02-17 19:18:31.409821"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.410616"], ["updated_at", "2023-02-17 19:18:31.410616"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.411329"], ["updated_at", "2023-02-17 19:18:31.411329"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.412032"], ["updated_at", "2023-02-17 19:18:31.412032"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.412704"], ["updated_at", "2023-02-17 19:18:31.412704"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:31.413473"], ["updated_at", "2023-02-17 19:18:31.413473"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.414337"], ["updated_at", "2023-02-17 19:18:31.414337"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.415220"], ["updated_at", "2023-02-17 19:18:31.415220"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.416141"], ["updated_at", "2023-02-17 19:18:31.416141"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.416932"], ["updated_at", "2023-02-17 19:18:31.416932"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.417689"], ["updated_at", "2023-02-17 19:18:31.417689"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.418444"], ["updated_at", "2023-02-17 19:18:31.418444"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.419190"], ["updated_at", "2023-02-17 19:18:31.419190"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.419919"], ["updated_at", "2023-02-17 19:18:31.419919"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.420649"], ["updated_at", "2023-02-17 19:18:31.420649"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.421451"], ["updated_at", "2023-02-17 19:18:31.421451"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.422217"], ["updated_at", "2023-02-17 19:18:31.422217"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.422999"], ["updated_at", "2023-02-17 19:18:31.422999"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:31.434402"], ["updated_at", "2023-02-17 19:18:31.434402"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:31.435599"], ["updated_at", "2023-02-17 19:18:31.435599"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:31.436473"], ["updated_at", "2023-02-17 19:18:31.436473"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.437334"], ["updated_at", "2023-02-17 19:18:31.437334"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.438084"], ["updated_at", "2023-02-17 19:18:31.438084"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.438841"], ["updated_at", "2023-02-17 19:18:31.438841"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.439584"], ["updated_at", "2023-02-17 19:18:31.439584"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.440296"], ["updated_at", "2023-02-17 19:18:31.440296"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:31.441083"], ["updated_at", "2023-02-17 19:18:31.441083"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.441966"], ["updated_at", "2023-02-17 19:18:31.441966"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.442895"], ["updated_at", "2023-02-17 19:18:31.442895"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.443736"], ["updated_at", "2023-02-17 19:18:31.443736"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.444541"], ["updated_at", "2023-02-17 19:18:31.444541"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.445295"], ["updated_at", "2023-02-17 19:18:31.445295"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.446036"], ["updated_at", "2023-02-17 19:18:31.446036"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.446779"], ["updated_at", "2023-02-17 19:18:31.446779"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.447506"], ["updated_at", "2023-02-17 19:18:31.447506"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.448291"], ["updated_at", "2023-02-17 19:18:31.448291"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.449184"], ["updated_at", "2023-02-17 19:18:31.449184"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.449943"], ["updated_at", "2023-02-17 19:18:31.449943"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.450689"], ["updated_at", "2023-02-17 19:18:31.450689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.468900"], ["updated_at", "2023-02-17 19:18:31.468900"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.470172"], ["updated_at", "2023-02-17 19:18:31.470172"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.471243"], ["updated_at", "2023-02-17 19:18:31.471243"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.472276"], ["updated_at", "2023-02-17 19:18:31.472276"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.473368"], ["updated_at", "2023-02-17 19:18:31.473368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.474421"], ["updated_at", "2023-02-17 19:18:31.474421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.475378"], ["updated_at", "2023-02-17 19:18:31.475378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.476291"], ["updated_at", "2023-02-17 19:18:31.476291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.477267"], ["updated_at", "2023-02-17 19:18:31.477267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.478203"], ["updated_at", "2023-02-17 19:18:31.478203"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.479108"], ["updated_at", "2023-02-17 19:18:31.479108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.480022"], ["updated_at", "2023-02-17 19:18:31.480022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.480916"], ["updated_at", "2023-02-17 19:18:31.480916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.481825"], ["updated_at", "2023-02-17 19:18:31.481825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.482771"], ["updated_at", "2023-02-17 19:18:31.482771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.483809"], ["updated_at", "2023-02-17 19:18:31.483809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.503141"], ["updated_at", "2023-02-17 19:18:31.503141"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.504492"], ["updated_at", "2023-02-17 19:18:31.504492"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.505609"], ["updated_at", "2023-02-17 19:18:31.505609"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.506701"], ["updated_at", "2023-02-17 19:18:31.506701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.507817"], ["updated_at", "2023-02-17 19:18:31.507817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.508787"], ["updated_at", "2023-02-17 19:18:31.508787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.509727"], ["updated_at", "2023-02-17 19:18:31.509727"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.510663"], ["updated_at", "2023-02-17 19:18:31.510663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.511616"], ["updated_at", "2023-02-17 19:18:31.511616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.512563"], ["updated_at", "2023-02-17 19:18:31.512563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.513540"], ["updated_at", "2023-02-17 19:18:31.513540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.514568"], ["updated_at", "2023-02-17 19:18:31.514568"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.515505"], ["updated_at", "2023-02-17 19:18:31.515505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.516428"], ["updated_at", "2023-02-17 19:18:31.516428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.517351"], ["updated_at", "2023-02-17 19:18:31.517351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.518297"], ["updated_at", "2023-02-17 19:18:31.518297"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.537168"], ["updated_at", "2023-02-17 19:18:31.537168"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.538344"], ["updated_at", "2023-02-17 19:18:31.538344"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.539349"], ["updated_at", "2023-02-17 19:18:31.539349"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.540334"], ["updated_at", "2023-02-17 19:18:31.540334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.541426"], ["updated_at", "2023-02-17 19:18:31.541426"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.542403"], ["updated_at", "2023-02-17 19:18:31.542403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.543359"], ["updated_at", "2023-02-17 19:18:31.543359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.544268"], ["updated_at", "2023-02-17 19:18:31.544268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.545192"], ["updated_at", "2023-02-17 19:18:31.545192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.546102"], ["updated_at", "2023-02-17 19:18:31.546102"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.547007"], ["updated_at", "2023-02-17 19:18:31.547007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.547910"], ["updated_at", "2023-02-17 19:18:31.547910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.548792"], ["updated_at", "2023-02-17 19:18:31.548792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.549741"], ["updated_at", "2023-02-17 19:18:31.549741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.550654"], ["updated_at", "2023-02-17 19:18:31.550654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.551536"], ["updated_at", "2023-02-17 19:18:31.551536"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.577462"], ["updated_at", "2023-02-17 19:18:31.577462"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.578606"], ["updated_at", "2023-02-17 19:18:31.578606"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.579566"], ["updated_at", "2023-02-17 19:18:31.579566"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.580487"], ["updated_at", "2023-02-17 19:18:31.580487"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.581481"], ["updated_at", "2023-02-17 19:18:31.581481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.582453"], ["updated_at", "2023-02-17 19:18:31.582453"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.583382"], ["updated_at", "2023-02-17 19:18:31.583382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.584322"], ["updated_at", "2023-02-17 19:18:31.584322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.585239"], ["updated_at", "2023-02-17 19:18:31.585239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.586135"], ["updated_at", "2023-02-17 19:18:31.586135"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.587051"], ["updated_at", "2023-02-17 19:18:31.587051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.587991"], ["updated_at", "2023-02-17 19:18:31.587991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.588920"], ["updated_at", "2023-02-17 19:18:31.588920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.589853"], ["updated_at", "2023-02-17 19:18:31.589853"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.590774"], ["updated_at", "2023-02-17 19:18:31.590774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.591661"], ["updated_at", "2023-02-17 19:18:31.591661"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.610439"], ["updated_at", "2023-02-17 19:18:31.610439"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.611530"], ["updated_at", "2023-02-17 19:18:31.611530"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.612545"], ["updated_at", "2023-02-17 19:18:31.612545"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.613440"], ["updated_at", "2023-02-17 19:18:31.613440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.614701"], ["updated_at", "2023-02-17 19:18:31.614701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.615770"], ["updated_at", "2023-02-17 19:18:31.615770"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.616722"], ["updated_at", "2023-02-17 19:18:31.616722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.617688"], ["updated_at", "2023-02-17 19:18:31.617688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.618636"], ["updated_at", "2023-02-17 19:18:31.618636"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.619481"], ["updated_at", "2023-02-17 19:18:31.619481"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.620348"], ["updated_at", "2023-02-17 19:18:31.620348"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.621409"], ["updated_at", "2023-02-17 19:18:31.621409"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.622491"], ["updated_at", "2023-02-17 19:18:31.622491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.623468"], ["updated_at", "2023-02-17 19:18:31.623468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.624635"], ["updated_at", "2023-02-17 19:18:31.624635"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:31.625607"], ["updated_at", "2023-02-17 19:18:31.625607"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.642639"], ["updated_at", "2023-02-17 19:18:31.642639"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.643637"], ["updated_at", "2023-02-17 19:18:31.643637"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.644734"], ["updated_at", "2023-02-17 19:18:31.644734"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.645786"], ["updated_at", "2023-02-17 19:18:31.645786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.646703"], ["updated_at", "2023-02-17 19:18:31.646703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.647446"], ["updated_at", "2023-02-17 19:18:31.647446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.648157"], ["updated_at", "2023-02-17 19:18:31.648157"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.648883"], ["updated_at", "2023-02-17 19:18:31.648883"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.649745"], ["updated_at", "2023-02-17 19:18:31.649745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.650561"], ["updated_at", "2023-02-17 19:18:31.650561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.651292"], ["updated_at", "2023-02-17 19:18:31.651292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.651996"], ["updated_at", "2023-02-17 19:18:31.651996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.652699"], ["updated_at", "2023-02-17 19:18:31.652699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.653411"], ["updated_at", "2023-02-17 19:18:31.653411"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.654375"], ["updated_at", "2023-02-17 19:18:31.654375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:31.655428"], ["updated_at", "2023-02-17 19:18:31.655428"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:18:31 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:31.673062"], ["updated_at", "2023-02-17 19:18:31.673062"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:18:31.674669"], ["updated_at", "2023-02-17 19:18:31.674669"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:18:31.677745"], ["updated_at", "2023-02-17 19:18:31.677745"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:18:31.678912"], ["updated_at", "2023-02-17 19:18:31.678912"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:18:31.681531"], ["updated_at", "2023-02-17 19:18:31.681531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:18:31.682684"], ["updated_at", "2023-02-17 19:18:31.682684"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:18:31.685006"], ["updated_at", "2023-02-17 19:18:31.685006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:18:31.686550"], ["updated_at", "2023-02-17 19:18:31.686550"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:18:31.688091"], ["updated_at", "2023-02-17 19:18:31.688091"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:18:31.689365"], ["updated_at", "2023-02-17 19:18:31.689365"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:18:31.690748"], ["updated_at", "2023-02-17 19:18:31.690748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:18:31.692064"], ["updated_at", "2023-02-17 19:18:31.692064"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:18:31.693539"], ["updated_at", "2023-02-17 19:18:31.693539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:18:31.694850"], ["updated_at", "2023-02-17 19:18:31.694850"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:18:31.696288"], ["updated_at", "2023-02-17 19:18:31.696288"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:18:31.697471"], ["updated_at", "2023-02-17 19:18:31.697471"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:18:31.698844"], ["updated_at", "2023-02-17 19:18:31.698844"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:18:31.700026"], ["updated_at", "2023-02-17 19:18:31.700026"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:18:31.701363"], ["updated_at", "2023-02-17 19:18:31.701363"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:18:31.702536"], ["updated_at", "2023-02-17 19:18:31.702536"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:18:31.703939"], ["updated_at", "2023-02-17 19:18:31.703939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:18:31.705581"], ["updated_at", "2023-02-17 19:18:31.705581"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:18:31.707073"], ["updated_at", "2023-02-17 19:18:31.707073"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:18:31.708312"], ["updated_at", "2023-02-17 19:18:31.708312"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:18:31.709647"], ["updated_at", "2023-02-17 19:18:31.709647"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:18:31.710803"], ["updated_at", "2023-02-17 19:18:31.710803"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:18:31.712130"], ["updated_at", "2023-02-17 19:18:31.712130"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:18:31.713303"], ["updated_at", "2023-02-17 19:18:31.713303"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:18:31.714978"], ["updated_at", "2023-02-17 19:18:31.714978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:18:31.716331"], ["updated_at", "2023-02-17 19:18:31.716331"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:18:31.717728"], ["updated_at", "2023-02-17 19:18:31.717728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:18:31.718927"], ["updated_at", "2023-02-17 19:18:31.718927"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:18:31.720270"], ["updated_at", "2023-02-17 19:18:31.720270"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:18:31.721463"], ["updated_at", "2023-02-17 19:18:31.721463"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:18:31.722812"], ["updated_at", "2023-02-17 19:18:31.722812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:18:31.724009"], ["updated_at", "2023-02-17 19:18:31.724009"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:18:31.725533"], ["updated_at", "2023-02-17 19:18:31.725533"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:18:31.726777"], ["updated_at", "2023-02-17 19:18:31.726777"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:18:31.728149"], ["updated_at", "2023-02-17 19:18:31.728149"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:18:31.729337"], ["updated_at", "2023-02-17 19:18:31.729337"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:18:31.730698"], ["updated_at", "2023-02-17 19:18:31.730698"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:18:31.731852"], ["updated_at", "2023-02-17 19:18:31.731852"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:18:31.733233"], ["updated_at", "2023-02-17 19:18:31.733233"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:18:31.734556"], ["updated_at", "2023-02-17 19:18:31.734556"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:18:31.736264"], ["updated_at", "2023-02-17 19:18:31.736264"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:18:31.737471"], ["updated_at", "2023-02-17 19:18:31.737471"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:18:31.738831"], ["updated_at", "2023-02-17 19:18:31.738831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:18:31.739987"], ["updated_at", "2023-02-17 19:18:31.739987"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:18:31.741346"], ["updated_at", "2023-02-17 19:18:31.741346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:18:31.742545"], ["updated_at", "2023-02-17 19:18:31.742545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:18:31.743987"], ["updated_at", "2023-02-17 19:18:31.743987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:18:31.745599"], ["updated_at", "2023-02-17 19:18:31.745599"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:18:31.747049"], ["updated_at", "2023-02-17 19:18:31.747049"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:18:31.748275"], ["updated_at", "2023-02-17 19:18:31.748275"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:18:31.749720"], ["updated_at", "2023-02-17 19:18:31.749720"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:18:31.750949"], ["updated_at", "2023-02-17 19:18:31.750949"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:18:31.752292"], ["updated_at", "2023-02-17 19:18:31.752292"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:18:31.753488"], ["updated_at", "2023-02-17 19:18:31.753488"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:18:31.754962"], ["updated_at", "2023-02-17 19:18:31.754962"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:18:31.756246"], ["updated_at", "2023-02-17 19:18:31.756246"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:18:31.757623"], ["updated_at", "2023-02-17 19:18:31.757623"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:18:31.758807"], ["updated_at", "2023-02-17 19:18:31.758807"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:18:31.760167"], ["updated_at", "2023-02-17 19:18:31.760167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:18:31.761341"], ["updated_at", "2023-02-17 19:18:31.761341"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:18:31.762679"], ["updated_at", "2023-02-17 19:18:31.762679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:18:31.763847"], ["updated_at", "2023-02-17 19:18:31.763847"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:18:31.765628"], ["updated_at", "2023-02-17 19:18:31.765628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:18:31.767153"], ["updated_at", "2023-02-17 19:18:31.767153"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:18:31.768788"], ["updated_at", "2023-02-17 19:18:31.768788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:18:31.770068"], ["updated_at", "2023-02-17 19:18:31.770068"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:18:31.771426"], ["updated_at", "2023-02-17 19:18:31.771426"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:18:31.772909"], ["updated_at", "2023-02-17 19:18:31.772909"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:18:31.774934"], ["updated_at", "2023-02-17 19:18:31.774934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:18:31.776454"], ["updated_at", "2023-02-17 19:18:31.776454"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:18:31.778208"], ["updated_at", "2023-02-17 19:18:31.778208"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:18:31.779505"], ["updated_at", "2023-02-17 19:18:31.779505"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:18:31.780847"], ["updated_at", "2023-02-17 19:18:31.780847"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:18:31.782027"], ["updated_at", "2023-02-17 19:18:31.782027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:18:31.783386"], ["updated_at", "2023-02-17 19:18:31.783386"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:18:31.784618"], ["updated_at", "2023-02-17 19:18:31.784618"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:18:31.786150"], ["updated_at", "2023-02-17 19:18:31.786150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:18:31.787404"], ["updated_at", "2023-02-17 19:18:31.787404"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:18:31.789117"], ["updated_at", "2023-02-17 19:18:31.789117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:18:31.790516"], ["updated_at", "2023-02-17 19:18:31.790516"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:18:31.791996"], ["updated_at", "2023-02-17 19:18:31.791996"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:18:31.793169"], ["updated_at", "2023-02-17 19:18:31.793169"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:18:31.794550"], ["updated_at", "2023-02-17 19:18:31.794550"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:18:31.796238"], ["updated_at", "2023-02-17 19:18:31.796238"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:18:31.798130"], ["updated_at", "2023-02-17 19:18:31.798130"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:18:31.799433"], ["updated_at", "2023-02-17 19:18:31.799433"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:18:31.800772"], ["updated_at", "2023-02-17 19:18:31.800772"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:18:31.802136"], ["updated_at", "2023-02-17 19:18:31.802136"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:18:31.803595"], ["updated_at", "2023-02-17 19:18:31.803595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:18:31.805074"], ["updated_at", "2023-02-17 19:18:31.805074"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:18:31.807063"], ["updated_at", "2023-02-17 19:18:31.807063"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:18:31.808427"], ["updated_at", "2023-02-17 19:18:31.808427"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:18:31.810761"], ["updated_at", "2023-02-17 19:18:31.810761"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:18:31.812293"], ["updated_at", "2023-02-17 19:18:31.812293"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:18:31.813786"], ["updated_at", "2023-02-17 19:18:31.813786"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:18:31.815147"], ["updated_at", "2023-02-17 19:18:31.815147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:18:31.816276"], ["updated_at", "2023-02-17 19:18:31.816276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:31.829269"], ["updated_at", "2023-02-17 19:18:31.829269"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:31.830728"], ["updated_at", "2023-02-17 19:18:31.830728"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:31.831785"], ["updated_at", "2023-02-17 19:18:31.831785"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.832724"], ["updated_at", "2023-02-17 19:18:31.832724"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.833530"], ["updated_at", "2023-02-17 19:18:31.833530"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.834222"], ["updated_at", "2023-02-17 19:18:31.834222"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.834997"], ["updated_at", "2023-02-17 19:18:31.834997"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.835721"], ["updated_at", "2023-02-17 19:18:31.835721"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:31.836476"], ["updated_at", "2023-02-17 19:18:31.836476"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.837345"], ["updated_at", "2023-02-17 19:18:31.837345"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.838415"], ["updated_at", "2023-02-17 19:18:31.838415"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.839472"], ["updated_at", "2023-02-17 19:18:31.839472"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.840475"], ["updated_at", "2023-02-17 19:18:31.840475"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.841300"], ["updated_at", "2023-02-17 19:18:31.841300"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.842063"], ["updated_at", "2023-02-17 19:18:31.842063"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.842819"], ["updated_at", "2023-02-17 19:18:31.842819"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.843720"], ["updated_at", "2023-02-17 19:18:31.843720"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.844542"], ["updated_at", "2023-02-17 19:18:31.844542"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.845603"], ["updated_at", "2023-02-17 19:18:31.845603"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.846733"], ["updated_at", "2023-02-17 19:18:31.846733"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.847855"], ["updated_at", "2023-02-17 19:18:31.847855"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:31.859699"], ["updated_at", "2023-02-17 19:18:31.859699"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:31.861188"], ["updated_at", "2023-02-17 19:18:31.861188"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:31.862512"], ["updated_at", "2023-02-17 19:18:31.862512"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.863738"], ["updated_at", "2023-02-17 19:18:31.863738"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.864855"], ["updated_at", "2023-02-17 19:18:31.864855"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.866025"], ["updated_at", "2023-02-17 19:18:31.866025"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.867075"], ["updated_at", "2023-02-17 19:18:31.867075"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:31.868118"], ["updated_at", "2023-02-17 19:18:31.868118"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:31.869054"], ["updated_at", "2023-02-17 19:18:31.869054"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.870300"], ["updated_at", "2023-02-17 19:18:31.870300"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.871515"], ["updated_at", "2023-02-17 19:18:31.871515"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.872694"], ["updated_at", "2023-02-17 19:18:31.872694"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.873854"], ["updated_at", "2023-02-17 19:18:31.873854"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.874931"], ["updated_at", "2023-02-17 19:18:31.874931"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.875849"], ["updated_at", "2023-02-17 19:18:31.875849"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.876700"], ["updated_at", "2023-02-17 19:18:31.876700"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.877534"], ["updated_at", "2023-02-17 19:18:31.877534"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.878301"], ["updated_at", "2023-02-17 19:18:31.878301"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.879034"], ["updated_at", "2023-02-17 19:18:31.879034"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.879775"], ["updated_at", "2023-02-17 19:18:31.879775"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:31.880792"], ["updated_at", "2023-02-17 19:18:31.880792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.898838"], ["updated_at", "2023-02-17 19:18:31.898838"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.899969"], ["updated_at", "2023-02-17 19:18:31.899969"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.900809"], ["updated_at", "2023-02-17 19:18:31.900809"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.901591"], ["updated_at", "2023-02-17 19:18:31.901591"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.902520"], ["updated_at", "2023-02-17 19:18:31.902520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.903634"], ["updated_at", "2023-02-17 19:18:31.903634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.904709"], ["updated_at", "2023-02-17 19:18:31.904709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.905724"], ["updated_at", "2023-02-17 19:18:31.905724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.906596"], ["updated_at", "2023-02-17 19:18:31.906596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.907546"], ["updated_at", "2023-02-17 19:18:31.907546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.908333"], ["updated_at", "2023-02-17 19:18:31.908333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.909054"], ["updated_at", "2023-02-17 19:18:31.909054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.909780"], ["updated_at", "2023-02-17 19:18:31.909780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.910824"], ["updated_at", "2023-02-17 19:18:31.910824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.911928"], ["updated_at", "2023-02-17 19:18:31.911928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:31.912883"], ["updated_at", "2023-02-17 19:18:31.912883"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.930204"], ["updated_at", "2023-02-17 19:18:31.930204"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.931237"], ["updated_at", "2023-02-17 19:18:31.931237"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.932004"], ["updated_at", "2023-02-17 19:18:31.932004"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.932744"], ["updated_at", "2023-02-17 19:18:31.932744"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.933530"], ["updated_at", "2023-02-17 19:18:31.933530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.934332"], ["updated_at", "2023-02-17 19:18:31.934332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.935128"], ["updated_at", "2023-02-17 19:18:31.935128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.935875"], ["updated_at", "2023-02-17 19:18:31.935875"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.936567"], ["updated_at", "2023-02-17 19:18:31.936567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.937309"], ["updated_at", "2023-02-17 19:18:31.937309"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.938216"], ["updated_at", "2023-02-17 19:18:31.938216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.939212"], ["updated_at", "2023-02-17 19:18:31.939212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.940247"], ["updated_at", "2023-02-17 19:18:31.940247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.941178"], ["updated_at", "2023-02-17 19:18:31.941178"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.941988"], ["updated_at", "2023-02-17 19:18:31.941988"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:31.942709"], ["updated_at", "2023-02-17 19:18:31.942709"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.959234"], ["updated_at", "2023-02-17 19:18:31.959234"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.960447"], ["updated_at", "2023-02-17 19:18:31.960447"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.961386"], ["updated_at", "2023-02-17 19:18:31.961386"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.962133"], ["updated_at", "2023-02-17 19:18:31.962133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.962902"], ["updated_at", "2023-02-17 19:18:31.962902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.963642"], ["updated_at", "2023-02-17 19:18:31.963642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.964394"], ["updated_at", "2023-02-17 19:18:31.964394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.965152"], ["updated_at", "2023-02-17 19:18:31.965152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.965942"], ["updated_at", "2023-02-17 19:18:31.965942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.966671"], ["updated_at", "2023-02-17 19:18:31.966671"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.967395"], ["updated_at", "2023-02-17 19:18:31.967395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.968108"], ["updated_at", "2023-02-17 19:18:31.968108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.968801"], ["updated_at", "2023-02-17 19:18:31.968801"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.969524"], ["updated_at", "2023-02-17 19:18:31.969524"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.970320"], ["updated_at", "2023-02-17 19:18:31.970320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:31.971289"], ["updated_at", "2023-02-17 19:18:31.971289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:31.988685"], ["updated_at", "2023-02-17 19:18:31.988685"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:31.989741"], ["updated_at", "2023-02-17 19:18:31.989741"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:31.990686"], ["updated_at", "2023-02-17 19:18:31.990686"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:31.991470"], ["updated_at", "2023-02-17 19:18:31.991470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.992247"], ["updated_at", "2023-02-17 19:18:31.992247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.993005"], ["updated_at", "2023-02-17 19:18:31.993005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.993728"], ["updated_at", "2023-02-17 19:18:31.993728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.994472"], ["updated_at", "2023-02-17 19:18:31.994472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.995266"], ["updated_at", "2023-02-17 19:18:31.995266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.996121"], ["updated_at", "2023-02-17 19:18:31.996121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.996854"], ["updated_at", "2023-02-17 19:18:31.996854"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.997594"], ["updated_at", "2023-02-17 19:18:31.997594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.998292"], ["updated_at", "2023-02-17 19:18:31.998292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.998993"], ["updated_at", "2023-02-17 19:18:31.998993"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:31.999677"], ["updated_at", "2023-02-17 19:18:31.999677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.000367"], ["updated_at", "2023-02-17 19:18:32.000367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.016455"], ["updated_at", "2023-02-17 19:18:32.016455"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.017473"], ["updated_at", "2023-02-17 19:18:32.017473"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.018264"], ["updated_at", "2023-02-17 19:18:32.018264"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.019072"], ["updated_at", "2023-02-17 19:18:32.019072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.019885"], ["updated_at", "2023-02-17 19:18:32.019885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.020607"], ["updated_at", "2023-02-17 19:18:32.020607"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.021334"], ["updated_at", "2023-02-17 19:18:32.021334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.022040"], ["updated_at", "2023-02-17 19:18:32.022040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.022720"], ["updated_at", "2023-02-17 19:18:32.022720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.023445"], ["updated_at", "2023-02-17 19:18:32.023445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.024160"], ["updated_at", "2023-02-17 19:18:32.024160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.024838"], ["updated_at", "2023-02-17 19:18:32.024838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.025721"], ["updated_at", "2023-02-17 19:18:32.025721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.026551"], ["updated_at", "2023-02-17 19:18:32.026551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.027282"], ["updated_at", "2023-02-17 19:18:32.027282"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.027987"], ["updated_at", "2023-02-17 19:18:32.027987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.043786"], ["updated_at", "2023-02-17 19:18:32.043786"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.044763"], ["updated_at", "2023-02-17 19:18:32.044763"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.045754"], ["updated_at", "2023-02-17 19:18:32.045754"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.046804"], ["updated_at", "2023-02-17 19:18:32.046804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.047663"], ["updated_at", "2023-02-17 19:18:32.047663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.048380"], ["updated_at", "2023-02-17 19:18:32.048380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.049146"], ["updated_at", "2023-02-17 19:18:32.049146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.049875"], ["updated_at", "2023-02-17 19:18:32.049875"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.050578"], ["updated_at", "2023-02-17 19:18:32.050578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.051290"], ["updated_at", "2023-02-17 19:18:32.051290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.051992"], ["updated_at", "2023-02-17 19:18:32.051992"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.052677"], ["updated_at", "2023-02-17 19:18:32.052677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.053379"], ["updated_at", "2023-02-17 19:18:32.053379"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.054084"], ["updated_at", "2023-02-17 19:18:32.054084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.054781"], ["updated_at", "2023-02-17 19:18:32.054781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.055516"], ["updated_at", "2023-02-17 19:18:32.055516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:18:32 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:32.064782"], ["updated_at", "2023-02-17 19:18:32.064782"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:18:32.066655"], ["updated_at", "2023-02-17 19:18:32.066655"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:18:32.069707"], ["updated_at", "2023-02-17 19:18:32.069707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:18:32.070949"], ["updated_at", "2023-02-17 19:18:32.070949"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:18:32.074741"], ["updated_at", "2023-02-17 19:18:32.074741"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:18:32.076074"], ["updated_at", "2023-02-17 19:18:32.076074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:18:32.078365"], ["updated_at", "2023-02-17 19:18:32.078365"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:18:32.080241"], ["updated_at", "2023-02-17 19:18:32.080241"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:18:32.081972"], ["updated_at", "2023-02-17 19:18:32.081972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:18:32.083307"], ["updated_at", "2023-02-17 19:18:32.083307"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:18:32.084686"], ["updated_at", "2023-02-17 19:18:32.084686"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:18:32.086214"], ["updated_at", "2023-02-17 19:18:32.086214"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:18:32.088054"], ["updated_at", "2023-02-17 19:18:32.088054"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:18:32.089749"], ["updated_at", "2023-02-17 19:18:32.089749"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:18:32.091474"], ["updated_at", "2023-02-17 19:18:32.091474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:18:32.092728"], ["updated_at", "2023-02-17 19:18:32.092728"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:18:32.094137"], ["updated_at", "2023-02-17 19:18:32.094137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:18:32.095468"], ["updated_at", "2023-02-17 19:18:32.095468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:18:32.097410"], ["updated_at", "2023-02-17 19:18:32.097410"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:18:32.099090"], ["updated_at", "2023-02-17 19:18:32.099090"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:18:32.100946"], ["updated_at", "2023-02-17 19:18:32.100946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:18:32.102264"], ["updated_at", "2023-02-17 19:18:32.102264"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:18:32.103654"], ["updated_at", "2023-02-17 19:18:32.103654"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:18:32.105285"], ["updated_at", "2023-02-17 19:18:32.105285"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:18:32.107160"], ["updated_at", "2023-02-17 19:18:32.107160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:18:32.108592"], ["updated_at", "2023-02-17 19:18:32.108592"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:18:32.110059"], ["updated_at", "2023-02-17 19:18:32.110059"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:18:32.111396"], ["updated_at", "2023-02-17 19:18:32.111396"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:18:32.113392"], ["updated_at", "2023-02-17 19:18:32.113392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:18:32.114819"], ["updated_at", "2023-02-17 19:18:32.114819"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:18:32.116553"], ["updated_at", "2023-02-17 19:18:32.116553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:18:32.117876"], ["updated_at", "2023-02-17 19:18:32.117876"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:18:32.119283"], ["updated_at", "2023-02-17 19:18:32.119283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:18:32.120666"], ["updated_at", "2023-02-17 19:18:32.120666"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:18:32.122606"], ["updated_at", "2023-02-17 19:18:32.122606"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:18:32.124159"], ["updated_at", "2023-02-17 19:18:32.124159"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:18:32.125781"], ["updated_at", "2023-02-17 19:18:32.125781"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:18:32.127420"], ["updated_at", "2023-02-17 19:18:32.127420"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:18:32.129274"], ["updated_at", "2023-02-17 19:18:32.129274"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:18:32.131000"], ["updated_at", "2023-02-17 19:18:32.131000"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:18:32.132841"], ["updated_at", "2023-02-17 19:18:32.132841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:18:32.134156"], ["updated_at", "2023-02-17 19:18:32.134156"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:18:32.135753"], ["updated_at", "2023-02-17 19:18:32.135753"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.137286"], ["updated_at", "2023-02-17 19:18:32.137286"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:18:32.139111"], ["updated_at", "2023-02-17 19:18:32.139111"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:18:32.140662"], ["updated_at", "2023-02-17 19:18:32.140662"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:18:32.142297"], ["updated_at", "2023-02-17 19:18:32.142297"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:18:32.143646"], ["updated_at", "2023-02-17 19:18:32.143646"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:18:32.145568"], ["updated_at", "2023-02-17 19:18:32.145568"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:18:32.147223"], ["updated_at", "2023-02-17 19:18:32.147223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:18:32.148855"], ["updated_at", "2023-02-17 19:18:32.148855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:18:32.150301"], ["updated_at", "2023-02-17 19:18:32.150301"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:18:32.151906"], ["updated_at", "2023-02-17 19:18:32.151906"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:18:32.153286"], ["updated_at", "2023-02-17 19:18:32.153286"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:18:32.155169"], ["updated_at", "2023-02-17 19:18:32.155169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:18:32.156843"], ["updated_at", "2023-02-17 19:18:32.156843"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:18:32.158661"], ["updated_at", "2023-02-17 19:18:32.158661"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:18:32.160120"], ["updated_at", "2023-02-17 19:18:32.160120"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:18:32.161775"], ["updated_at", "2023-02-17 19:18:32.161775"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:18:32.163168"], ["updated_at", "2023-02-17 19:18:32.163168"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:18:32.164685"], ["updated_at", "2023-02-17 19:18:32.164685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:18:32.166083"], ["updated_at", "2023-02-17 19:18:32.166083"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:18:32.167729"], ["updated_at", "2023-02-17 19:18:32.167729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.169125"], ["updated_at", "2023-02-17 19:18:32.169125"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:18:32.170715"], ["updated_at", "2023-02-17 19:18:32.170715"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:18:32.172141"], ["updated_at", "2023-02-17 19:18:32.172141"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:18:32.173843"], ["updated_at", "2023-02-17 19:18:32.173843"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:18:32.175352"], ["updated_at", "2023-02-17 19:18:32.175352"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:18:32.176956"], ["updated_at", "2023-02-17 19:18:32.176956"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.178269"], ["updated_at", "2023-02-17 19:18:32.178269"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:18:32.179816"], ["updated_at", "2023-02-17 19:18:32.179816"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:18:32.181041"], ["updated_at", "2023-02-17 19:18:32.181041"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:18:32.182681"], ["updated_at", "2023-02-17 19:18:32.182681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:18:32.184155"], ["updated_at", "2023-02-17 19:18:32.184155"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:18:32.185955"], ["updated_at", "2023-02-17 19:18:32.185955"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:18:32.187415"], ["updated_at", "2023-02-17 19:18:32.187415"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:18:32.189031"], ["updated_at", "2023-02-17 19:18:32.189031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:18:32.190508"], ["updated_at", "2023-02-17 19:18:32.190508"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:18:32.192085"], ["updated_at", "2023-02-17 19:18:32.192085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:18:32.193455"], ["updated_at", "2023-02-17 19:18:32.193455"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:18:32.194983"], ["updated_at", "2023-02-17 19:18:32.194983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.196217"], ["updated_at", "2023-02-17 19:18:32.196217"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:18:32.197852"], ["updated_at", "2023-02-17 19:18:32.197852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:18:32.199260"], ["updated_at", "2023-02-17 19:18:32.199260"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:18:32.200693"], ["updated_at", "2023-02-17 19:18:32.200693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:18:32.202034"], ["updated_at", "2023-02-17 19:18:32.202034"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:18:32.203544"], ["updated_at", "2023-02-17 19:18:32.203544"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:18:32.204976"], ["updated_at", "2023-02-17 19:18:32.204976"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:18:32.206558"], ["updated_at", "2023-02-17 19:18:32.206558"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:18:32.207960"], ["updated_at", "2023-02-17 19:18:32.207960"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:18:32.209424"], ["updated_at", "2023-02-17 19:18:32.209424"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:18:32.210784"], ["updated_at", "2023-02-17 19:18:32.210784"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:18:32.212219"], ["updated_at", "2023-02-17 19:18:32.212219"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:18:32.213624"], ["updated_at", "2023-02-17 19:18:32.213624"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:18:32.215113"], ["updated_at", "2023-02-17 19:18:32.215113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:18:32.216259"], ["updated_at", "2023-02-17 19:18:32.216259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:18:32.217631"], ["updated_at", "2023-02-17 19:18:32.217631"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:18:32.219062"], ["updated_at", "2023-02-17 19:18:32.219062"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:18:32.220619"], ["updated_at", "2023-02-17 19:18:32.220619"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:18:32.222035"], ["updated_at", "2023-02-17 19:18:32.222035"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:18:32.223388"], ["updated_at", "2023-02-17 19:18:32.223388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:32.235349"], ["updated_at", "2023-02-17 19:18:32.235349"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:32.236649"], ["updated_at", "2023-02-17 19:18:32.236649"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:32.237682"], ["updated_at", "2023-02-17 19:18:32.237682"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.238598"], ["updated_at", "2023-02-17 19:18:32.238598"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.239414"], ["updated_at", "2023-02-17 19:18:32.239414"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.240126"], ["updated_at", "2023-02-17 19:18:32.240126"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.240811"], ["updated_at", "2023-02-17 19:18:32.240811"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.241513"], ["updated_at", "2023-02-17 19:18:32.241513"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:32.242272"], ["updated_at", "2023-02-17 19:18:32.242272"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.243201"], ["updated_at", "2023-02-17 19:18:32.243201"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.244091"], ["updated_at", "2023-02-17 19:18:32.244091"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.244884"], ["updated_at", "2023-02-17 19:18:32.244884"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.245655"], ["updated_at", "2023-02-17 19:18:32.245655"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.246393"], ["updated_at", "2023-02-17 19:18:32.246393"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.247184"], ["updated_at", "2023-02-17 19:18:32.247184"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.247936"], ["updated_at", "2023-02-17 19:18:32.247936"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.248679"], ["updated_at", "2023-02-17 19:18:32.248679"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.249477"], ["updated_at", "2023-02-17 19:18:32.249477"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.250251"], ["updated_at", "2023-02-17 19:18:32.250251"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.251002"], ["updated_at", "2023-02-17 19:18:32.251002"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.251764"], ["updated_at", "2023-02-17 19:18:32.251764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:32.263451"], ["updated_at", "2023-02-17 19:18:32.263451"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:32.264730"], ["updated_at", "2023-02-17 19:18:32.264730"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:32.265685"], ["updated_at", "2023-02-17 19:18:32.265685"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:32.266557"], ["updated_at", "2023-02-17 19:18:32.266557"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:32.267408"], ["updated_at", "2023-02-17 19:18:32.267408"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:32.268142"], ["updated_at", "2023-02-17 19:18:32.268142"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:32.268844"], ["updated_at", "2023-02-17 19:18:32.268844"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:32.269544"], ["updated_at", "2023-02-17 19:18:32.269544"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:32.270322"], ["updated_at", "2023-02-17 19:18:32.270322"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.271174"], ["updated_at", "2023-02-17 19:18:32.271174"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.271980"], ["updated_at", "2023-02-17 19:18:32.271980"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.272732"], ["updated_at", "2023-02-17 19:18:32.272732"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.273526"], ["updated_at", "2023-02-17 19:18:32.273526"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.274328"], ["updated_at", "2023-02-17 19:18:32.274328"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.275118"], ["updated_at", "2023-02-17 19:18:32.275118"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.275869"], ["updated_at", "2023-02-17 19:18:32.275869"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.276654"], ["updated_at", "2023-02-17 19:18:32.276654"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.277396"], ["updated_at", "2023-02-17 19:18:32.277396"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.278156"], ["updated_at", "2023-02-17 19:18:32.278156"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.278905"], ["updated_at", "2023-02-17 19:18:32.278905"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.279635"], ["updated_at", "2023-02-17 19:18:32.279635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.295422"], ["updated_at", "2023-02-17 19:18:32.295422"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.296543"], ["updated_at", "2023-02-17 19:18:32.296543"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.297449"], ["updated_at", "2023-02-17 19:18:32.297449"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.298203"], ["updated_at", "2023-02-17 19:18:32.298203"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.299042"], ["updated_at", "2023-02-17 19:18:32.299042"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.299885"], ["updated_at", "2023-02-17 19:18:32.299885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.300612"], ["updated_at", "2023-02-17 19:18:32.300612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.301336"], ["updated_at", "2023-02-17 19:18:32.301336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.302051"], ["updated_at", "2023-02-17 19:18:32.302051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.302791"], ["updated_at", "2023-02-17 19:18:32.302791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.303540"], ["updated_at", "2023-02-17 19:18:32.303540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.304252"], ["updated_at", "2023-02-17 19:18:32.304252"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.304978"], ["updated_at", "2023-02-17 19:18:32.304978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.305701"], ["updated_at", "2023-02-17 19:18:32.305701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.306438"], ["updated_at", "2023-02-17 19:18:32.306438"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.307141"], ["updated_at", "2023-02-17 19:18:32.307141"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.322619"], ["updated_at", "2023-02-17 19:18:32.322619"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.323694"], ["updated_at", "2023-02-17 19:18:32.323694"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.324488"], ["updated_at", "2023-02-17 19:18:32.324488"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.325251"], ["updated_at", "2023-02-17 19:18:32.325251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.326059"], ["updated_at", "2023-02-17 19:18:32.326059"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.326800"], ["updated_at", "2023-02-17 19:18:32.326800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.327532"], ["updated_at", "2023-02-17 19:18:32.327532"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.328262"], ["updated_at", "2023-02-17 19:18:32.328262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.328978"], ["updated_at", "2023-02-17 19:18:32.328978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.329717"], ["updated_at", "2023-02-17 19:18:32.329717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.330431"], ["updated_at", "2023-02-17 19:18:32.330431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.331147"], ["updated_at", "2023-02-17 19:18:32.331147"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.331837"], ["updated_at", "2023-02-17 19:18:32.331837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.332582"], ["updated_at", "2023-02-17 19:18:32.332582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.333368"], ["updated_at", "2023-02-17 19:18:32.333368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.334095"], ["updated_at", "2023-02-17 19:18:32.334095"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.349525"], ["updated_at", "2023-02-17 19:18:32.349525"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.350609"], ["updated_at", "2023-02-17 19:18:32.350609"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.351383"], ["updated_at", "2023-02-17 19:18:32.351383"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.352128"], ["updated_at", "2023-02-17 19:18:32.352128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.352888"], ["updated_at", "2023-02-17 19:18:32.352888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.353686"], ["updated_at", "2023-02-17 19:18:32.353686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.354441"], ["updated_at", "2023-02-17 19:18:32.354441"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.355153"], ["updated_at", "2023-02-17 19:18:32.355153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.355853"], ["updated_at", "2023-02-17 19:18:32.355853"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.356550"], ["updated_at", "2023-02-17 19:18:32.356550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.357268"], ["updated_at", "2023-02-17 19:18:32.357268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.357965"], ["updated_at", "2023-02-17 19:18:32.357965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.358664"], ["updated_at", "2023-02-17 19:18:32.358664"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.359368"], ["updated_at", "2023-02-17 19:18:32.359368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.360094"], ["updated_at", "2023-02-17 19:18:32.360094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.360781"], ["updated_at", "2023-02-17 19:18:32.360781"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.376232"], ["updated_at", "2023-02-17 19:18:32.376232"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.377310"], ["updated_at", "2023-02-17 19:18:32.377310"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.378119"], ["updated_at", "2023-02-17 19:18:32.378119"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.378844"], ["updated_at", "2023-02-17 19:18:32.378844"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.379604"], ["updated_at", "2023-02-17 19:18:32.379604"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.380355"], ["updated_at", "2023-02-17 19:18:32.380355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.381062"], ["updated_at", "2023-02-17 19:18:32.381062"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.381767"], ["updated_at", "2023-02-17 19:18:32.381767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.382481"], ["updated_at", "2023-02-17 19:18:32.382481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.383198"], ["updated_at", "2023-02-17 19:18:32.383198"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.383907"], ["updated_at", "2023-02-17 19:18:32.383907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.384635"], ["updated_at", "2023-02-17 19:18:32.384635"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.385383"], ["updated_at", "2023-02-17 19:18:32.385383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.386090"], ["updated_at", "2023-02-17 19:18:32.386090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.386806"], ["updated_at", "2023-02-17 19:18:32.386806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.387507"], ["updated_at", "2023-02-17 19:18:32.387507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.403004"], ["updated_at", "2023-02-17 19:18:32.403004"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.404073"], ["updated_at", "2023-02-17 19:18:32.404073"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.404845"], ["updated_at", "2023-02-17 19:18:32.404845"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.405577"], ["updated_at", "2023-02-17 19:18:32.405577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.406385"], ["updated_at", "2023-02-17 19:18:32.406385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.407264"], ["updated_at", "2023-02-17 19:18:32.407264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.408044"], ["updated_at", "2023-02-17 19:18:32.408044"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.408709"], ["updated_at", "2023-02-17 19:18:32.408709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.409529"], ["updated_at", "2023-02-17 19:18:32.409529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.410504"], ["updated_at", "2023-02-17 19:18:32.410504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.411378"], ["updated_at", "2023-02-17 19:18:32.411378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.412146"], ["updated_at", "2023-02-17 19:18:32.412146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.412840"], ["updated_at", "2023-02-17 19:18:32.412840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.413584"], ["updated_at", "2023-02-17 19:18:32.413584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.414304"], ["updated_at", "2023-02-17 19:18:32.414304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.415050"], ["updated_at", "2023-02-17 19:18:32.415050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.430906"], ["updated_at", "2023-02-17 19:18:32.430906"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.431958"], ["updated_at", "2023-02-17 19:18:32.431958"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.432732"], ["updated_at", "2023-02-17 19:18:32.432732"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.433480"], ["updated_at", "2023-02-17 19:18:32.433480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.434308"], ["updated_at", "2023-02-17 19:18:32.434308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.435073"], ["updated_at", "2023-02-17 19:18:32.435073"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.435808"], ["updated_at", "2023-02-17 19:18:32.435808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.436585"], ["updated_at", "2023-02-17 19:18:32.436585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.437445"], ["updated_at", "2023-02-17 19:18:32.437445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.438298"], ["updated_at", "2023-02-17 19:18:32.438298"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.439124"], ["updated_at", "2023-02-17 19:18:32.439124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.439884"], ["updated_at", "2023-02-17 19:18:32.439884"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.440632"], ["updated_at", "2023-02-17 19:18:32.440632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.441407"], ["updated_at", "2023-02-17 19:18:32.441407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.442133"], ["updated_at", "2023-02-17 19:18:32.442133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.442836"], ["updated_at", "2023-02-17 19:18:32.442836"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:18:32 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:32.452526"], ["updated_at", "2023-02-17 19:18:32.452526"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:18:32.454193"], ["updated_at", "2023-02-17 19:18:32.454193"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:18:32.457267"], ["updated_at", "2023-02-17 19:18:32.457267"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:18:32.458522"], ["updated_at", "2023-02-17 19:18:32.458522"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:18:32.461437"], ["updated_at", "2023-02-17 19:18:32.461437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:18:32.462673"], ["updated_at", "2023-02-17 19:18:32.462673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:18:32.464851"], ["updated_at", "2023-02-17 19:18:32.464851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:18:32.466352"], ["updated_at", "2023-02-17 19:18:32.466352"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:18:32.468064"], ["updated_at", "2023-02-17 19:18:32.468064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:18:32.469397"], ["updated_at", "2023-02-17 19:18:32.469397"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:18:32.470821"], ["updated_at", "2023-02-17 19:18:32.470821"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:18:32.472224"], ["updated_at", "2023-02-17 19:18:32.472224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:18:32.473873"], ["updated_at", "2023-02-17 19:18:32.473873"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:18:32.475316"], ["updated_at", "2023-02-17 19:18:32.475316"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:18:32.476776"], ["updated_at", "2023-02-17 19:18:32.476776"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:18:32.478056"], ["updated_at", "2023-02-17 19:18:32.478056"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:18:32.479591"], ["updated_at", "2023-02-17 19:18:32.479591"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:18:32.481033"], ["updated_at", "2023-02-17 19:18:32.481033"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:18:32.482552"], ["updated_at", "2023-02-17 19:18:32.482552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:18:32.483875"], ["updated_at", "2023-02-17 19:18:32.483875"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:18:32.485728"], ["updated_at", "2023-02-17 19:18:32.485728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:18:32.487091"], ["updated_at", "2023-02-17 19:18:32.487091"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:18:32.488740"], ["updated_at", "2023-02-17 19:18:32.488740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:18:32.490368"], ["updated_at", "2023-02-17 19:18:32.490368"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:18:32.492148"], ["updated_at", "2023-02-17 19:18:32.492148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:18:32.493696"], ["updated_at", "2023-02-17 19:18:32.493696"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:18:32.495599"], ["updated_at", "2023-02-17 19:18:32.495599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:18:32.497177"], ["updated_at", "2023-02-17 19:18:32.497177"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:18:32.498808"], ["updated_at", "2023-02-17 19:18:32.498808"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:18:32.500304"], ["updated_at", "2023-02-17 19:18:32.500304"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:18:32.502070"], ["updated_at", "2023-02-17 19:18:32.502070"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:18:32.503508"], ["updated_at", "2023-02-17 19:18:32.503508"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:18:32.505158"], ["updated_at", "2023-02-17 19:18:32.505158"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:18:32.506449"], ["updated_at", "2023-02-17 19:18:32.506449"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:18:32.507880"], ["updated_at", "2023-02-17 19:18:32.507880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:18:32.509219"], ["updated_at", "2023-02-17 19:18:32.509219"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:18:32.510942"], ["updated_at", "2023-02-17 19:18:32.510942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:18:32.512277"], ["updated_at", "2023-02-17 19:18:32.512277"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:18:32.513747"], ["updated_at", "2023-02-17 19:18:32.513747"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:18:32.515342"], ["updated_at", "2023-02-17 19:18:32.515342"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:18:32.516750"], ["updated_at", "2023-02-17 19:18:32.516750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:18:32.517978"], ["updated_at", "2023-02-17 19:18:32.517978"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:18:32.519344"], ["updated_at", "2023-02-17 19:18:32.519344"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.520555"], ["updated_at", "2023-02-17 19:18:32.520555"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:18:32.521998"], ["updated_at", "2023-02-17 19:18:32.521998"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:18:32.523174"], ["updated_at", "2023-02-17 19:18:32.523174"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:18:32.524930"], ["updated_at", "2023-02-17 19:18:32.524930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:18:32.526274"], ["updated_at", "2023-02-17 19:18:32.526274"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:18:32.527678"], ["updated_at", "2023-02-17 19:18:32.527678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:18:32.528949"], ["updated_at", "2023-02-17 19:18:32.528949"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:18:32.530328"], ["updated_at", "2023-02-17 19:18:32.530328"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:18:32.531496"], ["updated_at", "2023-02-17 19:18:32.531496"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:18:32.532876"], ["updated_at", "2023-02-17 19:18:32.532876"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:18:32.534175"], ["updated_at", "2023-02-17 19:18:32.534175"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:18:32.535732"], ["updated_at", "2023-02-17 19:18:32.535732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:18:32.536981"], ["updated_at", "2023-02-17 19:18:32.536981"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:18:32.538366"], ["updated_at", "2023-02-17 19:18:32.538366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:18:32.539559"], ["updated_at", "2023-02-17 19:18:32.539559"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:18:32.540972"], ["updated_at", "2023-02-17 19:18:32.540972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:18:32.542172"], ["updated_at", "2023-02-17 19:18:32.542172"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:18:32.543628"], ["updated_at", "2023-02-17 19:18:32.543628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:18:32.545279"], ["updated_at", "2023-02-17 19:18:32.545279"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:18:32.546742"], ["updated_at", "2023-02-17 19:18:32.546742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.547949"], ["updated_at", "2023-02-17 19:18:32.547949"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:18:32.549311"], ["updated_at", "2023-02-17 19:18:32.549311"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:18:32.550549"], ["updated_at", "2023-02-17 19:18:32.550549"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:18:32.552005"], ["updated_at", "2023-02-17 19:18:32.552005"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:18:32.553218"], ["updated_at", "2023-02-17 19:18:32.553218"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:18:32.554997"], ["updated_at", "2023-02-17 19:18:32.554997"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.556350"], ["updated_at", "2023-02-17 19:18:32.556350"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:18:32.557855"], ["updated_at", "2023-02-17 19:18:32.557855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:18:32.559142"], ["updated_at", "2023-02-17 19:18:32.559142"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:18:32.560529"], ["updated_at", "2023-02-17 19:18:32.560529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:18:32.561726"], ["updated_at", "2023-02-17 19:18:32.561726"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:18:32.563193"], ["updated_at", "2023-02-17 19:18:32.563193"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:18:32.564675"], ["updated_at", "2023-02-17 19:18:32.564675"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:18:32.566262"], ["updated_at", "2023-02-17 19:18:32.566262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:18:32.567587"], ["updated_at", "2023-02-17 19:18:32.567587"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:18:32.569011"], ["updated_at", "2023-02-17 19:18:32.569011"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:18:32.570314"], ["updated_at", "2023-02-17 19:18:32.570314"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:18:32.571876"], ["updated_at", "2023-02-17 19:18:32.571876"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.573233"], ["updated_at", "2023-02-17 19:18:32.573233"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:18:32.575044"], ["updated_at", "2023-02-17 19:18:32.575044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:18:32.576371"], ["updated_at", "2023-02-17 19:18:32.576371"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:18:32.577795"], ["updated_at", "2023-02-17 19:18:32.577795"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:18:32.579110"], ["updated_at", "2023-02-17 19:18:32.579110"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:18:32.586190"], ["updated_at", "2023-02-17 19:18:32.586190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:18:32.587468"], ["updated_at", "2023-02-17 19:18:32.587468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:18:32.588930"], ["updated_at", "2023-02-17 19:18:32.588930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:18:32.590136"], ["updated_at", "2023-02-17 19:18:32.590136"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:18:32.591500"], ["updated_at", "2023-02-17 19:18:32.591500"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:18:32.592647"], ["updated_at", "2023-02-17 19:18:32.592647"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:18:32.594053"], ["updated_at", "2023-02-17 19:18:32.594053"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:18:32.595436"], ["updated_at", "2023-02-17 19:18:32.595436"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:18:32.596832"], ["updated_at", "2023-02-17 19:18:32.596832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:18:32.597930"], ["updated_at", "2023-02-17 19:18:32.597930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:18:32.599124"], ["updated_at", "2023-02-17 19:18:32.599124"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:18:32.600440"], ["updated_at", "2023-02-17 19:18:32.600440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:18:32.601892"], ["updated_at", "2023-02-17 19:18:32.601892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:18:32.603059"], ["updated_at", "2023-02-17 19:18:32.603059"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:18:32.604227"], ["updated_at", "2023-02-17 19:18:32.604227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:32.616199"], ["updated_at", "2023-02-17 19:18:32.616199"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:32.617496"], ["updated_at", "2023-02-17 19:18:32.617496"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:32.618517"], ["updated_at", "2023-02-17 19:18:32.618517"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.619429"], ["updated_at", "2023-02-17 19:18:32.619429"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.620207"], ["updated_at", "2023-02-17 19:18:32.620207"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.620893"], ["updated_at", "2023-02-17 19:18:32.620893"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.621619"], ["updated_at", "2023-02-17 19:18:32.621619"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.622322"], ["updated_at", "2023-02-17 19:18:32.622322"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:32.623067"], ["updated_at", "2023-02-17 19:18:32.623067"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.623942"], ["updated_at", "2023-02-17 19:18:32.623942"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.624963"], ["updated_at", "2023-02-17 19:18:32.624963"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.625776"], ["updated_at", "2023-02-17 19:18:32.625776"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.626548"], ["updated_at", "2023-02-17 19:18:32.626548"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.627285"], ["updated_at", "2023-02-17 19:18:32.627285"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.627998"], ["updated_at", "2023-02-17 19:18:32.627998"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.628716"], ["updated_at", "2023-02-17 19:18:32.628716"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.629477"], ["updated_at", "2023-02-17 19:18:32.629477"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.630209"], ["updated_at", "2023-02-17 19:18:32.630209"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.630954"], ["updated_at", "2023-02-17 19:18:32.630954"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.631699"], ["updated_at", "2023-02-17 19:18:32.631699"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.632437"], ["updated_at", "2023-02-17 19:18:32.632437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:32.643829"], ["updated_at", "2023-02-17 19:18:32.643829"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:32.645338"], ["updated_at", "2023-02-17 19:18:32.645338"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:32.646355"], ["updated_at", "2023-02-17 19:18:32.646355"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:32.647195"], ["updated_at", "2023-02-17 19:18:32.647195"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:32.647957"], ["updated_at", "2023-02-17 19:18:32.647957"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:32.648680"], ["updated_at", "2023-02-17 19:18:32.648680"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:32.649402"], ["updated_at", "2023-02-17 19:18:32.649402"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:32.650121"], ["updated_at", "2023-02-17 19:18:32.650121"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:32.650947"], ["updated_at", "2023-02-17 19:18:32.650947"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.651804"], ["updated_at", "2023-02-17 19:18:32.651804"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.652572"], ["updated_at", "2023-02-17 19:18:32.652572"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.653339"], ["updated_at", "2023-02-17 19:18:32.653339"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.654099"], ["updated_at", "2023-02-17 19:18:32.654099"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.654981"], ["updated_at", "2023-02-17 19:18:32.654981"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.655778"], ["updated_at", "2023-02-17 19:18:32.655778"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.656586"], ["updated_at", "2023-02-17 19:18:32.656586"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.657392"], ["updated_at", "2023-02-17 19:18:32.657392"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.658135"], ["updated_at", "2023-02-17 19:18:32.658135"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.658856"], ["updated_at", "2023-02-17 19:18:32.658856"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.659586"], ["updated_at", "2023-02-17 19:18:32.659586"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:32.660340"], ["updated_at", "2023-02-17 19:18:32.660340"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.676821"], ["updated_at", "2023-02-17 19:18:32.676821"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.677953"], ["updated_at", "2023-02-17 19:18:32.677953"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.678824"], ["updated_at", "2023-02-17 19:18:32.678824"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.679587"], ["updated_at", "2023-02-17 19:18:32.679587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.680379"], ["updated_at", "2023-02-17 19:18:32.680379"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.681168"], ["updated_at", "2023-02-17 19:18:32.681168"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.681911"], ["updated_at", "2023-02-17 19:18:32.681911"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.682611"], ["updated_at", "2023-02-17 19:18:32.682611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.683296"], ["updated_at", "2023-02-17 19:18:32.683296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.684005"], ["updated_at", "2023-02-17 19:18:32.684005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.684850"], ["updated_at", "2023-02-17 19:18:32.684850"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.685627"], ["updated_at", "2023-02-17 19:18:32.685627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.686381"], ["updated_at", "2023-02-17 19:18:32.686381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.687099"], ["updated_at", "2023-02-17 19:18:32.687099"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.687796"], ["updated_at", "2023-02-17 19:18:32.687796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:32.688505"], ["updated_at", "2023-02-17 19:18:32.688505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.703927"], ["updated_at", "2023-02-17 19:18:32.703927"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.705217"], ["updated_at", "2023-02-17 19:18:32.705217"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.706129"], ["updated_at", "2023-02-17 19:18:32.706129"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.706893"], ["updated_at", "2023-02-17 19:18:32.706893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.707782"], ["updated_at", "2023-02-17 19:18:32.707782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.708576"], ["updated_at", "2023-02-17 19:18:32.708576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.709338"], ["updated_at", "2023-02-17 19:18:32.709338"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.710098"], ["updated_at", "2023-02-17 19:18:32.710098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.710836"], ["updated_at", "2023-02-17 19:18:32.710836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.711537"], ["updated_at", "2023-02-17 19:18:32.711537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.712269"], ["updated_at", "2023-02-17 19:18:32.712269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.712984"], ["updated_at", "2023-02-17 19:18:32.712984"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.713668"], ["updated_at", "2023-02-17 19:18:32.713668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.714468"], ["updated_at", "2023-02-17 19:18:32.714468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.715325"], ["updated_at", "2023-02-17 19:18:32.715325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:32.716072"], ["updated_at", "2023-02-17 19:18:32.716072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.732020"], ["updated_at", "2023-02-17 19:18:32.732020"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.733055"], ["updated_at", "2023-02-17 19:18:32.733055"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.733801"], ["updated_at", "2023-02-17 19:18:32.733801"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.734774"], ["updated_at", "2023-02-17 19:18:32.734774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.735860"], ["updated_at", "2023-02-17 19:18:32.735860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.736634"], ["updated_at", "2023-02-17 19:18:32.736634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.737404"], ["updated_at", "2023-02-17 19:18:32.737404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.738148"], ["updated_at", "2023-02-17 19:18:32.738148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.738828"], ["updated_at", "2023-02-17 19:18:32.738828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.739535"], ["updated_at", "2023-02-17 19:18:32.739535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.740241"], ["updated_at", "2023-02-17 19:18:32.740241"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.740936"], ["updated_at", "2023-02-17 19:18:32.740936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.741643"], ["updated_at", "2023-02-17 19:18:32.741643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.742359"], ["updated_at", "2023-02-17 19:18:32.742359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.743055"], ["updated_at", "2023-02-17 19:18:32.743055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:32.743753"], ["updated_at", "2023-02-17 19:18:32.743753"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.759737"], ["updated_at", "2023-02-17 19:18:32.759737"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.760781"], ["updated_at", "2023-02-17 19:18:32.760781"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.761557"], ["updated_at", "2023-02-17 19:18:32.761557"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.762289"], ["updated_at", "2023-02-17 19:18:32.762289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.763057"], ["updated_at", "2023-02-17 19:18:32.763057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.764094"], ["updated_at", "2023-02-17 19:18:32.764094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.765019"], ["updated_at", "2023-02-17 19:18:32.765019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.765762"], ["updated_at", "2023-02-17 19:18:32.765762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.766475"], ["updated_at", "2023-02-17 19:18:32.766475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.767195"], ["updated_at", "2023-02-17 19:18:32.767195"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.767961"], ["updated_at", "2023-02-17 19:18:32.767961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.768673"], ["updated_at", "2023-02-17 19:18:32.768673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.769380"], ["updated_at", "2023-02-17 19:18:32.769380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.770086"], ["updated_at", "2023-02-17 19:18:32.770086"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.770774"], ["updated_at", "2023-02-17 19:18:32.770774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:32.771452"], ["updated_at", "2023-02-17 19:18:32.771452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.787510"], ["updated_at", "2023-02-17 19:18:32.787510"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.788520"], ["updated_at", "2023-02-17 19:18:32.788520"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.789284"], ["updated_at", "2023-02-17 19:18:32.789284"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.790049"], ["updated_at", "2023-02-17 19:18:32.790049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.790854"], ["updated_at", "2023-02-17 19:18:32.790854"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.791655"], ["updated_at", "2023-02-17 19:18:32.791655"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.792592"], ["updated_at", "2023-02-17 19:18:32.792592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.793478"], ["updated_at", "2023-02-17 19:18:32.793478"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.794563"], ["updated_at", "2023-02-17 19:18:32.794563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.795360"], ["updated_at", "2023-02-17 19:18:32.795360"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.796067"], ["updated_at", "2023-02-17 19:18:32.796067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.796759"], ["updated_at", "2023-02-17 19:18:32.796759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.797495"], ["updated_at", "2023-02-17 19:18:32.797495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.798237"], ["updated_at", "2023-02-17 19:18:32.798237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.798940"], ["updated_at", "2023-02-17 19:18:32.798940"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:32.799610"], ["updated_at", "2023-02-17 19:18:32.799610"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:32.815548"], ["updated_at", "2023-02-17 19:18:32.815548"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:32.816531"], ["updated_at", "2023-02-17 19:18:32.816531"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.817299"], ["updated_at", "2023-02-17 19:18:32.817299"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.818012"], ["updated_at", "2023-02-17 19:18:32.818012"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.818821"], ["updated_at", "2023-02-17 19:18:32.818821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.819595"], ["updated_at", "2023-02-17 19:18:32.819595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.820420"], ["updated_at", "2023-02-17 19:18:32.820420"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.821189"], ["updated_at", "2023-02-17 19:18:32.821189"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.821897"], ["updated_at", "2023-02-17 19:18:32.821897"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.822588"], ["updated_at", "2023-02-17 19:18:32.822588"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.823312"], ["updated_at", "2023-02-17 19:18:32.823312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.824366"], ["updated_at", "2023-02-17 19:18:32.824366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.825271"], ["updated_at", "2023-02-17 19:18:32.825271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.826020"], ["updated_at", "2023-02-17 19:18:32.826020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.826703"], ["updated_at", "2023-02-17 19:18:32.826703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:32.827449"], ["updated_at", "2023-02-17 19:18:32.827449"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:18:32 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:18:32.836922"], ["updated_at", "2023-02-17 19:18:32.836922"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:18:32.838405"], ["updated_at", "2023-02-17 19:18:32.838405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:18:32.841192"], ["updated_at", "2023-02-17 19:18:32.841192"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:18:32.842402"], ["updated_at", "2023-02-17 19:18:32.842402"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:18:32.845580"], ["updated_at", "2023-02-17 19:18:32.845580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:18:32.846775"], ["updated_at", "2023-02-17 19:18:32.846775"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:18:32.848788"], ["updated_at", "2023-02-17 19:18:32.848788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:18:32.850249"], ["updated_at", "2023-02-17 19:18:32.850249"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:18:32.851900"], ["updated_at", "2023-02-17 19:18:32.851900"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:18:32.853232"], ["updated_at", "2023-02-17 19:18:32.853232"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:18:32.855037"], ["updated_at", "2023-02-17 19:18:32.855037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:18:32.856334"], ["updated_at", "2023-02-17 19:18:32.856334"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:18:32.857802"], ["updated_at", "2023-02-17 19:18:32.857802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:18:32.859045"], ["updated_at", "2023-02-17 19:18:32.859045"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:18:32.860403"], ["updated_at", "2023-02-17 19:18:32.860403"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:18:32.861632"], ["updated_at", "2023-02-17 19:18:32.861632"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:18:32.863029"], ["updated_at", "2023-02-17 19:18:32.863029"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:18:32.864326"], ["updated_at", "2023-02-17 19:18:32.864326"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:18:32.865870"], ["updated_at", "2023-02-17 19:18:32.865870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:18:32.867085"], ["updated_at", "2023-02-17 19:18:32.867085"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:18:32.868442"], ["updated_at", "2023-02-17 19:18:32.868442"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:18:32.869696"], ["updated_at", "2023-02-17 19:18:32.869696"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:18:32.871106"], ["updated_at", "2023-02-17 19:18:32.871106"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:18:32.872343"], ["updated_at", "2023-02-17 19:18:32.872343"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:18:32.873858"], ["updated_at", "2023-02-17 19:18:32.873858"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:18:32.875464"], ["updated_at", "2023-02-17 19:18:32.875464"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:18:32.876861"], ["updated_at", "2023-02-17 19:18:32.876861"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:18:32.878052"], ["updated_at", "2023-02-17 19:18:32.878052"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:18:32.879423"], ["updated_at", "2023-02-17 19:18:32.879423"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:18:32.880633"], ["updated_at", "2023-02-17 19:18:32.880633"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:18:32.882010"], ["updated_at", "2023-02-17 19:18:32.882010"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:18:32.883215"], ["updated_at", "2023-02-17 19:18:32.883215"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:18:32.884961"], ["updated_at", "2023-02-17 19:18:32.884961"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:18:32.886282"], ["updated_at", "2023-02-17 19:18:32.886282"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:18:32.887758"], ["updated_at", "2023-02-17 19:18:32.887758"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:18:32.888995"], ["updated_at", "2023-02-17 19:18:32.888995"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:18:32.890369"], ["updated_at", "2023-02-17 19:18:32.890369"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:18:32.891549"], ["updated_at", "2023-02-17 19:18:32.891549"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:18:32.892879"], ["updated_at", "2023-02-17 19:18:32.892879"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:18:32.894153"], ["updated_at", "2023-02-17 19:18:32.894153"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:18:32.895711"], ["updated_at", "2023-02-17 19:18:32.895711"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:18:32.896899"], ["updated_at", "2023-02-17 19:18:32.896899"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:18:32.898272"], ["updated_at", "2023-02-17 19:18:32.898272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.899451"], ["updated_at", "2023-02-17 19:18:32.899451"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:18:32.900781"], ["updated_at", "2023-02-17 19:18:32.900781"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:18:32.901999"], ["updated_at", "2023-02-17 19:18:32.901999"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:18:32.903484"], ["updated_at", "2023-02-17 19:18:32.903484"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:18:32.905198"], ["updated_at", "2023-02-17 19:18:32.905198"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:18:32.906669"], ["updated_at", "2023-02-17 19:18:32.906669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:18:32.907921"], ["updated_at", "2023-02-17 19:18:32.907921"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:18:32.909297"], ["updated_at", "2023-02-17 19:18:32.909297"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:18:32.910554"], ["updated_at", "2023-02-17 19:18:32.910554"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:18:32.911997"], ["updated_at", "2023-02-17 19:18:32.911997"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:18:32.913232"], ["updated_at", "2023-02-17 19:18:32.913232"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:18:32.915022"], ["updated_at", "2023-02-17 19:18:32.915022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:18:32.916315"], ["updated_at", "2023-02-17 19:18:32.916315"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:18:32.917704"], ["updated_at", "2023-02-17 19:18:32.917704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:18:32.919017"], ["updated_at", "2023-02-17 19:18:32.919017"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:18:32.920389"], ["updated_at", "2023-02-17 19:18:32.920389"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:18:32.921561"], ["updated_at", "2023-02-17 19:18:32.921561"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:18:32.922926"], ["updated_at", "2023-02-17 19:18:32.922926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:18:32.924166"], ["updated_at", "2023-02-17 19:18:32.924166"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:18:32.925748"], ["updated_at", "2023-02-17 19:18:32.925748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.927001"], ["updated_at", "2023-02-17 19:18:32.927001"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:18:32.928334"], ["updated_at", "2023-02-17 19:18:32.928334"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:18:32.929494"], ["updated_at", "2023-02-17 19:18:32.929494"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:18:32.930828"], ["updated_at", "2023-02-17 19:18:32.930828"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:18:32.932001"], ["updated_at", "2023-02-17 19:18:32.932001"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:18:32.933432"], ["updated_at", "2023-02-17 19:18:32.933432"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.935056"], ["updated_at", "2023-02-17 19:18:32.935056"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:18:32.936507"], ["updated_at", "2023-02-17 19:18:32.936507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:18:32.937676"], ["updated_at", "2023-02-17 19:18:32.937676"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:18:32.939037"], ["updated_at", "2023-02-17 19:18:32.939037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:18:32.940215"], ["updated_at", "2023-02-17 19:18:32.940215"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:18:32.941749"], ["updated_at", "2023-02-17 19:18:32.941749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:18:32.942961"], ["updated_at", "2023-02-17 19:18:32.942961"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:18:32.944554"], ["updated_at", "2023-02-17 19:18:32.944554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:18:32.946034"], ["updated_at", "2023-02-17 19:18:32.946034"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:18:32.947406"], ["updated_at", "2023-02-17 19:18:32.947406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:18:32.948701"], ["updated_at", "2023-02-17 19:18:32.948701"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:18:32.950100"], ["updated_at", "2023-02-17 19:18:32.950100"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:18:32.951275"], ["updated_at", "2023-02-17 19:18:32.951275"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:18:32.952590"], ["updated_at", "2023-02-17 19:18:32.952590"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:18:32.953783"], ["updated_at", "2023-02-17 19:18:32.953783"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:18:32.955400"], ["updated_at", "2023-02-17 19:18:32.955400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:18:32.956665"], ["updated_at", "2023-02-17 19:18:32.956665"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:18:32.958064"], ["updated_at", "2023-02-17 19:18:32.958064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:18:32.959231"], ["updated_at", "2023-02-17 19:18:32.959231"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:18:32.960552"], ["updated_at", "2023-02-17 19:18:32.960552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:18:32.961717"], ["updated_at", "2023-02-17 19:18:32.961717"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:18:32.963239"], ["updated_at", "2023-02-17 19:18:32.963239"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:18:32.964825"], ["updated_at", "2023-02-17 19:18:32.964825"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:18:32.966374"], ["updated_at", "2023-02-17 19:18:32.966374"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:18:32.967555"], ["updated_at", "2023-02-17 19:18:32.967555"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:18:32.968873"], ["updated_at", "2023-02-17 19:18:32.968873"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:18:32.969963"], ["updated_at", "2023-02-17 19:18:32.969963"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:18:32.971265"], ["updated_at", "2023-02-17 19:18:32.971265"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:18:32.972624"], ["updated_at", "2023-02-17 19:18:32.972624"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:18:32.974290"], ["updated_at", "2023-02-17 19:18:32.974290"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:18:32.975707"], ["updated_at", "2023-02-17 19:18:32.975707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:18:32.976729"], ["updated_at", "2023-02-17 19:18:32.976729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:32.988001"], ["updated_at", "2023-02-17 19:18:32.988001"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:32.989303"], ["updated_at", "2023-02-17 19:18:32.989303"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:32.990300"], ["updated_at", "2023-02-17 19:18:32.990300"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.991169"], ["updated_at", "2023-02-17 19:18:32.991169"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.992008"], ["updated_at", "2023-02-17 19:18:32.992008"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.992764"], ["updated_at", "2023-02-17 19:18:32.992764"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.993566"], ["updated_at", "2023-02-17 19:18:32.993566"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:32.994528"], ["updated_at", "2023-02-17 19:18:32.994528"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:32.995573"], ["updated_at", "2023-02-17 19:18:32.995573"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.996470"], ["updated_at", "2023-02-17 19:18:32.996470"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.997314"], ["updated_at", "2023-02-17 19:18:32.997314"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.998050"], ["updated_at", "2023-02-17 19:18:32.998050"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.998776"], ["updated_at", "2023-02-17 19:18:32.998776"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:32.999507"], ["updated_at", "2023-02-17 19:18:32.999507"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.000293"], ["updated_at", "2023-02-17 19:18:33.000293"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.001120"], ["updated_at", "2023-02-17 19:18:33.001120"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.001875"], ["updated_at", "2023-02-17 19:18:33.001875"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.002610"], ["updated_at", "2023-02-17 19:18:33.002610"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.003325"], ["updated_at", "2023-02-17 19:18:33.003325"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.004141"], ["updated_at", "2023-02-17 19:18:33.004141"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.005280"], ["updated_at", "2023-02-17 19:18:33.005280"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:18:33.016864"], ["updated_at", "2023-02-17 19:18:33.016864"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:18:33.018136"], ["updated_at", "2023-02-17 19:18:33.018136"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:18:33.019110"], ["updated_at", "2023-02-17 19:18:33.019110"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:33.020023"], ["updated_at", "2023-02-17 19:18:33.020023"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:33.020817"], ["updated_at", "2023-02-17 19:18:33.020817"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:33.022362"], ["updated_at", "2023-02-17 19:18:33.022362"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:33.023126"], ["updated_at", "2023-02-17 19:18:33.023126"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:18:33.023839"], ["updated_at", "2023-02-17 19:18:33.023839"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:18:33.024970"], ["updated_at", "2023-02-17 19:18:33.024970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.026047"], ["updated_at", "2023-02-17 19:18:33.026047"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.026889"], ["updated_at", "2023-02-17 19:18:33.026889"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.027626"], ["updated_at", "2023-02-17 19:18:33.027626"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.028360"], ["updated_at", "2023-02-17 19:18:33.028360"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.029100"], ["updated_at", "2023-02-17 19:18:33.029100"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.029891"], ["updated_at", "2023-02-17 19:18:33.029891"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.030688"], ["updated_at", "2023-02-17 19:18:33.030688"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.031449"], ["updated_at", "2023-02-17 19:18:33.031449"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.032180"], ["updated_at", "2023-02-17 19:18:33.032180"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.032936"], ["updated_at", "2023-02-17 19:18:33.032936"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.033693"], ["updated_at", "2023-02-17 19:18:33.033693"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:18:33.034807"], ["updated_at", "2023-02-17 19:18:33.034807"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:33.051611"], ["updated_at", "2023-02-17 19:18:33.051611"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:33.052733"], ["updated_at", "2023-02-17 19:18:33.052733"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:33.053600"], ["updated_at", "2023-02-17 19:18:33.053600"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.054560"], ["updated_at", "2023-02-17 19:18:33.054560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.055661"], ["updated_at", "2023-02-17 19:18:33.055661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.056506"], ["updated_at", "2023-02-17 19:18:33.056506"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.057241"], ["updated_at", "2023-02-17 19:18:33.057241"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.057955"], ["updated_at", "2023-02-17 19:18:33.057955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.058642"], ["updated_at", "2023-02-17 19:18:33.058642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.059355"], ["updated_at", "2023-02-17 19:18:33.059355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.060063"], ["updated_at", "2023-02-17 19:18:33.060063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.060745"], ["updated_at", "2023-02-17 19:18:33.060745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.061450"], ["updated_at", "2023-02-17 19:18:33.061450"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.062158"], ["updated_at", "2023-02-17 19:18:33.062158"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.062849"], ["updated_at", "2023-02-17 19:18:33.062849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:18:33.063609"], ["updated_at", "2023-02-17 19:18:33.063609"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:33.079469"], ["updated_at", "2023-02-17 19:18:33.079469"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:33.080490"], ["updated_at", "2023-02-17 19:18:33.080490"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:33.081278"], ["updated_at", "2023-02-17 19:18:33.081278"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.081981"], ["updated_at", "2023-02-17 19:18:33.081981"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.082752"], ["updated_at", "2023-02-17 19:18:33.082752"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.083509"], ["updated_at", "2023-02-17 19:18:33.083509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.084446"], ["updated_at", "2023-02-17 19:18:33.084446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.085467"], ["updated_at", "2023-02-17 19:18:33.085467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.086264"], ["updated_at", "2023-02-17 19:18:33.086264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.086985"], ["updated_at", "2023-02-17 19:18:33.086985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.087676"], ["updated_at", "2023-02-17 19:18:33.087676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.088384"], ["updated_at", "2023-02-17 19:18:33.088384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.089090"], ["updated_at", "2023-02-17 19:18:33.089090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.089776"], ["updated_at", "2023-02-17 19:18:33.089776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.090510"], ["updated_at", "2023-02-17 19:18:33.090510"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:18:33.091219"], ["updated_at", "2023-02-17 19:18:33.091219"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:33.106868"], ["updated_at", "2023-02-17 19:18:33.106868"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:33.107898"], ["updated_at", "2023-02-17 19:18:33.107898"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:33.108669"], ["updated_at", "2023-02-17 19:18:33.108669"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.109378"], ["updated_at", "2023-02-17 19:18:33.109378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.110162"], ["updated_at", "2023-02-17 19:18:33.110162"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.110885"], ["updated_at", "2023-02-17 19:18:33.110885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.111596"], ["updated_at", "2023-02-17 19:18:33.111596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.112281"], ["updated_at", "2023-02-17 19:18:33.112281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.112998"], ["updated_at", "2023-02-17 19:18:33.112998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.113756"], ["updated_at", "2023-02-17 19:18:33.113756"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.114736"], ["updated_at", "2023-02-17 19:18:33.114736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.115809"], ["updated_at", "2023-02-17 19:18:33.115809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.116626"], ["updated_at", "2023-02-17 19:18:33.116626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.117355"], ["updated_at", "2023-02-17 19:18:33.117355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.118045"], ["updated_at", "2023-02-17 19:18:33.118045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:18:33.118751"], ["updated_at", "2023-02-17 19:18:33.118751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:33.134314"], ["updated_at", "2023-02-17 19:18:33.134314"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:33.135386"], ["updated_at", "2023-02-17 19:18:33.135386"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:33.136182"], ["updated_at", "2023-02-17 19:18:33.136182"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.136886"], ["updated_at", "2023-02-17 19:18:33.136886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.137673"], ["updated_at", "2023-02-17 19:18:33.137673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.138408"], ["updated_at", "2023-02-17 19:18:33.138408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.139121"], ["updated_at", "2023-02-17 19:18:33.139121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.139817"], ["updated_at", "2023-02-17 19:18:33.139817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.140544"], ["updated_at", "2023-02-17 19:18:33.140544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.141278"], ["updated_at", "2023-02-17 19:18:33.141278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.142000"], ["updated_at", "2023-02-17 19:18:33.142000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.142687"], ["updated_at", "2023-02-17 19:18:33.142687"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.143408"], ["updated_at", "2023-02-17 19:18:33.143408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.144158"], ["updated_at", "2023-02-17 19:18:33.144158"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.145267"], ["updated_at", "2023-02-17 19:18:33.145267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:18:33.146114"], ["updated_at", "2023-02-17 19:18:33.146114"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:33.161965"], ["updated_at", "2023-02-17 19:18:33.161965"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:33.162967"], ["updated_at", "2023-02-17 19:18:33.162967"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:33.163704"], ["updated_at", "2023-02-17 19:18:33.163704"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.164468"], ["updated_at", "2023-02-17 19:18:33.164468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.165458"], ["updated_at", "2023-02-17 19:18:33.165458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.166316"], ["updated_at", "2023-02-17 19:18:33.166316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.167049"], ["updated_at", "2023-02-17 19:18:33.167049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.167727"], ["updated_at", "2023-02-17 19:18:33.167727"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.168432"], ["updated_at", "2023-02-17 19:18:33.168432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.169138"], ["updated_at", "2023-02-17 19:18:33.169138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.169818"], ["updated_at", "2023-02-17 19:18:33.169818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.170527"], ["updated_at", "2023-02-17 19:18:33.170527"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.171228"], ["updated_at", "2023-02-17 19:18:33.171228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.171932"], ["updated_at", "2023-02-17 19:18:33.171932"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.172654"], ["updated_at", "2023-02-17 19:18:33.172654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:18:33.173688"], ["updated_at", "2023-02-17 19:18:33.173688"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:18:33.190324"], ["updated_at", "2023-02-17 19:18:33.190324"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:18:33.191319"], ["updated_at", "2023-02-17 19:18:33.191319"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:18:33.192089"], ["updated_at", "2023-02-17 19:18:33.192089"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:18:33.192874"], ["updated_at", "2023-02-17 19:18:33.192874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.193781"], ["updated_at", "2023-02-17 19:18:33.193781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.194604"], ["updated_at", "2023-02-17 19:18:33.194604"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.195351"], ["updated_at", "2023-02-17 19:18:33.195351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.196086"], ["updated_at", "2023-02-17 19:18:33.196086"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.196809"], ["updated_at", "2023-02-17 19:18:33.196809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.197525"], ["updated_at", "2023-02-17 19:18:33.197525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.198268"], ["updated_at", "2023-02-17 19:18:33.198268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.199013"], ["updated_at", "2023-02-17 19:18:33.199013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.199725"], ["updated_at", "2023-02-17 19:18:33.199725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.200432"], ["updated_at", "2023-02-17 19:18:33.200432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.201164"], ["updated_at", "2023-02-17 19:18:33.201164"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:18:33.201932"], ["updated_at", "2023-02-17 19:18:33.201932"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:18:33 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:18:33 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:18:33 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.4ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.3ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (2.6ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:21:17.612241"], ["updated_at", "2023-02-17 19:21:17.612241"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (1.0ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:21:17.631698"], ["updated_at", "2023-02-17 19:21:17.631698"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:21:17.638995"], ["updated_at", "2023-02-17 19:21:17.638995"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.4ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:21:17.650452"], ["updated_at", "2023-02-17 19:21:17.650452"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

Enrollment Create (1.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:21:17.659291"], ["updated_at", "2023-02-17 19:21:17.659291"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:21:17.665527"], ["updated_at", "2023-02-17 19:21:17.665527"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:21:17.668452"], ["updated_at", "2023-02-17 19:21:17.668452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 68ms (Views: 0.2ms | ActiveRecord: 11.7ms | Allocations: 28612)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML

Survey Create (1.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:21:17.687539"], ["updated_at", "2023-02-17 19:21:17.687539"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 13ms (Views: 6.6ms | ActiveRecord: 2.0ms | Allocations: 4603)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000556142b39428>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:21:17.706685"], ["updated_at", "2023-02-17 19:21:17.706685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]

Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 226)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:21:17.720918"], ["updated_at", "2023-02-17 19:21:17.720918"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:21:17.727020"], ["updated_at", "2023-02-17 19:21:17.727020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 1.0ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:21:17.736973"], ["updated_at", "2023-02-17 19:21:17.736973"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:21:17.744160"], ["updated_at", "2023-02-17 19:21:17.744160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:21:17.747388"], ["updated_at", "2023-02-17 19:21:17.747388"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:21:17.749627"], ["updated_at", "2023-02-17 19:21:17.749627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 55ms (Views: 0.2ms | ActiveRecord: 5.0ms | Allocations: 28612)

Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:17.750504"], ["updated_at", "2023-02-17 19:21:17.750504"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (2.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:17.757582"], ["updated_at", "2023-02-17 19:21:17.757582"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:21:17.761222"], ["updated_at", "2023-02-17 19:21:17.761222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:21:17.766701"], ["updated_at", "2023-02-17 19:21:17.766701"], ["role_id", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:21:17.767231"], ["updated_at", "2023-02-17 19:21:17.767231"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.5ms | Allocations: 1408)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:21:17.769130"], ["updated_at", "2023-02-17 19:21:17.769130"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055b5047284b8>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]

Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:21:17.774038"], ["updated_at", "2023-02-17 19:21:17.774038"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:21:17.775951"], ["updated_at", "2023-02-17 19:21:17.775951"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.6ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:21:17.779471"], ["updated_at", "2023-02-17 19:21:17.779471"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms | Allocations: 227)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Member Create (1.9ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:21:17.782719"], ["updated_at", "2023-02-17 19:21:17.782719"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (1.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:21:17.787164"], ["updated_at", "2023-02-17 19:21:17.787164"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:21:17.790239"], ["updated_at", "2023-02-17 19:21:17.790239"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:21:17.792126"], ["updated_at", "2023-02-17 19:21:17.792126"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:21:17.794007"], ["updated_at", "2023-02-17 19:21:17.794007"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:21:17.796580"], ["updated_at", "2023-02-17 19:21:17.796580"]]
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:21:17.798966"], ["updated_at", "2023-02-17 19:21:17.798966"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:21:17.801629"], ["updated_at", "2023-02-17 19:21:17.801629"]]

Processing by UsersController#create as HTML

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
Member Create (0.4ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:21:17.804287"], ["updated_at", "2023-02-17 19:21:17.804287"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:21:17.809774"], ["updated_at", "2023-02-17 19:21:17.809774"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:21:17.812223"], ["updated_at", "2023-02-17 19:21:17.812223"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:17.813675"], ["updated_at", "2023-02-17 19:21:17.813675"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:21:17.815533"], ["updated_at", "2023-02-17 19:21:17.815533"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:21:17.818301"], ["updated_at", "2023-02-17 19:21:17.818301"], ["role_id", 34]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:17.819692"], ["updated_at", "2023-02-17 19:21:17.819692"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:21:17.821651"], ["updated_at", "2023-02-17 19:21:17.821651"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:17.825238"], ["updated_at", "2023-02-17 19:21:17.825238"]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:21:17.824720"], ["updated_at", "2023-02-17 19:21:17.824720"], ["role_id", 34]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:21:17.827340"], ["updated_at", "2023-02-17 19:21:17.827340"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:21:17.829380"], ["updated_at", "2023-02-17 19:21:17.829380"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:17.830561"], ["updated_at", "2023-02-17 19:21:17.830561"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:21:17.832354"], ["updated_at", "2023-02-17 19:21:17.832354"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:17.835628"], ["updated_at", "2023-02-17 19:21:17.835628"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:21:17.834841"], ["updated_at", "2023-02-17 19:21:17.834841"], ["role_id", 34]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:21:17.838269"], ["updated_at", "2023-02-17 19:21:17.838269"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:21:17.840934"], ["updated_at", "2023-02-17 19:21:17.840934"], ["role_id", 34]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:17.841530"], ["updated_at", "2023-02-17 19:21:17.841530"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:21:17.843498"], ["updated_at", "2023-02-17 19:21:17.843498"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:21:17.846026"], ["updated_at", "2023-02-17 19:21:17.846026"], ["role_id", 34]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:17.847079"], ["updated_at", "2023-02-17 19:21:17.847079"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:21:17.848999"], ["updated_at", "2023-02-17 19:21:17.848999"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:21:17.851507"], ["updated_at", "2023-02-17 19:21:17.851507"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:17.852814"], ["updated_at", "2023-02-17 19:21:17.852814"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:21:17.854300"], ["updated_at", "2023-02-17 19:21:17.854300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:21:17.856401"], ["updated_at", "2023-02-17 19:21:17.856401"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:21:17.858528"], ["updated_at", "2023-02-17 19:21:17.858528"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:21:17.860521"], ["updated_at", "2023-02-17 19:21:17.860521"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:21:17 -0300

Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:21:17.862633"], ["updated_at", "2023-02-17 19:21:17.862633"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:21:17.865489"], ["updated_at", "2023-02-17 19:21:17.865489"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:21:17.867992"], ["updated_at", "2023-02-17 19:21:17.867992"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:21:17.869957"], ["updated_at", "2023-02-17 19:21:17.869957"], ["role_id", 34]]

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 232)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:21:17.873263"], ["updated_at", "2023-02-17 19:21:17.873263"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:21:17.875704"], ["updated_at", "2023-02-17 19:21:17.875704"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:21:17.877978"], ["updated_at", "2023-02-17 19:21:17.877978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:21:17.879700"], ["updated_at", "2023-02-17 19:21:17.879700"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:21:17 -0300

TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:21:17.882199"], ["updated_at", "2023-02-17 19:21:17.882199"]]
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 180)

TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:21:17.885125"], ["updated_at", "2023-02-17 19:21:17.885125"], ["role_id", 34]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:21:17.888021"], ["updated_at", "2023-02-17 19:21:17.888021"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:21:17.890501"], ["updated_at", "2023-02-17 19:21:17.890501"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:21:17.892481"], ["updated_at", "2023-02-17 19:21:17.892481"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:21:17.894300"], ["updated_at", "2023-02-17 19:21:17.894300"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:21:17.896704"], ["updated_at", "2023-02-17 19:21:17.896704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:21:17.898742"], ["updated_at", "2023-02-17 19:21:17.898742"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:21:17.901133"], ["updated_at", "2023-02-17 19:21:17.901133"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.9ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:21:17.903000"], ["updated_at", "2023-02-17 19:21:17.903000"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:21:17.906037"], ["updated_at", "2023-02-17 19:21:17.906037"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:21:17.908952"], ["updated_at", "2023-02-17 19:21:17.908952"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:21:17.912007"], ["updated_at", "2023-02-17 19:21:17.912007"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:21:17.914321"], ["updated_at", "2023-02-17 19:21:17.914321"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:21:17.916413"], ["updated_at", "2023-02-17 19:21:17.916413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:21:17.918277"], ["updated_at", "2023-02-17 19:21:17.918277"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:21:17.921557"], ["updated_at", "2023-02-17 19:21:17.921557"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:21:17.923566"], ["updated_at", "2023-02-17 19:21:17.923566"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:21:17.926636"], ["updated_at", "2023-02-17 19:21:17.926636"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:21:17.928468"], ["updated_at", "2023-02-17 19:21:17.928468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:21:17.930610"], ["updated_at", "2023-02-17 19:21:17.930610"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:21:17.932663"], ["updated_at", "2023-02-17 19:21:17.932663"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:21:17.935018"], ["updated_at", "2023-02-17 19:21:17.935018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:21:17.936980"], ["updated_at", "2023-02-17 19:21:17.936980"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:21:17.939085"], ["updated_at", "2023-02-17 19:21:17.939085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:21:17.941199"], ["updated_at", "2023-02-17 19:21:17.941199"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:21:17.943786"], ["updated_at", "2023-02-17 19:21:17.943786"]]
TRANSACTION (7.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:21:17.953634"], ["updated_at", "2023-02-17 19:21:17.953634"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:21:17.955837"], ["updated_at", "2023-02-17 19:21:17.955837"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:21:17.957647"], ["updated_at", "2023-02-17 19:21:17.957647"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:21:17.959738"], ["updated_at", "2023-02-17 19:21:17.959738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:21:17.961648"], ["updated_at", "2023-02-17 19:21:17.961648"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.5ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:21:17.963775"], ["updated_at", "2023-02-17 19:21:17.963775"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:21:17.966302"], ["updated_at", "2023-02-17 19:21:17.966302"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:21:17.968500"], ["updated_at", "2023-02-17 19:21:17.968500"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:21:17.970764"], ["updated_at", "2023-02-17 19:21:17.970764"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:21:17.972976"], ["updated_at", "2023-02-17 19:21:17.972976"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:21:17.974943"], ["updated_at", "2023-02-17 19:21:17.974943"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:21:17.977147"], ["updated_at", "2023-02-17 19:21:17.977147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:21:17.979073"], ["updated_at", "2023-02-17 19:21:17.979073"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:21:17.981463"], ["updated_at", "2023-02-17 19:21:17.981463"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:21:17.983775"], ["updated_at", "2023-02-17 19:21:17.983775"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:21:17.986642"], ["updated_at", "2023-02-17 19:21:17.986642"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:21:17.989067"], ["updated_at", "2023-02-17 19:21:17.989067"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:21:17.991294"], ["updated_at", "2023-02-17 19:21:17.991294"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:21:17.993213"], ["updated_at", "2023-02-17 19:21:17.993213"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:21:17.995386"], ["updated_at", "2023-02-17 19:21:17.995386"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:21:17.997422"], ["updated_at", "2023-02-17 19:21:17.997422"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:21:17.999875"], ["updated_at", "2023-02-17 19:21:17.999875"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:21:18.002247"], ["updated_at", "2023-02-17 19:21:18.002247"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:21:18.004919"], ["updated_at", "2023-02-17 19:21:18.004919"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.3ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:21:18.007569"], ["updated_at", "2023-02-17 19:21:18.007569"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:21:18.010129"], ["updated_at", "2023-02-17 19:21:18.010129"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:21:18.012762"], ["updated_at", "2023-02-17 19:21:18.012762"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.6ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:21:18.018652"], ["updated_at", "2023-02-17 19:21:18.018652"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:21:18.021602"], ["updated_at", "2023-02-17 19:21:18.021602"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:21:18.024064"], ["updated_at", "2023-02-17 19:21:18.024064"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:18.064533"], ["updated_at", "2023-02-17 19:21:18.064533"], ["role_id", 2]]
SurveyQuestion Create (1.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:18.067721"], ["updated_at", "2023-02-17 19:21:18.067721"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:18.070308"], ["updated_at", "2023-02-17 19:21:18.070308"]]
QuestionOption Create (0.9ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.071544"], ["updated_at", "2023-02-17 19:21:18.071544"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.073460"], ["updated_at", "2023-02-17 19:21:18.073460"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.074468"], ["updated_at", "2023-02-17 19:21:18.074468"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.075550"], ["updated_at", "2023-02-17 19:21:18.075550"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.076523"], ["updated_at", "2023-02-17 19:21:18.076523"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:18.077632"], ["updated_at", "2023-02-17 19:21:18.077632"]]
LikertScaleQuestion Create (1.0ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.078867"], ["updated_at", "2023-02-17 19:21:18.078867"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.081035"], ["updated_at", "2023-02-17 19:21:18.081035"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.082468"], ["updated_at", "2023-02-17 19:21:18.082468"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.083483"], ["updated_at", "2023-02-17 19:21:18.083483"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.084535"], ["updated_at", "2023-02-17 19:21:18.084535"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.085645"], ["updated_at", "2023-02-17 19:21:18.085645"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.087387"], ["updated_at", "2023-02-17 19:21:18.087387"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.088734"], ["updated_at", "2023-02-17 19:21:18.088734"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.090026"], ["updated_at", "2023-02-17 19:21:18.090026"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.091288"], ["updated_at", "2023-02-17 19:21:18.091288"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.092643"], ["updated_at", "2023-02-17 19:21:18.092643"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.094002"], ["updated_at", "2023-02-17 19:21:18.094002"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:18.110080"], ["updated_at", "2023-02-17 19:21:18.110080"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:18.111829"], ["updated_at", "2023-02-17 19:21:18.111829"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:18.113502"], ["updated_at", "2023-02-17 19:21:18.113502"]]
QuestionOption Create (0.4ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.114674"], ["updated_at", "2023-02-17 19:21:18.114674"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.116073"], ["updated_at", "2023-02-17 19:21:18.116073"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.117605"], ["updated_at", "2023-02-17 19:21:18.117605"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.118630"], ["updated_at", "2023-02-17 19:21:18.118630"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.119650"], ["updated_at", "2023-02-17 19:21:18.119650"]]
SurveyQuestion Create (0.4ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:18.120651"], ["updated_at", "2023-02-17 19:21:18.120651"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.122575"], ["updated_at", "2023-02-17 19:21:18.122575"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.124590"], ["updated_at", "2023-02-17 19:21:18.124590"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.125515"], ["updated_at", "2023-02-17 19:21:18.125515"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.126310"], ["updated_at", "2023-02-17 19:21:18.126310"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.127246"], ["updated_at", "2023-02-17 19:21:18.127246"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.128452"], ["updated_at", "2023-02-17 19:21:18.128452"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.129266"], ["updated_at", "2023-02-17 19:21:18.129266"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.130120"], ["updated_at", "2023-02-17 19:21:18.130120"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.131336"], ["updated_at", "2023-02-17 19:21:18.131336"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.132465"], ["updated_at", "2023-02-17 19:21:18.132465"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.133654"], ["updated_at", "2023-02-17 19:21:18.133654"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.134720"], ["updated_at", "2023-02-17 19:21:18.134720"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.170509"], ["updated_at", "2023-02-17 19:21:18.170509"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.171637"], ["updated_at", "2023-02-17 19:21:18.171637"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.172820"], ["updated_at", "2023-02-17 19:21:18.172820"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.173860"], ["updated_at", "2023-02-17 19:21:18.173860"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.174904"], ["updated_at", "2023-02-17 19:21:18.174904"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.176062"], ["updated_at", "2023-02-17 19:21:18.176062"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.176893"], ["updated_at", "2023-02-17 19:21:18.176893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.177623"], ["updated_at", "2023-02-17 19:21:18.177623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.178349"], ["updated_at", "2023-02-17 19:21:18.178349"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.179051"], ["updated_at", "2023-02-17 19:21:18.179051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.179904"], ["updated_at", "2023-02-17 19:21:18.179904"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.180666"], ["updated_at", "2023-02-17 19:21:18.180666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.181367"], ["updated_at", "2023-02-17 19:21:18.181367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.182055"], ["updated_at", "2023-02-17 19:21:18.182055"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.182776"], ["updated_at", "2023-02-17 19:21:18.182776"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.184075"], ["updated_at", "2023-02-17 19:21:18.184075"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.202929"], ["updated_at", "2023-02-17 19:21:18.202929"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.204128"], ["updated_at", "2023-02-17 19:21:18.204128"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.205228"], ["updated_at", "2023-02-17 19:21:18.205228"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.206015"], ["updated_at", "2023-02-17 19:21:18.206015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.206795"], ["updated_at", "2023-02-17 19:21:18.206795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.207544"], ["updated_at", "2023-02-17 19:21:18.207544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.208437"], ["updated_at", "2023-02-17 19:21:18.208437"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.209301"], ["updated_at", "2023-02-17 19:21:18.209301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.210047"], ["updated_at", "2023-02-17 19:21:18.210047"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.210753"], ["updated_at", "2023-02-17 19:21:18.210753"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.211463"], ["updated_at", "2023-02-17 19:21:18.211463"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.212276"], ["updated_at", "2023-02-17 19:21:18.212276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.213054"], ["updated_at", "2023-02-17 19:21:18.213054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.214078"], ["updated_at", "2023-02-17 19:21:18.214078"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.215016"], ["updated_at", "2023-02-17 19:21:18.215016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.216102"], ["updated_at", "2023-02-17 19:21:18.216102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.233902"], ["updated_at", "2023-02-17 19:21:18.233902"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.235138"], ["updated_at", "2023-02-17 19:21:18.235138"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.236027"], ["updated_at", "2023-02-17 19:21:18.236027"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.236740"], ["updated_at", "2023-02-17 19:21:18.236740"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.237553"], ["updated_at", "2023-02-17 19:21:18.237553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.238420"], ["updated_at", "2023-02-17 19:21:18.238420"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.239255"], ["updated_at", "2023-02-17 19:21:18.239255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.240008"], ["updated_at", "2023-02-17 19:21:18.240008"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.240694"], ["updated_at", "2023-02-17 19:21:18.240694"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.241661"], ["updated_at", "2023-02-17 19:21:18.241661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.242481"], ["updated_at", "2023-02-17 19:21:18.242481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.243554"], ["updated_at", "2023-02-17 19:21:18.243554"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.244456"], ["updated_at", "2023-02-17 19:21:18.244456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.245585"], ["updated_at", "2023-02-17 19:21:18.245585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.246395"], ["updated_at", "2023-02-17 19:21:18.246395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.247161"], ["updated_at", "2023-02-17 19:21:18.247161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.264470"], ["updated_at", "2023-02-17 19:21:18.264470"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.265407"], ["updated_at", "2023-02-17 19:21:18.265407"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.266173"], ["updated_at", "2023-02-17 19:21:18.266173"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.266909"], ["updated_at", "2023-02-17 19:21:18.266909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.267957"], ["updated_at", "2023-02-17 19:21:18.267957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.268764"], ["updated_at", "2023-02-17 19:21:18.268764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.269467"], ["updated_at", "2023-02-17 19:21:18.269467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.270215"], ["updated_at", "2023-02-17 19:21:18.270215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.271043"], ["updated_at", "2023-02-17 19:21:18.271043"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.271879"], ["updated_at", "2023-02-17 19:21:18.271879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.272582"], ["updated_at", "2023-02-17 19:21:18.272582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.273612"], ["updated_at", "2023-02-17 19:21:18.273612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.274546"], ["updated_at", "2023-02-17 19:21:18.274546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.275596"], ["updated_at", "2023-02-17 19:21:18.275596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.276366"], ["updated_at", "2023-02-17 19:21:18.276366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.277074"], ["updated_at", "2023-02-17 19:21:18.277074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.295195"], ["updated_at", "2023-02-17 19:21:18.295195"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.296161"], ["updated_at", "2023-02-17 19:21:18.296161"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.296960"], ["updated_at", "2023-02-17 19:21:18.296960"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.297895"], ["updated_at", "2023-02-17 19:21:18.297895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.298726"], ["updated_at", "2023-02-17 19:21:18.298726"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.299546"], ["updated_at", "2023-02-17 19:21:18.299546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.300289"], ["updated_at", "2023-02-17 19:21:18.300289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.301024"], ["updated_at", "2023-02-17 19:21:18.301024"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.301870"], ["updated_at", "2023-02-17 19:21:18.301870"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.302652"], ["updated_at", "2023-02-17 19:21:18.302652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.303730"], ["updated_at", "2023-02-17 19:21:18.303730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.304653"], ["updated_at", "2023-02-17 19:21:18.304653"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.305617"], ["updated_at", "2023-02-17 19:21:18.305617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.306412"], ["updated_at", "2023-02-17 19:21:18.306412"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.307124"], ["updated_at", "2023-02-17 19:21:18.307124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.307821"], ["updated_at", "2023-02-17 19:21:18.307821"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.325589"], ["updated_at", "2023-02-17 19:21:18.325589"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.327082"], ["updated_at", "2023-02-17 19:21:18.327082"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.327952"], ["updated_at", "2023-02-17 19:21:18.327952"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.328691"], ["updated_at", "2023-02-17 19:21:18.328691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.329591"], ["updated_at", "2023-02-17 19:21:18.329591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.330592"], ["updated_at", "2023-02-17 19:21:18.330592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.331405"], ["updated_at", "2023-02-17 19:21:18.331405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.332332"], ["updated_at", "2023-02-17 19:21:18.332332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.333180"], ["updated_at", "2023-02-17 19:21:18.333180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.334111"], ["updated_at", "2023-02-17 19:21:18.334111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.334894"], ["updated_at", "2023-02-17 19:21:18.334894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.335627"], ["updated_at", "2023-02-17 19:21:18.335627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.336362"], ["updated_at", "2023-02-17 19:21:18.336362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.337188"], ["updated_at", "2023-02-17 19:21:18.337188"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.338066"], ["updated_at", "2023-02-17 19:21:18.338066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.338849"], ["updated_at", "2023-02-17 19:21:18.338849"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:21:18 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 401)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:18.360086"], ["updated_at", "2023-02-17 19:21:18.360086"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:21:18.361662"], ["updated_at", "2023-02-17 19:21:18.361662"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:21:18.364815"], ["updated_at", "2023-02-17 19:21:18.364815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:21:18.366083"], ["updated_at", "2023-02-17 19:21:18.366083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:21:18.369252"], ["updated_at", "2023-02-17 19:21:18.369252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:21:18.370510"], ["updated_at", "2023-02-17 19:21:18.370510"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:21:18.372797"], ["updated_at", "2023-02-17 19:21:18.372797"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:21:18.374258"], ["updated_at", "2023-02-17 19:21:18.374258"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:21:18.375927"], ["updated_at", "2023-02-17 19:21:18.375927"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:21:18.377376"], ["updated_at", "2023-02-17 19:21:18.377376"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:21:18.379020"], ["updated_at", "2023-02-17 19:21:18.379020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:21:18.380314"], ["updated_at", "2023-02-17 19:21:18.380314"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:21:18.381840"], ["updated_at", "2023-02-17 19:21:18.381840"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:21:18.383368"], ["updated_at", "2023-02-17 19:21:18.383368"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:21:18.384898"], ["updated_at", "2023-02-17 19:21:18.384898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:21:18.386397"], ["updated_at", "2023-02-17 19:21:18.386397"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:21:18.387953"], ["updated_at", "2023-02-17 19:21:18.387953"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:21:18.389163"], ["updated_at", "2023-02-17 19:21:18.389163"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:21:18.390690"], ["updated_at", "2023-02-17 19:21:18.390690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:21:18.392155"], ["updated_at", "2023-02-17 19:21:18.392155"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:21:18.393842"], ["updated_at", "2023-02-17 19:21:18.393842"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:21:18.395089"], ["updated_at", "2023-02-17 19:21:18.395089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:21:18.396733"], ["updated_at", "2023-02-17 19:21:18.396733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:21:18.398124"], ["updated_at", "2023-02-17 19:21:18.398124"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:21:18.399954"], ["updated_at", "2023-02-17 19:21:18.399954"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:21:18.401247"], ["updated_at", "2023-02-17 19:21:18.401247"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:21:18.402642"], ["updated_at", "2023-02-17 19:21:18.402642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:21:18.404032"], ["updated_at", "2023-02-17 19:21:18.404032"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:21:18.405493"], ["updated_at", "2023-02-17 19:21:18.405493"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:21:18.406702"], ["updated_at", "2023-02-17 19:21:18.406702"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:21:18.408234"], ["updated_at", "2023-02-17 19:21:18.408234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:21:18.409448"], ["updated_at", "2023-02-17 19:21:18.409448"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:21:18.410979"], ["updated_at", "2023-02-17 19:21:18.410979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:21:18.412263"], ["updated_at", "2023-02-17 19:21:18.412263"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:21:18.413930"], ["updated_at", "2023-02-17 19:21:18.413930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:21:18.415424"], ["updated_at", "2023-02-17 19:21:18.415424"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:21:18.417058"], ["updated_at", "2023-02-17 19:21:18.417058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:21:18.418450"], ["updated_at", "2023-02-17 19:21:18.418450"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:21:18.419936"], ["updated_at", "2023-02-17 19:21:18.419936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:21:18.421162"], ["updated_at", "2023-02-17 19:21:18.421162"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:21:18.422941"], ["updated_at", "2023-02-17 19:21:18.422941"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:21:18.424259"], ["updated_at", "2023-02-17 19:21:18.424259"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:21:18.425641"], ["updated_at", "2023-02-17 19:21:18.425641"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:21:18.427210"], ["updated_at", "2023-02-17 19:21:18.427210"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:21:18.428745"], ["updated_at", "2023-02-17 19:21:18.428745"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:21:18.430384"], ["updated_at", "2023-02-17 19:21:18.430384"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:21:18.431944"], ["updated_at", "2023-02-17 19:21:18.431944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:21:18.433394"], ["updated_at", "2023-02-17 19:21:18.433394"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:21:18.434975"], ["updated_at", "2023-02-17 19:21:18.434975"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:21:18.436355"], ["updated_at", "2023-02-17 19:21:18.436355"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:21:18.438016"], ["updated_at", "2023-02-17 19:21:18.438016"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:21:18.439304"], ["updated_at", "2023-02-17 19:21:18.439304"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:21:18.441016"], ["updated_at", "2023-02-17 19:21:18.441016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:21:18.442320"], ["updated_at", "2023-02-17 19:21:18.442320"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:21:18.444067"], ["updated_at", "2023-02-17 19:21:18.444067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:21:18.445443"], ["updated_at", "2023-02-17 19:21:18.445443"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:21:18.447161"], ["updated_at", "2023-02-17 19:21:18.447161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:21:18.448607"], ["updated_at", "2023-02-17 19:21:18.448607"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:21:18.450128"], ["updated_at", "2023-02-17 19:21:18.450128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:21:18.451496"], ["updated_at", "2023-02-17 19:21:18.451496"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:21:18.452989"], ["updated_at", "2023-02-17 19:21:18.452989"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:21:18.454626"], ["updated_at", "2023-02-17 19:21:18.454626"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:21:18.456156"], ["updated_at", "2023-02-17 19:21:18.456156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:21:18.457381"], ["updated_at", "2023-02-17 19:21:18.457381"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:21:18.458936"], ["updated_at", "2023-02-17 19:21:18.458936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:21:18.460305"], ["updated_at", "2023-02-17 19:21:18.460305"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:21:18.461883"], ["updated_at", "2023-02-17 19:21:18.461883"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:21:18.463182"], ["updated_at", "2023-02-17 19:21:18.463182"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:21:18.464727"], ["updated_at", "2023-02-17 19:21:18.464727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:21:18.466190"], ["updated_at", "2023-02-17 19:21:18.466190"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:21:18.467622"], ["updated_at", "2023-02-17 19:21:18.467622"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:21:18.469054"], ["updated_at", "2023-02-17 19:21:18.469054"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:21:18.470697"], ["updated_at", "2023-02-17 19:21:18.470697"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:21:18.471936"], ["updated_at", "2023-02-17 19:21:18.471936"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:21:18.473522"], ["updated_at", "2023-02-17 19:21:18.473522"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:21:18.474858"], ["updated_at", "2023-02-17 19:21:18.474858"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:21:18.476432"], ["updated_at", "2023-02-17 19:21:18.476432"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:21:18.477923"], ["updated_at", "2023-02-17 19:21:18.477923"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:21:18.479347"], ["updated_at", "2023-02-17 19:21:18.479347"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:21:18.481096"], ["updated_at", "2023-02-17 19:21:18.481096"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:21:18.482966"], ["updated_at", "2023-02-17 19:21:18.482966"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:21:18.484608"], ["updated_at", "2023-02-17 19:21:18.484608"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:21:18.486228"], ["updated_at", "2023-02-17 19:21:18.486228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:21:18.497563"], ["updated_at", "2023-02-17 19:21:18.497563"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:21:18.499448"], ["updated_at", "2023-02-17 19:21:18.499448"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:21:18.501097"], ["updated_at", "2023-02-17 19:21:18.501097"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:21:18.502983"], ["updated_at", "2023-02-17 19:21:18.502983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:21:18.504455"], ["updated_at", "2023-02-17 19:21:18.504455"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:21:18.505848"], ["updated_at", "2023-02-17 19:21:18.505848"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:21:18.508381"], ["updated_at", "2023-02-17 19:21:18.508381"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:21:18.509829"], ["updated_at", "2023-02-17 19:21:18.509829"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:21:18.511115"], ["updated_at", "2023-02-17 19:21:18.511115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:21:18.512475"], ["updated_at", "2023-02-17 19:21:18.512475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:21:18.513726"], ["updated_at", "2023-02-17 19:21:18.513726"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:21:18.515377"], ["updated_at", "2023-02-17 19:21:18.515377"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:21:18.516588"], ["updated_at", "2023-02-17 19:21:18.516588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:21:18.517954"], ["updated_at", "2023-02-17 19:21:18.517954"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:21:18.519629"], ["updated_at", "2023-02-17 19:21:18.519629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:21:18.521474"], ["updated_at", "2023-02-17 19:21:18.521474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:21:18.523009"], ["updated_at", "2023-02-17 19:21:18.523009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:21:18.524088"], ["updated_at", "2023-02-17 19:21:18.524088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:18.537196"], ["updated_at", "2023-02-17 19:21:18.537196"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:18.538466"], ["updated_at", "2023-02-17 19:21:18.538466"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:18.539551"], ["updated_at", "2023-02-17 19:21:18.539551"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.540772"], ["updated_at", "2023-02-17 19:21:18.540772"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.541960"], ["updated_at", "2023-02-17 19:21:18.541960"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.543136"], ["updated_at", "2023-02-17 19:21:18.543136"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.544298"], ["updated_at", "2023-02-17 19:21:18.544298"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.545540"], ["updated_at", "2023-02-17 19:21:18.545540"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:18.546604"], ["updated_at", "2023-02-17 19:21:18.546604"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.548149"], ["updated_at", "2023-02-17 19:21:18.548149"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.549483"], ["updated_at", "2023-02-17 19:21:18.549483"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.550560"], ["updated_at", "2023-02-17 19:21:18.550560"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.551592"], ["updated_at", "2023-02-17 19:21:18.551592"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.552762"], ["updated_at", "2023-02-17 19:21:18.552762"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.553879"], ["updated_at", "2023-02-17 19:21:18.553879"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.554886"], ["updated_at", "2023-02-17 19:21:18.554886"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.555801"], ["updated_at", "2023-02-17 19:21:18.555801"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.556922"], ["updated_at", "2023-02-17 19:21:18.556922"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.557922"], ["updated_at", "2023-02-17 19:21:18.557922"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.558842"], ["updated_at", "2023-02-17 19:21:18.558842"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.559658"], ["updated_at", "2023-02-17 19:21:18.559658"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:18.572473"], ["updated_at", "2023-02-17 19:21:18.572473"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:18.573730"], ["updated_at", "2023-02-17 19:21:18.573730"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:18.574653"], ["updated_at", "2023-02-17 19:21:18.574653"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.575664"], ["updated_at", "2023-02-17 19:21:18.575664"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.576492"], ["updated_at", "2023-02-17 19:21:18.576492"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.577213"], ["updated_at", "2023-02-17 19:21:18.577213"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.577898"], ["updated_at", "2023-02-17 19:21:18.577898"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.578580"], ["updated_at", "2023-02-17 19:21:18.578580"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:18.579443"], ["updated_at", "2023-02-17 19:21:18.579443"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.580280"], ["updated_at", "2023-02-17 19:21:18.580280"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.581290"], ["updated_at", "2023-02-17 19:21:18.581290"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.582402"], ["updated_at", "2023-02-17 19:21:18.582402"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.583620"], ["updated_at", "2023-02-17 19:21:18.583620"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.584723"], ["updated_at", "2023-02-17 19:21:18.584723"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.585992"], ["updated_at", "2023-02-17 19:21:18.585992"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.587131"], ["updated_at", "2023-02-17 19:21:18.587131"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.588236"], ["updated_at", "2023-02-17 19:21:18.588236"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.589514"], ["updated_at", "2023-02-17 19:21:18.589514"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.590496"], ["updated_at", "2023-02-17 19:21:18.590496"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.591259"], ["updated_at", "2023-02-17 19:21:18.591259"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.591974"], ["updated_at", "2023-02-17 19:21:18.591974"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.609751"], ["updated_at", "2023-02-17 19:21:18.609751"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.610827"], ["updated_at", "2023-02-17 19:21:18.610827"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.611647"], ["updated_at", "2023-02-17 19:21:18.611647"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.612333"], ["updated_at", "2023-02-17 19:21:18.612333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.613404"], ["updated_at", "2023-02-17 19:21:18.613404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.614328"], ["updated_at", "2023-02-17 19:21:18.614328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.615057"], ["updated_at", "2023-02-17 19:21:18.615057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.615757"], ["updated_at", "2023-02-17 19:21:18.615757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.616563"], ["updated_at", "2023-02-17 19:21:18.616563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.617325"], ["updated_at", "2023-02-17 19:21:18.617325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.618041"], ["updated_at", "2023-02-17 19:21:18.618041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.618729"], ["updated_at", "2023-02-17 19:21:18.618729"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.619481"], ["updated_at", "2023-02-17 19:21:18.619481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.620654"], ["updated_at", "2023-02-17 19:21:18.620654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.621492"], ["updated_at", "2023-02-17 19:21:18.621492"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:18.622203"], ["updated_at", "2023-02-17 19:21:18.622203"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.639629"], ["updated_at", "2023-02-17 19:21:18.639629"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.640766"], ["updated_at", "2023-02-17 19:21:18.640766"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.641860"], ["updated_at", "2023-02-17 19:21:18.641860"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.642607"], ["updated_at", "2023-02-17 19:21:18.642607"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.643371"], ["updated_at", "2023-02-17 19:21:18.643371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.644096"], ["updated_at", "2023-02-17 19:21:18.644096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.644765"], ["updated_at", "2023-02-17 19:21:18.644765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.645567"], ["updated_at", "2023-02-17 19:21:18.645567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.646287"], ["updated_at", "2023-02-17 19:21:18.646287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.646981"], ["updated_at", "2023-02-17 19:21:18.646981"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.647789"], ["updated_at", "2023-02-17 19:21:18.647789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.648586"], ["updated_at", "2023-02-17 19:21:18.648586"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.649313"], ["updated_at", "2023-02-17 19:21:18.649313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.650019"], ["updated_at", "2023-02-17 19:21:18.650019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.650704"], ["updated_at", "2023-02-17 19:21:18.650704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:18.651449"], ["updated_at", "2023-02-17 19:21:18.651449"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.667227"], ["updated_at", "2023-02-17 19:21:18.667227"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.668191"], ["updated_at", "2023-02-17 19:21:18.668191"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.668966"], ["updated_at", "2023-02-17 19:21:18.668966"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.669668"], ["updated_at", "2023-02-17 19:21:18.669668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.670571"], ["updated_at", "2023-02-17 19:21:18.670571"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.671358"], ["updated_at", "2023-02-17 19:21:18.671358"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.672064"], ["updated_at", "2023-02-17 19:21:18.672064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.672739"], ["updated_at", "2023-02-17 19:21:18.672739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.673450"], ["updated_at", "2023-02-17 19:21:18.673450"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.674268"], ["updated_at", "2023-02-17 19:21:18.674268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.674994"], ["updated_at", "2023-02-17 19:21:18.674994"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.675693"], ["updated_at", "2023-02-17 19:21:18.675693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.676377"], ["updated_at", "2023-02-17 19:21:18.676377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.677057"], ["updated_at", "2023-02-17 19:21:18.677057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.677842"], ["updated_at", "2023-02-17 19:21:18.677842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:18.678629"], ["updated_at", "2023-02-17 19:21:18.678629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.694986"], ["updated_at", "2023-02-17 19:21:18.694986"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.695957"], ["updated_at", "2023-02-17 19:21:18.695957"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.696779"], ["updated_at", "2023-02-17 19:21:18.696779"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.697540"], ["updated_at", "2023-02-17 19:21:18.697540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.698300"], ["updated_at", "2023-02-17 19:21:18.698300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.699007"], ["updated_at", "2023-02-17 19:21:18.699007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.699706"], ["updated_at", "2023-02-17 19:21:18.699706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.700472"], ["updated_at", "2023-02-17 19:21:18.700472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.701331"], ["updated_at", "2023-02-17 19:21:18.701331"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.702049"], ["updated_at", "2023-02-17 19:21:18.702049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.702745"], ["updated_at", "2023-02-17 19:21:18.702745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.703543"], ["updated_at", "2023-02-17 19:21:18.703543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.704473"], ["updated_at", "2023-02-17 19:21:18.704473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.705223"], ["updated_at", "2023-02-17 19:21:18.705223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.705931"], ["updated_at", "2023-02-17 19:21:18.705931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:18.706622"], ["updated_at", "2023-02-17 19:21:18.706622"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.723093"], ["updated_at", "2023-02-17 19:21:18.723093"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.724390"], ["updated_at", "2023-02-17 19:21:18.724390"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.725291"], ["updated_at", "2023-02-17 19:21:18.725291"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.726014"], ["updated_at", "2023-02-17 19:21:18.726014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.726840"], ["updated_at", "2023-02-17 19:21:18.726840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.727601"], ["updated_at", "2023-02-17 19:21:18.727601"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.728314"], ["updated_at", "2023-02-17 19:21:18.728314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.729057"], ["updated_at", "2023-02-17 19:21:18.729057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.729746"], ["updated_at", "2023-02-17 19:21:18.729746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.730452"], ["updated_at", "2023-02-17 19:21:18.730452"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.731621"], ["updated_at", "2023-02-17 19:21:18.731621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.732623"], ["updated_at", "2023-02-17 19:21:18.732623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.733619"], ["updated_at", "2023-02-17 19:21:18.733619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.734647"], ["updated_at", "2023-02-17 19:21:18.734647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.735457"], ["updated_at", "2023-02-17 19:21:18.735457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:18.736164"], ["updated_at", "2023-02-17 19:21:18.736164"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:18.752737"], ["updated_at", "2023-02-17 19:21:18.752737"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:18.753900"], ["updated_at", "2023-02-17 19:21:18.753900"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.754902"], ["updated_at", "2023-02-17 19:21:18.754902"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.755782"], ["updated_at", "2023-02-17 19:21:18.755782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.756675"], ["updated_at", "2023-02-17 19:21:18.756675"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.757457"], ["updated_at", "2023-02-17 19:21:18.757457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.758200"], ["updated_at", "2023-02-17 19:21:18.758200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.758913"], ["updated_at", "2023-02-17 19:21:18.758913"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.759712"], ["updated_at", "2023-02-17 19:21:18.759712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.760431"], ["updated_at", "2023-02-17 19:21:18.760431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.761134"], ["updated_at", "2023-02-17 19:21:18.761134"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.761817"], ["updated_at", "2023-02-17 19:21:18.761817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.762521"], ["updated_at", "2023-02-17 19:21:18.762521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.763365"], ["updated_at", "2023-02-17 19:21:18.763365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.764287"], ["updated_at", "2023-02-17 19:21:18.764287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:18.765053"], ["updated_at", "2023-02-17 19:21:18.765053"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:21:18 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 17ms (Views: 13.2ms | ActiveRecord: 0.4ms | Allocations: 10757)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:18.791163"], ["updated_at", "2023-02-17 19:21:18.791163"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:21:18.792601"], ["updated_at", "2023-02-17 19:21:18.792601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:21:18.795649"], ["updated_at", "2023-02-17 19:21:18.795649"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:21:18.796814"], ["updated_at", "2023-02-17 19:21:18.796814"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:21:18.800071"], ["updated_at", "2023-02-17 19:21:18.800071"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:21:18.801458"], ["updated_at", "2023-02-17 19:21:18.801458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:21:18.803641"], ["updated_at", "2023-02-17 19:21:18.803641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:21:18.805387"], ["updated_at", "2023-02-17 19:21:18.805387"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:21:18.807131"], ["updated_at", "2023-02-17 19:21:18.807131"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:21:18.808451"], ["updated_at", "2023-02-17 19:21:18.808451"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:21:18.809838"], ["updated_at", "2023-02-17 19:21:18.809838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:21:18.811140"], ["updated_at", "2023-02-17 19:21:18.811140"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:21:18.812521"], ["updated_at", "2023-02-17 19:21:18.812521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:21:18.813808"], ["updated_at", "2023-02-17 19:21:18.813808"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:21:18.815707"], ["updated_at", "2023-02-17 19:21:18.815707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:21:18.816950"], ["updated_at", "2023-02-17 19:21:18.816950"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:21:18.818400"], ["updated_at", "2023-02-17 19:21:18.818400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:21:18.819568"], ["updated_at", "2023-02-17 19:21:18.819568"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:21:18.820885"], ["updated_at", "2023-02-17 19:21:18.820885"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:21:18.822223"], ["updated_at", "2023-02-17 19:21:18.822223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:21:18.823617"], ["updated_at", "2023-02-17 19:21:18.823617"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:21:18.824977"], ["updated_at", "2023-02-17 19:21:18.824977"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:21:18.826525"], ["updated_at", "2023-02-17 19:21:18.826525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:21:18.827677"], ["updated_at", "2023-02-17 19:21:18.827677"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:21:18.828996"], ["updated_at", "2023-02-17 19:21:18.828996"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:21:18.830369"], ["updated_at", "2023-02-17 19:21:18.830369"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:21:18.831700"], ["updated_at", "2023-02-17 19:21:18.831700"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:21:18.833138"], ["updated_at", "2023-02-17 19:21:18.833138"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:21:18.834893"], ["updated_at", "2023-02-17 19:21:18.834893"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:21:18.836544"], ["updated_at", "2023-02-17 19:21:18.836544"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:21:18.838207"], ["updated_at", "2023-02-17 19:21:18.838207"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:21:18.839965"], ["updated_at", "2023-02-17 19:21:18.839965"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:21:18.841551"], ["updated_at", "2023-02-17 19:21:18.841551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:21:18.842760"], ["updated_at", "2023-02-17 19:21:18.842760"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:21:18.844493"], ["updated_at", "2023-02-17 19:21:18.844493"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:21:18.845954"], ["updated_at", "2023-02-17 19:21:18.845954"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:21:18.847474"], ["updated_at", "2023-02-17 19:21:18.847474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:21:18.848743"], ["updated_at", "2023-02-17 19:21:18.848743"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:21:18.850120"], ["updated_at", "2023-02-17 19:21:18.850120"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:21:18.851447"], ["updated_at", "2023-02-17 19:21:18.851447"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:21:18.852891"], ["updated_at", "2023-02-17 19:21:18.852891"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:21:18.854159"], ["updated_at", "2023-02-17 19:21:18.854159"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:21:18.855908"], ["updated_at", "2023-02-17 19:21:18.855908"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:21:18.857356"], ["updated_at", "2023-02-17 19:21:18.857356"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:21:18.858925"], ["updated_at", "2023-02-17 19:21:18.858925"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:21:18.860165"], ["updated_at", "2023-02-17 19:21:18.860165"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:21:18.861524"], ["updated_at", "2023-02-17 19:21:18.861524"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:21:18.862799"], ["updated_at", "2023-02-17 19:21:18.862799"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:21:18.864266"], ["updated_at", "2023-02-17 19:21:18.864266"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:21:18.865900"], ["updated_at", "2023-02-17 19:21:18.865900"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:21:18.867540"], ["updated_at", "2023-02-17 19:21:18.867540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:21:18.868742"], ["updated_at", "2023-02-17 19:21:18.868742"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:21:18.870205"], ["updated_at", "2023-02-17 19:21:18.870205"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:21:18.871462"], ["updated_at", "2023-02-17 19:21:18.871462"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:21:18.872826"], ["updated_at", "2023-02-17 19:21:18.872826"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:21:18.874251"], ["updated_at", "2023-02-17 19:21:18.874251"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:21:18.875959"], ["updated_at", "2023-02-17 19:21:18.875959"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:21:18.877154"], ["updated_at", "2023-02-17 19:21:18.877154"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:21:18.878642"], ["updated_at", "2023-02-17 19:21:18.878642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:21:18.879828"], ["updated_at", "2023-02-17 19:21:18.879828"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:21:18.881426"], ["updated_at", "2023-02-17 19:21:18.881426"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:21:18.882773"], ["updated_at", "2023-02-17 19:21:18.882773"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:21:18.884237"], ["updated_at", "2023-02-17 19:21:18.884237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:21:18.885734"], ["updated_at", "2023-02-17 19:21:18.885734"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:21:18.887141"], ["updated_at", "2023-02-17 19:21:18.887141"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:21:18.888278"], ["updated_at", "2023-02-17 19:21:18.888278"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:21:18.889882"], ["updated_at", "2023-02-17 19:21:18.889882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:21:18.891100"], ["updated_at", "2023-02-17 19:21:18.891100"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:21:18.892406"], ["updated_at", "2023-02-17 19:21:18.892406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:21:18.893751"], ["updated_at", "2023-02-17 19:21:18.893751"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:21:18.895541"], ["updated_at", "2023-02-17 19:21:18.895541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:21:18.896960"], ["updated_at", "2023-02-17 19:21:18.896960"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:21:18.898399"], ["updated_at", "2023-02-17 19:21:18.898399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:21:18.899559"], ["updated_at", "2023-02-17 19:21:18.899559"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:21:18.901031"], ["updated_at", "2023-02-17 19:21:18.901031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:21:18.902189"], ["updated_at", "2023-02-17 19:21:18.902189"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:21:18.903490"], ["updated_at", "2023-02-17 19:21:18.903490"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:21:18.905149"], ["updated_at", "2023-02-17 19:21:18.905149"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:21:18.906664"], ["updated_at", "2023-02-17 19:21:18.906664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:21:18.907923"], ["updated_at", "2023-02-17 19:21:18.907923"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:21:18.909330"], ["updated_at", "2023-02-17 19:21:18.909330"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:21:18.910472"], ["updated_at", "2023-02-17 19:21:18.910472"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:21:18.911999"], ["updated_at", "2023-02-17 19:21:18.911999"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:21:18.913248"], ["updated_at", "2023-02-17 19:21:18.913248"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:21:18.914728"], ["updated_at", "2023-02-17 19:21:18.914728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:21:18.916133"], ["updated_at", "2023-02-17 19:21:18.916133"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:21:18.917556"], ["updated_at", "2023-02-17 19:21:18.917556"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:21:18.918724"], ["updated_at", "2023-02-17 19:21:18.918724"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:21:18.920300"], ["updated_at", "2023-02-17 19:21:18.920300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:21:18.921536"], ["updated_at", "2023-02-17 19:21:18.921536"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:21:18.922959"], ["updated_at", "2023-02-17 19:21:18.922959"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:21:18.924230"], ["updated_at", "2023-02-17 19:21:18.924230"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:21:18.926016"], ["updated_at", "2023-02-17 19:21:18.926016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:21:18.927479"], ["updated_at", "2023-02-17 19:21:18.927479"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:21:18.928887"], ["updated_at", "2023-02-17 19:21:18.928887"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:21:18.929960"], ["updated_at", "2023-02-17 19:21:18.929960"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:21:18.931239"], ["updated_at", "2023-02-17 19:21:18.931239"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:21:18.932598"], ["updated_at", "2023-02-17 19:21:18.932598"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:21:18.934768"], ["updated_at", "2023-02-17 19:21:18.934768"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:21:18.936156"], ["updated_at", "2023-02-17 19:21:18.936156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:21:18.937340"], ["updated_at", "2023-02-17 19:21:18.937340"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:18.949124"], ["updated_at", "2023-02-17 19:21:18.949124"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:18.950506"], ["updated_at", "2023-02-17 19:21:18.950506"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:18.951545"], ["updated_at", "2023-02-17 19:21:18.951545"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.952576"], ["updated_at", "2023-02-17 19:21:18.952576"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.953366"], ["updated_at", "2023-02-17 19:21:18.953366"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.954081"], ["updated_at", "2023-02-17 19:21:18.954081"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.954943"], ["updated_at", "2023-02-17 19:21:18.954943"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:18.955844"], ["updated_at", "2023-02-17 19:21:18.955844"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:18.956695"], ["updated_at", "2023-02-17 19:21:18.956695"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.957605"], ["updated_at", "2023-02-17 19:21:18.957605"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.958439"], ["updated_at", "2023-02-17 19:21:18.958439"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.959419"], ["updated_at", "2023-02-17 19:21:18.959419"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.960256"], ["updated_at", "2023-02-17 19:21:18.960256"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.961004"], ["updated_at", "2023-02-17 19:21:18.961004"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.961833"], ["updated_at", "2023-02-17 19:21:18.961833"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.962631"], ["updated_at", "2023-02-17 19:21:18.962631"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.963589"], ["updated_at", "2023-02-17 19:21:18.963589"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.964574"], ["updated_at", "2023-02-17 19:21:18.964574"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.965733"], ["updated_at", "2023-02-17 19:21:18.965733"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.966650"], ["updated_at", "2023-02-17 19:21:18.966650"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:18.967608"], ["updated_at", "2023-02-17 19:21:18.967608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:18.980103"], ["updated_at", "2023-02-17 19:21:18.980103"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:18.981474"], ["updated_at", "2023-02-17 19:21:18.981474"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:18.982622"], ["updated_at", "2023-02-17 19:21:18.982622"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.983710"], ["updated_at", "2023-02-17 19:21:18.983710"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.984643"], ["updated_at", "2023-02-17 19:21:18.984643"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.985526"], ["updated_at", "2023-02-17 19:21:18.985526"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.986602"], ["updated_at", "2023-02-17 19:21:18.986602"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:18.987407"], ["updated_at", "2023-02-17 19:21:18.987407"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:18.988299"], ["updated_at", "2023-02-17 19:21:18.988299"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.989465"], ["updated_at", "2023-02-17 19:21:18.989465"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.990474"], ["updated_at", "2023-02-17 19:21:18.990474"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.991359"], ["updated_at", "2023-02-17 19:21:18.991359"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.992201"], ["updated_at", "2023-02-17 19:21:18.992201"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.993058"], ["updated_at", "2023-02-17 19:21:18.993058"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.994214"], ["updated_at", "2023-02-17 19:21:18.994214"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.995446"], ["updated_at", "2023-02-17 19:21:18.995446"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.996501"], ["updated_at", "2023-02-17 19:21:18.996501"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.997597"], ["updated_at", "2023-02-17 19:21:18.997597"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.998496"], ["updated_at", "2023-02-17 19:21:18.998496"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:18.999413"], ["updated_at", "2023-02-17 19:21:18.999413"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.000199"], ["updated_at", "2023-02-17 19:21:19.000199"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.020539"], ["updated_at", "2023-02-17 19:21:19.020539"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.021801"], ["updated_at", "2023-02-17 19:21:19.021801"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.022783"], ["updated_at", "2023-02-17 19:21:19.022783"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.023569"], ["updated_at", "2023-02-17 19:21:19.023569"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.024484"], ["updated_at", "2023-02-17 19:21:19.024484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.025878"], ["updated_at", "2023-02-17 19:21:19.025878"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.026942"], ["updated_at", "2023-02-17 19:21:19.026942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.027801"], ["updated_at", "2023-02-17 19:21:19.027801"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.028612"], ["updated_at", "2023-02-17 19:21:19.028612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.029555"], ["updated_at", "2023-02-17 19:21:19.029555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.030374"], ["updated_at", "2023-02-17 19:21:19.030374"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.031113"], ["updated_at", "2023-02-17 19:21:19.031113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.031875"], ["updated_at", "2023-02-17 19:21:19.031875"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.032741"], ["updated_at", "2023-02-17 19:21:19.032741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.033845"], ["updated_at", "2023-02-17 19:21:19.033845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.034860"], ["updated_at", "2023-02-17 19:21:19.034860"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.054985"], ["updated_at", "2023-02-17 19:21:19.054985"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.056215"], ["updated_at", "2023-02-17 19:21:19.056215"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.057165"], ["updated_at", "2023-02-17 19:21:19.057165"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.058139"], ["updated_at", "2023-02-17 19:21:19.058139"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.058982"], ["updated_at", "2023-02-17 19:21:19.058982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.059761"], ["updated_at", "2023-02-17 19:21:19.059761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.060563"], ["updated_at", "2023-02-17 19:21:19.060563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.061594"], ["updated_at", "2023-02-17 19:21:19.061594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.062523"], ["updated_at", "2023-02-17 19:21:19.062523"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.063386"], ["updated_at", "2023-02-17 19:21:19.063386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.064192"], ["updated_at", "2023-02-17 19:21:19.064192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.065256"], ["updated_at", "2023-02-17 19:21:19.065256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.066279"], ["updated_at", "2023-02-17 19:21:19.066279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.067149"], ["updated_at", "2023-02-17 19:21:19.067149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.067926"], ["updated_at", "2023-02-17 19:21:19.067926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.068785"], ["updated_at", "2023-02-17 19:21:19.068785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.087326"], ["updated_at", "2023-02-17 19:21:19.087326"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.088532"], ["updated_at", "2023-02-17 19:21:19.088532"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.089362"], ["updated_at", "2023-02-17 19:21:19.089362"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.090173"], ["updated_at", "2023-02-17 19:21:19.090173"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.090957"], ["updated_at", "2023-02-17 19:21:19.090957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.091944"], ["updated_at", "2023-02-17 19:21:19.091944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.092888"], ["updated_at", "2023-02-17 19:21:19.092888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.093726"], ["updated_at", "2023-02-17 19:21:19.093726"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.094493"], ["updated_at", "2023-02-17 19:21:19.094493"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.095617"], ["updated_at", "2023-02-17 19:21:19.095617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.096667"], ["updated_at", "2023-02-17 19:21:19.096667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.097722"], ["updated_at", "2023-02-17 19:21:19.097722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.098719"], ["updated_at", "2023-02-17 19:21:19.098719"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.099888"], ["updated_at", "2023-02-17 19:21:19.099888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.100706"], ["updated_at", "2023-02-17 19:21:19.100706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.101467"], ["updated_at", "2023-02-17 19:21:19.101467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.121659"], ["updated_at", "2023-02-17 19:21:19.121659"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.123029"], ["updated_at", "2023-02-17 19:21:19.123029"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.124209"], ["updated_at", "2023-02-17 19:21:19.124209"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.125405"], ["updated_at", "2023-02-17 19:21:19.125405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.126742"], ["updated_at", "2023-02-17 19:21:19.126742"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.127950"], ["updated_at", "2023-02-17 19:21:19.127950"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.129176"], ["updated_at", "2023-02-17 19:21:19.129176"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.130573"], ["updated_at", "2023-02-17 19:21:19.130573"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.131845"], ["updated_at", "2023-02-17 19:21:19.131845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.133151"], ["updated_at", "2023-02-17 19:21:19.133151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.134179"], ["updated_at", "2023-02-17 19:21:19.134179"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.135121"], ["updated_at", "2023-02-17 19:21:19.135121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.136831"], ["updated_at", "2023-02-17 19:21:19.136831"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.137875"], ["updated_at", "2023-02-17 19:21:19.137875"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.138783"], ["updated_at", "2023-02-17 19:21:19.138783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.139745"], ["updated_at", "2023-02-17 19:21:19.139745"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.159949"], ["updated_at", "2023-02-17 19:21:19.159949"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.161103"], ["updated_at", "2023-02-17 19:21:19.161103"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.162110"], ["updated_at", "2023-02-17 19:21:19.162110"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.162998"], ["updated_at", "2023-02-17 19:21:19.162998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.163894"], ["updated_at", "2023-02-17 19:21:19.163894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.164776"], ["updated_at", "2023-02-17 19:21:19.164776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.165839"], ["updated_at", "2023-02-17 19:21:19.165839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.166987"], ["updated_at", "2023-02-17 19:21:19.166987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.167914"], ["updated_at", "2023-02-17 19:21:19.167914"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.168776"], ["updated_at", "2023-02-17 19:21:19.168776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.169770"], ["updated_at", "2023-02-17 19:21:19.169770"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.170670"], ["updated_at", "2023-02-17 19:21:19.170670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.171456"], ["updated_at", "2023-02-17 19:21:19.171456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.172264"], ["updated_at", "2023-02-17 19:21:19.172264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.173239"], ["updated_at", "2023-02-17 19:21:19.173239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.174161"], ["updated_at", "2023-02-17 19:21:19.174161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.193256"], ["updated_at", "2023-02-17 19:21:19.193256"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.194422"], ["updated_at", "2023-02-17 19:21:19.194422"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.195503"], ["updated_at", "2023-02-17 19:21:19.195503"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.196427"], ["updated_at", "2023-02-17 19:21:19.196427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.197414"], ["updated_at", "2023-02-17 19:21:19.197414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.198351"], ["updated_at", "2023-02-17 19:21:19.198351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.199347"], ["updated_at", "2023-02-17 19:21:19.199347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.200276"], ["updated_at", "2023-02-17 19:21:19.200276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.201170"], ["updated_at", "2023-02-17 19:21:19.201170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.202020"], ["updated_at", "2023-02-17 19:21:19.202020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.202977"], ["updated_at", "2023-02-17 19:21:19.202977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.204017"], ["updated_at", "2023-02-17 19:21:19.204017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.205026"], ["updated_at", "2023-02-17 19:21:19.205026"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.206246"], ["updated_at", "2023-02-17 19:21:19.206246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.207154"], ["updated_at", "2023-02-17 19:21:19.207154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.208006"], ["updated_at", "2023-02-17 19:21:19.208006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:21:19 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (1.9ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:19.228205"], ["updated_at", "2023-02-17 19:21:19.228205"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:21:19.231772"], ["updated_at", "2023-02-17 19:21:19.231772"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:21:19.236734"], ["updated_at", "2023-02-17 19:21:19.236734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:21:19.238422"], ["updated_at", "2023-02-17 19:21:19.238422"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:21:19.242350"], ["updated_at", "2023-02-17 19:21:19.242350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:21:19.243753"], ["updated_at", "2023-02-17 19:21:19.243753"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:21:19.246585"], ["updated_at", "2023-02-17 19:21:19.246585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:21:19.249004"], ["updated_at", "2023-02-17 19:21:19.249004"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:21:19.252321"], ["updated_at", "2023-02-17 19:21:19.252321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:21:19.255221"], ["updated_at", "2023-02-17 19:21:19.255221"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:21:19.257289"], ["updated_at", "2023-02-17 19:21:19.257289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:21:19.258581"], ["updated_at", "2023-02-17 19:21:19.258581"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:21:19.260115"], ["updated_at", "2023-02-17 19:21:19.260115"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:21:19.261533"], ["updated_at", "2023-02-17 19:21:19.261533"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:21:19.263083"], ["updated_at", "2023-02-17 19:21:19.263083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:21:19.264730"], ["updated_at", "2023-02-17 19:21:19.264730"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:21:19.266358"], ["updated_at", "2023-02-17 19:21:19.266358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:21:19.268217"], ["updated_at", "2023-02-17 19:21:19.268217"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:21:19.270546"], ["updated_at", "2023-02-17 19:21:19.270546"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:21:19.272540"], ["updated_at", "2023-02-17 19:21:19.272540"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:21:19.274335"], ["updated_at", "2023-02-17 19:21:19.274335"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:21:19.276291"], ["updated_at", "2023-02-17 19:21:19.276291"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:21:19.277817"], ["updated_at", "2023-02-17 19:21:19.277817"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:21:19.279328"], ["updated_at", "2023-02-17 19:21:19.279328"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:21:19.281296"], ["updated_at", "2023-02-17 19:21:19.281296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:21:19.283245"], ["updated_at", "2023-02-17 19:21:19.283245"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:21:19.285416"], ["updated_at", "2023-02-17 19:21:19.285416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:21:19.287421"], ["updated_at", "2023-02-17 19:21:19.287421"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:21:19.289318"], ["updated_at", "2023-02-17 19:21:19.289318"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:21:19.291040"], ["updated_at", "2023-02-17 19:21:19.291040"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:21:19.292750"], ["updated_at", "2023-02-17 19:21:19.292750"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:21:19.294578"], ["updated_at", "2023-02-17 19:21:19.294578"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:21:19.296714"], ["updated_at", "2023-02-17 19:21:19.296714"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:21:19.298764"], ["updated_at", "2023-02-17 19:21:19.298764"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:21:19.300764"], ["updated_at", "2023-02-17 19:21:19.300764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:21:19.302691"], ["updated_at", "2023-02-17 19:21:19.302691"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:21:19.304787"], ["updated_at", "2023-02-17 19:21:19.304787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:21:19.306676"], ["updated_at", "2023-02-17 19:21:19.306676"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:21:19.308360"], ["updated_at", "2023-02-17 19:21:19.308360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:21:19.310206"], ["updated_at", "2023-02-17 19:21:19.310206"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:21:19.311972"], ["updated_at", "2023-02-17 19:21:19.311972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:21:19.313698"], ["updated_at", "2023-02-17 19:21:19.313698"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:21:19.316086"], ["updated_at", "2023-02-17 19:21:19.316086"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:21:19.318105"], ["updated_at", "2023-02-17 19:21:19.318105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:21:19.320002"], ["updated_at", "2023-02-17 19:21:19.320002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:21:19.322028"], ["updated_at", "2023-02-17 19:21:19.322028"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:21:19.323798"], ["updated_at", "2023-02-17 19:21:19.323798"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:21:19.325959"], ["updated_at", "2023-02-17 19:21:19.325959"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:21:19.327925"], ["updated_at", "2023-02-17 19:21:19.327925"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:21:19.329561"], ["updated_at", "2023-02-17 19:21:19.329561"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:21:19.331620"], ["updated_at", "2023-02-17 19:21:19.331620"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:21:19.333559"], ["updated_at", "2023-02-17 19:21:19.333559"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:21:19.335513"], ["updated_at", "2023-02-17 19:21:19.335513"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.7ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:21:19.337363"], ["updated_at", "2023-02-17 19:21:19.337363"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:21:19.340720"], ["updated_at", "2023-02-17 19:21:19.340720"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:21:19.342697"], ["updated_at", "2023-02-17 19:21:19.342697"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:21:19.345156"], ["updated_at", "2023-02-17 19:21:19.345156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:21:19.347119"], ["updated_at", "2023-02-17 19:21:19.347119"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:21:19.349276"], ["updated_at", "2023-02-17 19:21:19.349276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:21:19.350959"], ["updated_at", "2023-02-17 19:21:19.350959"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:21:19.352962"], ["updated_at", "2023-02-17 19:21:19.352962"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:21:19.354851"], ["updated_at", "2023-02-17 19:21:19.354851"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:21:19.357334"], ["updated_at", "2023-02-17 19:21:19.357334"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:21:19.359058"], ["updated_at", "2023-02-17 19:21:19.359058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:21:19.360813"], ["updated_at", "2023-02-17 19:21:19.360813"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:21:19.362352"], ["updated_at", "2023-02-17 19:21:19.362352"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:21:19.364357"], ["updated_at", "2023-02-17 19:21:19.364357"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:21:19.366484"], ["updated_at", "2023-02-17 19:21:19.366484"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:21:19.368370"], ["updated_at", "2023-02-17 19:21:19.368370"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:21:19.370187"], ["updated_at", "2023-02-17 19:21:19.370187"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:21:19.372350"], ["updated_at", "2023-02-17 19:21:19.372350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:21:19.374078"], ["updated_at", "2023-02-17 19:21:19.374078"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:21:19.376258"], ["updated_at", "2023-02-17 19:21:19.376258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:21:19.378152"], ["updated_at", "2023-02-17 19:21:19.378152"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:21:19.380124"], ["updated_at", "2023-02-17 19:21:19.380124"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:21:19.382101"], ["updated_at", "2023-02-17 19:21:19.382101"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:21:19.383973"], ["updated_at", "2023-02-17 19:21:19.383973"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:21:19.385930"], ["updated_at", "2023-02-17 19:21:19.385930"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:21:19.388133"], ["updated_at", "2023-02-17 19:21:19.388133"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:21:19.389861"], ["updated_at", "2023-02-17 19:21:19.389861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:21:19.391762"], ["updated_at", "2023-02-17 19:21:19.391762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:21:19.393540"], ["updated_at", "2023-02-17 19:21:19.393540"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:21:19.395400"], ["updated_at", "2023-02-17 19:21:19.395400"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:21:19.397303"], ["updated_at", "2023-02-17 19:21:19.397303"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:21:19.399321"], ["updated_at", "2023-02-17 19:21:19.399321"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:21:19.401203"], ["updated_at", "2023-02-17 19:21:19.401203"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:21:19.403132"], ["updated_at", "2023-02-17 19:21:19.403132"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:21:19.405248"], ["updated_at", "2023-02-17 19:21:19.405248"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:21:19.407642"], ["updated_at", "2023-02-17 19:21:19.407642"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:21:19.409535"], ["updated_at", "2023-02-17 19:21:19.409535"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:21:19.411437"], ["updated_at", "2023-02-17 19:21:19.411437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:21:19.413044"], ["updated_at", "2023-02-17 19:21:19.413044"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:21:19.415227"], ["updated_at", "2023-02-17 19:21:19.415227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:21:19.417315"], ["updated_at", "2023-02-17 19:21:19.417315"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:21:19.419264"], ["updated_at", "2023-02-17 19:21:19.419264"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:21:19.421141"], ["updated_at", "2023-02-17 19:21:19.421141"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:21:19.423018"], ["updated_at", "2023-02-17 19:21:19.423018"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:21:19.425102"], ["updated_at", "2023-02-17 19:21:19.425102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.5ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:21:19.427184"], ["updated_at", "2023-02-17 19:21:19.427184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:21:19.429309"], ["updated_at", "2023-02-17 19:21:19.429309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:21:19.430985"], ["updated_at", "2023-02-17 19:21:19.430985"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:19.445490"], ["updated_at", "2023-02-17 19:21:19.445490"], ["role_id", 2]]
SurveyQuestion Create (1.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:19.448185"], ["updated_at", "2023-02-17 19:21:19.448185"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:19.450763"], ["updated_at", "2023-02-17 19:21:19.450763"]]
QuestionOption Create (0.9ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.451921"], ["updated_at", "2023-02-17 19:21:19.451921"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.453819"], ["updated_at", "2023-02-17 19:21:19.453819"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.455081"], ["updated_at", "2023-02-17 19:21:19.455081"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.456186"], ["updated_at", "2023-02-17 19:21:19.456186"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.457154"], ["updated_at", "2023-02-17 19:21:19.457154"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:19.458245"], ["updated_at", "2023-02-17 19:21:19.458245"]]
LikertScaleQuestion Create (0.9ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.459422"], ["updated_at", "2023-02-17 19:21:19.459422"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.461221"], ["updated_at", "2023-02-17 19:21:19.461221"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.462456"], ["updated_at", "2023-02-17 19:21:19.462456"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.463457"], ["updated_at", "2023-02-17 19:21:19.463457"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.464595"], ["updated_at", "2023-02-17 19:21:19.464595"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.465987"], ["updated_at", "2023-02-17 19:21:19.465987"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.467212"], ["updated_at", "2023-02-17 19:21:19.467212"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.468205"], ["updated_at", "2023-02-17 19:21:19.468205"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.469207"], ["updated_at", "2023-02-17 19:21:19.469207"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.470191"], ["updated_at", "2023-02-17 19:21:19.470191"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.471003"], ["updated_at", "2023-02-17 19:21:19.471003"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.471733"], ["updated_at", "2023-02-17 19:21:19.471733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:19.484374"], ["updated_at", "2023-02-17 19:21:19.484374"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:19.485895"], ["updated_at", "2023-02-17 19:21:19.485895"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:19.486992"], ["updated_at", "2023-02-17 19:21:19.486992"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:19.487875"], ["updated_at", "2023-02-17 19:21:19.487875"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:19.488837"], ["updated_at", "2023-02-17 19:21:19.488837"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:19.489625"], ["updated_at", "2023-02-17 19:21:19.489625"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:19.490340"], ["updated_at", "2023-02-17 19:21:19.490340"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:19.491034"], ["updated_at", "2023-02-17 19:21:19.491034"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:19.491791"], ["updated_at", "2023-02-17 19:21:19.491791"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.492878"], ["updated_at", "2023-02-17 19:21:19.492878"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.493853"], ["updated_at", "2023-02-17 19:21:19.493853"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.494655"], ["updated_at", "2023-02-17 19:21:19.494655"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.495421"], ["updated_at", "2023-02-17 19:21:19.495421"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.496612"], ["updated_at", "2023-02-17 19:21:19.496612"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.497782"], ["updated_at", "2023-02-17 19:21:19.497782"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.498768"], ["updated_at", "2023-02-17 19:21:19.498768"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.499547"], ["updated_at", "2023-02-17 19:21:19.499547"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.500420"], ["updated_at", "2023-02-17 19:21:19.500420"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.501202"], ["updated_at", "2023-02-17 19:21:19.501202"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.501933"], ["updated_at", "2023-02-17 19:21:19.501933"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.502691"], ["updated_at", "2023-02-17 19:21:19.502691"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.525919"], ["updated_at", "2023-02-17 19:21:19.525919"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.527394"], ["updated_at", "2023-02-17 19:21:19.527394"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.528297"], ["updated_at", "2023-02-17 19:21:19.528297"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.529007"], ["updated_at", "2023-02-17 19:21:19.529007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.529788"], ["updated_at", "2023-02-17 19:21:19.529788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.530755"], ["updated_at", "2023-02-17 19:21:19.530755"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.531511"], ["updated_at", "2023-02-17 19:21:19.531511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.532232"], ["updated_at", "2023-02-17 19:21:19.532232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.532935"], ["updated_at", "2023-02-17 19:21:19.532935"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.533700"], ["updated_at", "2023-02-17 19:21:19.533700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.534557"], ["updated_at", "2023-02-17 19:21:19.534557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.535294"], ["updated_at", "2023-02-17 19:21:19.535294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.535999"], ["updated_at", "2023-02-17 19:21:19.535999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.537084"], ["updated_at", "2023-02-17 19:21:19.537084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.538044"], ["updated_at", "2023-02-17 19:21:19.538044"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.538762"], ["updated_at", "2023-02-17 19:21:19.538762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.555458"], ["updated_at", "2023-02-17 19:21:19.555458"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.556738"], ["updated_at", "2023-02-17 19:21:19.556738"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.557858"], ["updated_at", "2023-02-17 19:21:19.557858"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.559057"], ["updated_at", "2023-02-17 19:21:19.559057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.560000"], ["updated_at", "2023-02-17 19:21:19.560000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.560715"], ["updated_at", "2023-02-17 19:21:19.560715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.561423"], ["updated_at", "2023-02-17 19:21:19.561423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.562133"], ["updated_at", "2023-02-17 19:21:19.562133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.562998"], ["updated_at", "2023-02-17 19:21:19.562998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.563813"], ["updated_at", "2023-02-17 19:21:19.563813"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.564549"], ["updated_at", "2023-02-17 19:21:19.564549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.565245"], ["updated_at", "2023-02-17 19:21:19.565245"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.565939"], ["updated_at", "2023-02-17 19:21:19.565939"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.567055"], ["updated_at", "2023-02-17 19:21:19.567055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.567902"], ["updated_at", "2023-02-17 19:21:19.567902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.568629"], ["updated_at", "2023-02-17 19:21:19.568629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.584681"], ["updated_at", "2023-02-17 19:21:19.584681"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.585802"], ["updated_at", "2023-02-17 19:21:19.585802"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.586813"], ["updated_at", "2023-02-17 19:21:19.586813"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.587791"], ["updated_at", "2023-02-17 19:21:19.587791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.588587"], ["updated_at", "2023-02-17 19:21:19.588587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.589419"], ["updated_at", "2023-02-17 19:21:19.589419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.590137"], ["updated_at", "2023-02-17 19:21:19.590137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.590819"], ["updated_at", "2023-02-17 19:21:19.590819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.591503"], ["updated_at", "2023-02-17 19:21:19.591503"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.592178"], ["updated_at", "2023-02-17 19:21:19.592178"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.593015"], ["updated_at", "2023-02-17 19:21:19.593015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.593807"], ["updated_at", "2023-02-17 19:21:19.593807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.594517"], ["updated_at", "2023-02-17 19:21:19.594517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.595198"], ["updated_at", "2023-02-17 19:21:19.595198"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.595880"], ["updated_at", "2023-02-17 19:21:19.595880"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:19.596919"], ["updated_at", "2023-02-17 19:21:19.596919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.614357"], ["updated_at", "2023-02-17 19:21:19.614357"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.615404"], ["updated_at", "2023-02-17 19:21:19.615404"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.616145"], ["updated_at", "2023-02-17 19:21:19.616145"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.616887"], ["updated_at", "2023-02-17 19:21:19.616887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.617811"], ["updated_at", "2023-02-17 19:21:19.617811"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.618557"], ["updated_at", "2023-02-17 19:21:19.618557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.619251"], ["updated_at", "2023-02-17 19:21:19.619251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.619938"], ["updated_at", "2023-02-17 19:21:19.619938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.620610"], ["updated_at", "2023-02-17 19:21:19.620610"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.621421"], ["updated_at", "2023-02-17 19:21:19.621421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.622139"], ["updated_at", "2023-02-17 19:21:19.622139"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.622824"], ["updated_at", "2023-02-17 19:21:19.622824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.623576"], ["updated_at", "2023-02-17 19:21:19.623576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.624319"], ["updated_at", "2023-02-17 19:21:19.624319"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.625212"], ["updated_at", "2023-02-17 19:21:19.625212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:19.625972"], ["updated_at", "2023-02-17 19:21:19.625972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.644144"], ["updated_at", "2023-02-17 19:21:19.644144"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.645202"], ["updated_at", "2023-02-17 19:21:19.645202"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.646146"], ["updated_at", "2023-02-17 19:21:19.646146"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.647237"], ["updated_at", "2023-02-17 19:21:19.647237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.648368"], ["updated_at", "2023-02-17 19:21:19.648368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.649405"], ["updated_at", "2023-02-17 19:21:19.649405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.650390"], ["updated_at", "2023-02-17 19:21:19.650390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.651352"], ["updated_at", "2023-02-17 19:21:19.651352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.652228"], ["updated_at", "2023-02-17 19:21:19.652228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.653135"], ["updated_at", "2023-02-17 19:21:19.653135"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.654127"], ["updated_at", "2023-02-17 19:21:19.654127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.655138"], ["updated_at", "2023-02-17 19:21:19.655138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.656058"], ["updated_at", "2023-02-17 19:21:19.656058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.656950"], ["updated_at", "2023-02-17 19:21:19.656950"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.657821"], ["updated_at", "2023-02-17 19:21:19.657821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:19.658875"], ["updated_at", "2023-02-17 19:21:19.658875"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.678000"], ["updated_at", "2023-02-17 19:21:19.678000"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.679133"], ["updated_at", "2023-02-17 19:21:19.679133"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.680145"], ["updated_at", "2023-02-17 19:21:19.680145"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.681248"], ["updated_at", "2023-02-17 19:21:19.681248"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.682353"], ["updated_at", "2023-02-17 19:21:19.682353"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.683496"], ["updated_at", "2023-02-17 19:21:19.683496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.684467"], ["updated_at", "2023-02-17 19:21:19.684467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.685414"], ["updated_at", "2023-02-17 19:21:19.685414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.686310"], ["updated_at", "2023-02-17 19:21:19.686310"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.687327"], ["updated_at", "2023-02-17 19:21:19.687327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.688235"], ["updated_at", "2023-02-17 19:21:19.688235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.689138"], ["updated_at", "2023-02-17 19:21:19.689138"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.690006"], ["updated_at", "2023-02-17 19:21:19.690006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.691094"], ["updated_at", "2023-02-17 19:21:19.691094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.692036"], ["updated_at", "2023-02-17 19:21:19.692036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:19.692930"], ["updated_at", "2023-02-17 19:21:19.692930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:21:19 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:19.703157"], ["updated_at", "2023-02-17 19:21:19.703157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:21:19.704825"], ["updated_at", "2023-02-17 19:21:19.704825"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:21:19.708321"], ["updated_at", "2023-02-17 19:21:19.708321"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:21:19.709781"], ["updated_at", "2023-02-17 19:21:19.709781"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:21:19.713252"], ["updated_at", "2023-02-17 19:21:19.713252"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:21:19.714924"], ["updated_at", "2023-02-17 19:21:19.714924"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:21:19.717478"], ["updated_at", "2023-02-17 19:21:19.717478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:21:19.719103"], ["updated_at", "2023-02-17 19:21:19.719103"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:21:19.721050"], ["updated_at", "2023-02-17 19:21:19.721050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:21:19.722654"], ["updated_at", "2023-02-17 19:21:19.722654"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:21:19.724389"], ["updated_at", "2023-02-17 19:21:19.724389"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:21:19.725912"], ["updated_at", "2023-02-17 19:21:19.725912"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:21:19.727491"], ["updated_at", "2023-02-17 19:21:19.727491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:21:19.729144"], ["updated_at", "2023-02-17 19:21:19.729144"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:21:19.730840"], ["updated_at", "2023-02-17 19:21:19.730840"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:21:19.732601"], ["updated_at", "2023-02-17 19:21:19.732601"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:21:19.734269"], ["updated_at", "2023-02-17 19:21:19.734269"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:21:19.735838"], ["updated_at", "2023-02-17 19:21:19.735838"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:21:19.737550"], ["updated_at", "2023-02-17 19:21:19.737550"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:21:19.738987"], ["updated_at", "2023-02-17 19:21:19.738987"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:21:19.740723"], ["updated_at", "2023-02-17 19:21:19.740723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:21:19.742164"], ["updated_at", "2023-02-17 19:21:19.742164"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:21:19.744149"], ["updated_at", "2023-02-17 19:21:19.744149"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:21:19.746019"], ["updated_at", "2023-02-17 19:21:19.746019"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:21:19.747681"], ["updated_at", "2023-02-17 19:21:19.747681"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:21:19.749537"], ["updated_at", "2023-02-17 19:21:19.749537"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:21:19.751411"], ["updated_at", "2023-02-17 19:21:19.751411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:21:19.753167"], ["updated_at", "2023-02-17 19:21:19.753167"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:21:19.754982"], ["updated_at", "2023-02-17 19:21:19.754982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:21:19.756299"], ["updated_at", "2023-02-17 19:21:19.756299"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:21:19.757808"], ["updated_at", "2023-02-17 19:21:19.757808"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:21:19.758995"], ["updated_at", "2023-02-17 19:21:19.758995"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:21:19.760553"], ["updated_at", "2023-02-17 19:21:19.760553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:21:19.761946"], ["updated_at", "2023-02-17 19:21:19.761946"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:21:19.763382"], ["updated_at", "2023-02-17 19:21:19.763382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:21:19.765142"], ["updated_at", "2023-02-17 19:21:19.765142"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:21:19.766982"], ["updated_at", "2023-02-17 19:21:19.766982"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:21:19.768869"], ["updated_at", "2023-02-17 19:21:19.768869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:21:19.770647"], ["updated_at", "2023-02-17 19:21:19.770647"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:21:19.772272"], ["updated_at", "2023-02-17 19:21:19.772272"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:21:19.773934"], ["updated_at", "2023-02-17 19:21:19.773934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:21:19.775193"], ["updated_at", "2023-02-17 19:21:19.775193"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:21:19.776855"], ["updated_at", "2023-02-17 19:21:19.776855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:21:19.778091"], ["updated_at", "2023-02-17 19:21:19.778091"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:21:19.779581"], ["updated_at", "2023-02-17 19:21:19.779581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:21:19.781112"], ["updated_at", "2023-02-17 19:21:19.781112"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:21:19.783063"], ["updated_at", "2023-02-17 19:21:19.783063"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:21:19.784755"], ["updated_at", "2023-02-17 19:21:19.784755"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:21:19.786511"], ["updated_at", "2023-02-17 19:21:19.786511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:21:19.788037"], ["updated_at", "2023-02-17 19:21:19.788037"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:21:19.789646"], ["updated_at", "2023-02-17 19:21:19.789646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:21:19.791014"], ["updated_at", "2023-02-17 19:21:19.791014"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:21:19.792396"], ["updated_at", "2023-02-17 19:21:19.792396"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:21:19.793582"], ["updated_at", "2023-02-17 19:21:19.793582"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:21:19.795196"], ["updated_at", "2023-02-17 19:21:19.795196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:21:19.796416"], ["updated_at", "2023-02-17 19:21:19.796416"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:21:19.798167"], ["updated_at", "2023-02-17 19:21:19.798167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:21:19.799858"], ["updated_at", "2023-02-17 19:21:19.799858"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:21:19.801462"], ["updated_at", "2023-02-17 19:21:19.801462"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:21:19.802904"], ["updated_at", "2023-02-17 19:21:19.802904"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:21:19.804304"], ["updated_at", "2023-02-17 19:21:19.804304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:21:19.805498"], ["updated_at", "2023-02-17 19:21:19.805498"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:21:19.806980"], ["updated_at", "2023-02-17 19:21:19.806980"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:21:19.808127"], ["updated_at", "2023-02-17 19:21:19.808127"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:21:19.809610"], ["updated_at", "2023-02-17 19:21:19.809610"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:21:19.810901"], ["updated_at", "2023-02-17 19:21:19.810901"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:21:19.812987"], ["updated_at", "2023-02-17 19:21:19.812987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:21:19.814568"], ["updated_at", "2023-02-17 19:21:19.814568"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:21:19.816437"], ["updated_at", "2023-02-17 19:21:19.816437"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:21:19.818323"], ["updated_at", "2023-02-17 19:21:19.818323"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:21:19.820118"], ["updated_at", "2023-02-17 19:21:19.820118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:21:19.821622"], ["updated_at", "2023-02-17 19:21:19.821622"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:21:19.823043"], ["updated_at", "2023-02-17 19:21:19.823043"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:21:19.824250"], ["updated_at", "2023-02-17 19:21:19.824250"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:21:19.825816"], ["updated_at", "2023-02-17 19:21:19.825816"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:21:19.827004"], ["updated_at", "2023-02-17 19:21:19.827004"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:21:19.828326"], ["updated_at", "2023-02-17 19:21:19.828326"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:21:19.829622"], ["updated_at", "2023-02-17 19:21:19.829622"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:21:19.831353"], ["updated_at", "2023-02-17 19:21:19.831353"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:21:19.833209"], ["updated_at", "2023-02-17 19:21:19.833209"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:21:19.834772"], ["updated_at", "2023-02-17 19:21:19.834772"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:21:19.835931"], ["updated_at", "2023-02-17 19:21:19.835931"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:21:19.837555"], ["updated_at", "2023-02-17 19:21:19.837555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:21:19.838780"], ["updated_at", "2023-02-17 19:21:19.838780"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:21:19.840350"], ["updated_at", "2023-02-17 19:21:19.840350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:21:19.841681"], ["updated_at", "2023-02-17 19:21:19.841681"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:21:19.843067"], ["updated_at", "2023-02-17 19:21:19.843067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:21:19.844371"], ["updated_at", "2023-02-17 19:21:19.844371"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:21:19.846004"], ["updated_at", "2023-02-17 19:21:19.846004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:21:19.847258"], ["updated_at", "2023-02-17 19:21:19.847258"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:21:19.848832"], ["updated_at", "2023-02-17 19:21:19.848832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:21:19.850722"], ["updated_at", "2023-02-17 19:21:19.850722"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:21:19.852590"], ["updated_at", "2023-02-17 19:21:19.852590"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:21:19.854346"], ["updated_at", "2023-02-17 19:21:19.854346"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:21:19.855960"], ["updated_at", "2023-02-17 19:21:19.855960"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:21:19.857213"], ["updated_at", "2023-02-17 19:21:19.857213"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:21:19.858513"], ["updated_at", "2023-02-17 19:21:19.858513"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:21:19.859905"], ["updated_at", "2023-02-17 19:21:19.859905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:21:19.861478"], ["updated_at", "2023-02-17 19:21:19.861478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:21:19.862640"], ["updated_at", "2023-02-17 19:21:19.862640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:21:19.863630"], ["updated_at", "2023-02-17 19:21:19.863630"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:19.876544"], ["updated_at", "2023-02-17 19:21:19.876544"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:19.877922"], ["updated_at", "2023-02-17 19:21:19.877922"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:19.878969"], ["updated_at", "2023-02-17 19:21:19.878969"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.880061"], ["updated_at", "2023-02-17 19:21:19.880061"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.881247"], ["updated_at", "2023-02-17 19:21:19.881247"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.882206"], ["updated_at", "2023-02-17 19:21:19.882206"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.883352"], ["updated_at", "2023-02-17 19:21:19.883352"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.884462"], ["updated_at", "2023-02-17 19:21:19.884462"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:19.885635"], ["updated_at", "2023-02-17 19:21:19.885635"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.886845"], ["updated_at", "2023-02-17 19:21:19.886845"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.888177"], ["updated_at", "2023-02-17 19:21:19.888177"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.889100"], ["updated_at", "2023-02-17 19:21:19.889100"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.889872"], ["updated_at", "2023-02-17 19:21:19.889872"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.890654"], ["updated_at", "2023-02-17 19:21:19.890654"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.891637"], ["updated_at", "2023-02-17 19:21:19.891637"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.892413"], ["updated_at", "2023-02-17 19:21:19.892413"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.893171"], ["updated_at", "2023-02-17 19:21:19.893171"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.893900"], ["updated_at", "2023-02-17 19:21:19.893900"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.894750"], ["updated_at", "2023-02-17 19:21:19.894750"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.895718"], ["updated_at", "2023-02-17 19:21:19.895718"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.896506"], ["updated_at", "2023-02-17 19:21:19.896506"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:19.909315"], ["updated_at", "2023-02-17 19:21:19.909315"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:19.910756"], ["updated_at", "2023-02-17 19:21:19.910756"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:19.911747"], ["updated_at", "2023-02-17 19:21:19.911747"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:19.912657"], ["updated_at", "2023-02-17 19:21:19.912657"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:19.913526"], ["updated_at", "2023-02-17 19:21:19.913526"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:19.914549"], ["updated_at", "2023-02-17 19:21:19.914549"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:19.915620"], ["updated_at", "2023-02-17 19:21:19.915620"]]
QuestionOption Create (0.3ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:19.916627"], ["updated_at", "2023-02-17 19:21:19.916627"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:19.917949"], ["updated_at", "2023-02-17 19:21:19.917949"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.919209"], ["updated_at", "2023-02-17 19:21:19.919209"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.920364"], ["updated_at", "2023-02-17 19:21:19.920364"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.921534"], ["updated_at", "2023-02-17 19:21:19.921534"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.922386"], ["updated_at", "2023-02-17 19:21:19.922386"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.923140"], ["updated_at", "2023-02-17 19:21:19.923140"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.923893"], ["updated_at", "2023-02-17 19:21:19.923893"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.924734"], ["updated_at", "2023-02-17 19:21:19.924734"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.925741"], ["updated_at", "2023-02-17 19:21:19.925741"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.926524"], ["updated_at", "2023-02-17 19:21:19.926524"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.927284"], ["updated_at", "2023-02-17 19:21:19.927284"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.928005"], ["updated_at", "2023-02-17 19:21:19.928005"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:19.928920"], ["updated_at", "2023-02-17 19:21:19.928920"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.947541"], ["updated_at", "2023-02-17 19:21:19.947541"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.949194"], ["updated_at", "2023-02-17 19:21:19.949194"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.950292"], ["updated_at", "2023-02-17 19:21:19.950292"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.951167"], ["updated_at", "2023-02-17 19:21:19.951167"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.952207"], ["updated_at", "2023-02-17 19:21:19.952207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.953197"], ["updated_at", "2023-02-17 19:21:19.953197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.954138"], ["updated_at", "2023-02-17 19:21:19.954138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.954996"], ["updated_at", "2023-02-17 19:21:19.954996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.955896"], ["updated_at", "2023-02-17 19:21:19.955896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.956747"], ["updated_at", "2023-02-17 19:21:19.956747"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.957556"], ["updated_at", "2023-02-17 19:21:19.957556"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.958413"], ["updated_at", "2023-02-17 19:21:19.958413"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.959215"], ["updated_at", "2023-02-17 19:21:19.959215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.960240"], ["updated_at", "2023-02-17 19:21:19.960240"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.961073"], ["updated_at", "2023-02-17 19:21:19.961073"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:19.961918"], ["updated_at", "2023-02-17 19:21:19.961918"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:19.980839"], ["updated_at", "2023-02-17 19:21:19.980839"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:19.981954"], ["updated_at", "2023-02-17 19:21:19.981954"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:19.982996"], ["updated_at", "2023-02-17 19:21:19.982996"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:19.983992"], ["updated_at", "2023-02-17 19:21:19.983992"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.985199"], ["updated_at", "2023-02-17 19:21:19.985199"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.986127"], ["updated_at", "2023-02-17 19:21:19.986127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.987020"], ["updated_at", "2023-02-17 19:21:19.987020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.987893"], ["updated_at", "2023-02-17 19:21:19.987893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.988861"], ["updated_at", "2023-02-17 19:21:19.988861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.989688"], ["updated_at", "2023-02-17 19:21:19.989688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.990486"], ["updated_at", "2023-02-17 19:21:19.990486"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.991382"], ["updated_at", "2023-02-17 19:21:19.991382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.992438"], ["updated_at", "2023-02-17 19:21:19.992438"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.993396"], ["updated_at", "2023-02-17 19:21:19.993396"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.994380"], ["updated_at", "2023-02-17 19:21:19.994380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:19.995569"], ["updated_at", "2023-02-17 19:21:19.995569"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.013923"], ["updated_at", "2023-02-17 19:21:20.013923"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.015194"], ["updated_at", "2023-02-17 19:21:20.015194"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.016449"], ["updated_at", "2023-02-17 19:21:20.016449"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.017645"], ["updated_at", "2023-02-17 19:21:20.017645"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.018599"], ["updated_at", "2023-02-17 19:21:20.018599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.019458"], ["updated_at", "2023-02-17 19:21:20.019458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.020494"], ["updated_at", "2023-02-17 19:21:20.020494"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.021497"], ["updated_at", "2023-02-17 19:21:20.021497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.022335"], ["updated_at", "2023-02-17 19:21:20.022335"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.023168"], ["updated_at", "2023-02-17 19:21:20.023168"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.024118"], ["updated_at", "2023-02-17 19:21:20.024118"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.025108"], ["updated_at", "2023-02-17 19:21:20.025108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.026010"], ["updated_at", "2023-02-17 19:21:20.026010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.026848"], ["updated_at", "2023-02-17 19:21:20.026848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.027815"], ["updated_at", "2023-02-17 19:21:20.027815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.028791"], ["updated_at", "2023-02-17 19:21:20.028791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.046936"], ["updated_at", "2023-02-17 19:21:20.046936"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.047983"], ["updated_at", "2023-02-17 19:21:20.047983"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.048987"], ["updated_at", "2023-02-17 19:21:20.048987"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.050070"], ["updated_at", "2023-02-17 19:21:20.050070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.051063"], ["updated_at", "2023-02-17 19:21:20.051063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.051889"], ["updated_at", "2023-02-17 19:21:20.051889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.052973"], ["updated_at", "2023-02-17 19:21:20.052973"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.054010"], ["updated_at", "2023-02-17 19:21:20.054010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.054895"], ["updated_at", "2023-02-17 19:21:20.054895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.055687"], ["updated_at", "2023-02-17 19:21:20.055687"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.056625"], ["updated_at", "2023-02-17 19:21:20.056625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.057732"], ["updated_at", "2023-02-17 19:21:20.057732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.058637"], ["updated_at", "2023-02-17 19:21:20.058637"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.059377"], ["updated_at", "2023-02-17 19:21:20.059377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.060081"], ["updated_at", "2023-02-17 19:21:20.060081"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.061018"], ["updated_at", "2023-02-17 19:21:20.061018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.078480"], ["updated_at", "2023-02-17 19:21:20.078480"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.079573"], ["updated_at", "2023-02-17 19:21:20.079573"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.080375"], ["updated_at", "2023-02-17 19:21:20.080375"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.081145"], ["updated_at", "2023-02-17 19:21:20.081145"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.082049"], ["updated_at", "2023-02-17 19:21:20.082049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.083260"], ["updated_at", "2023-02-17 19:21:20.083260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.084307"], ["updated_at", "2023-02-17 19:21:20.084307"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.085184"], ["updated_at", "2023-02-17 19:21:20.085184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.086005"], ["updated_at", "2023-02-17 19:21:20.086005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.086879"], ["updated_at", "2023-02-17 19:21:20.086879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.087670"], ["updated_at", "2023-02-17 19:21:20.087670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.088390"], ["updated_at", "2023-02-17 19:21:20.088390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.089079"], ["updated_at", "2023-02-17 19:21:20.089079"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.089885"], ["updated_at", "2023-02-17 19:21:20.089885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.090940"], ["updated_at", "2023-02-17 19:21:20.090940"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.091764"], ["updated_at", "2023-02-17 19:21:20.091764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.108388"], ["updated_at", "2023-02-17 19:21:20.108388"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.109552"], ["updated_at", "2023-02-17 19:21:20.109552"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.110438"], ["updated_at", "2023-02-17 19:21:20.110438"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.111153"], ["updated_at", "2023-02-17 19:21:20.111153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.111970"], ["updated_at", "2023-02-17 19:21:20.111970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.112946"], ["updated_at", "2023-02-17 19:21:20.112946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.113820"], ["updated_at", "2023-02-17 19:21:20.113820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.114605"], ["updated_at", "2023-02-17 19:21:20.114605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.115344"], ["updated_at", "2023-02-17 19:21:20.115344"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.116174"], ["updated_at", "2023-02-17 19:21:20.116174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.117180"], ["updated_at", "2023-02-17 19:21:20.117180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.118019"], ["updated_at", "2023-02-17 19:21:20.118019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.118752"], ["updated_at", "2023-02-17 19:21:20.118752"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.119455"], ["updated_at", "2023-02-17 19:21:20.119455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.120203"], ["updated_at", "2023-02-17 19:21:20.120203"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.121078"], ["updated_at", "2023-02-17 19:21:20.121078"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:21:20 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:20.130203"], ["updated_at", "2023-02-17 19:21:20.130203"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:21:20.131764"], ["updated_at", "2023-02-17 19:21:20.131764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:21:20.134838"], ["updated_at", "2023-02-17 19:21:20.134838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:21:20.136122"], ["updated_at", "2023-02-17 19:21:20.136122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:21:20.138908"], ["updated_at", "2023-02-17 19:21:20.138908"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:21:20.140295"], ["updated_at", "2023-02-17 19:21:20.140295"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:21:20.142472"], ["updated_at", "2023-02-17 19:21:20.142472"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:21:20.144045"], ["updated_at", "2023-02-17 19:21:20.144045"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:21:20.145690"], ["updated_at", "2023-02-17 19:21:20.145690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:21:20.147217"], ["updated_at", "2023-02-17 19:21:20.147217"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:21:20.148764"], ["updated_at", "2023-02-17 19:21:20.148764"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:21:20.150095"], ["updated_at", "2023-02-17 19:21:20.150095"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:21:20.152055"], ["updated_at", "2023-02-17 19:21:20.152055"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:21:20.153320"], ["updated_at", "2023-02-17 19:21:20.153320"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:21:20.154919"], ["updated_at", "2023-02-17 19:21:20.154919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:21:20.156131"], ["updated_at", "2023-02-17 19:21:20.156131"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:21:20.157511"], ["updated_at", "2023-02-17 19:21:20.157511"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:21:20.158894"], ["updated_at", "2023-02-17 19:21:20.158894"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:21:20.160271"], ["updated_at", "2023-02-17 19:21:20.160271"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:21:20.161445"], ["updated_at", "2023-02-17 19:21:20.161445"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:21:20.163139"], ["updated_at", "2023-02-17 19:21:20.163139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:21:20.164390"], ["updated_at", "2023-02-17 19:21:20.164390"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:21:20.165931"], ["updated_at", "2023-02-17 19:21:20.165931"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:21:20.167217"], ["updated_at", "2023-02-17 19:21:20.167217"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:21:20.168738"], ["updated_at", "2023-02-17 19:21:20.168738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:21:20.170004"], ["updated_at", "2023-02-17 19:21:20.170004"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:21:20.171419"], ["updated_at", "2023-02-17 19:21:20.171419"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:21:20.172819"], ["updated_at", "2023-02-17 19:21:20.172819"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:21:20.174304"], ["updated_at", "2023-02-17 19:21:20.174304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:21:20.175525"], ["updated_at", "2023-02-17 19:21:20.175525"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:21:20.177036"], ["updated_at", "2023-02-17 19:21:20.177036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:21:20.178270"], ["updated_at", "2023-02-17 19:21:20.178270"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:21:20.179798"], ["updated_at", "2023-02-17 19:21:20.179798"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:21:20.181078"], ["updated_at", "2023-02-17 19:21:20.181078"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:21:20.182704"], ["updated_at", "2023-02-17 19:21:20.182704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:21:20.184055"], ["updated_at", "2023-02-17 19:21:20.184055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:21:20.185833"], ["updated_at", "2023-02-17 19:21:20.185833"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:21:20.187532"], ["updated_at", "2023-02-17 19:21:20.187532"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:21:20.189015"], ["updated_at", "2023-02-17 19:21:20.189015"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:21:20.190265"], ["updated_at", "2023-02-17 19:21:20.190265"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:21:20.191761"], ["updated_at", "2023-02-17 19:21:20.191761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:21:20.192944"], ["updated_at", "2023-02-17 19:21:20.192944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:21:20.194447"], ["updated_at", "2023-02-17 19:21:20.194447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:21:20.195793"], ["updated_at", "2023-02-17 19:21:20.195793"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:21:20.197186"], ["updated_at", "2023-02-17 19:21:20.197186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:21:20.198540"], ["updated_at", "2023-02-17 19:21:20.198540"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:21:20.200016"], ["updated_at", "2023-02-17 19:21:20.200016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:21:20.201198"], ["updated_at", "2023-02-17 19:21:20.201198"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:21:20.202832"], ["updated_at", "2023-02-17 19:21:20.202832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:21:20.204118"], ["updated_at", "2023-02-17 19:21:20.204118"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:21:20.205620"], ["updated_at", "2023-02-17 19:21:20.205620"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:21:20.206856"], ["updated_at", "2023-02-17 19:21:20.206856"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:21:20.208322"], ["updated_at", "2023-02-17 19:21:20.208322"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:21:20.209720"], ["updated_at", "2023-02-17 19:21:20.209720"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:21:20.211262"], ["updated_at", "2023-02-17 19:21:20.211262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:21:20.212540"], ["updated_at", "2023-02-17 19:21:20.212540"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:21:20.214050"], ["updated_at", "2023-02-17 19:21:20.214050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:21:20.215289"], ["updated_at", "2023-02-17 19:21:20.215289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:21:20.216816"], ["updated_at", "2023-02-17 19:21:20.216816"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:21:20.218167"], ["updated_at", "2023-02-17 19:21:20.218167"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:21:20.220069"], ["updated_at", "2023-02-17 19:21:20.220069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:21:20.221353"], ["updated_at", "2023-02-17 19:21:20.221353"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:21:20.222917"], ["updated_at", "2023-02-17 19:21:20.222917"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:21:20.224271"], ["updated_at", "2023-02-17 19:21:20.224271"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:21:20.225682"], ["updated_at", "2023-02-17 19:21:20.225682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:21:20.226945"], ["updated_at", "2023-02-17 19:21:20.226945"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:21:20.228385"], ["updated_at", "2023-02-17 19:21:20.228385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:21:20.229623"], ["updated_at", "2023-02-17 19:21:20.229623"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:21:20.231237"], ["updated_at", "2023-02-17 19:21:20.231237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:21:20.232503"], ["updated_at", "2023-02-17 19:21:20.232503"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:21:20.234026"], ["updated_at", "2023-02-17 19:21:20.234026"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:21:20.235278"], ["updated_at", "2023-02-17 19:21:20.235278"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:21:20.236713"], ["updated_at", "2023-02-17 19:21:20.236713"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:21:20.238150"], ["updated_at", "2023-02-17 19:21:20.238150"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:21:20.239607"], ["updated_at", "2023-02-17 19:21:20.239607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:21:20.240939"], ["updated_at", "2023-02-17 19:21:20.240939"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:21:20.242468"], ["updated_at", "2023-02-17 19:21:20.242468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:21:20.243633"], ["updated_at", "2023-02-17 19:21:20.243633"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:21:20.245197"], ["updated_at", "2023-02-17 19:21:20.245197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:21:20.246530"], ["updated_at", "2023-02-17 19:21:20.246530"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:21:20.247940"], ["updated_at", "2023-02-17 19:21:20.247940"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:21:20.249322"], ["updated_at", "2023-02-17 19:21:20.249322"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:21:20.250746"], ["updated_at", "2023-02-17 19:21:20.250746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:21:20.252124"], ["updated_at", "2023-02-17 19:21:20.252124"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:21:20.253787"], ["updated_at", "2023-02-17 19:21:20.253787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:21:20.255031"], ["updated_at", "2023-02-17 19:21:20.255031"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:21:20.256500"], ["updated_at", "2023-02-17 19:21:20.256500"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:21:20.257807"], ["updated_at", "2023-02-17 19:21:20.257807"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:21:20.259216"], ["updated_at", "2023-02-17 19:21:20.259216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:21:20.260629"], ["updated_at", "2023-02-17 19:21:20.260629"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:21:20.262137"], ["updated_at", "2023-02-17 19:21:20.262137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:21:20.263419"], ["updated_at", "2023-02-17 19:21:20.263419"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:21:20.264864"], ["updated_at", "2023-02-17 19:21:20.264864"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:21:20.266147"], ["updated_at", "2023-02-17 19:21:20.266147"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:21:20.267698"], ["updated_at", "2023-02-17 19:21:20.267698"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:21:20.268809"], ["updated_at", "2023-02-17 19:21:20.268809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:21:20.270245"], ["updated_at", "2023-02-17 19:21:20.270245"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:21:20.271689"], ["updated_at", "2023-02-17 19:21:20.271689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:21:20.273148"], ["updated_at", "2023-02-17 19:21:20.273148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:21:20.274525"], ["updated_at", "2023-02-17 19:21:20.274525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:21:20.275547"], ["updated_at", "2023-02-17 19:21:20.275547"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:20.287413"], ["updated_at", "2023-02-17 19:21:20.287413"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:20.288818"], ["updated_at", "2023-02-17 19:21:20.288818"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:20.289896"], ["updated_at", "2023-02-17 19:21:20.289896"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.290849"], ["updated_at", "2023-02-17 19:21:20.290849"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.291648"], ["updated_at", "2023-02-17 19:21:20.291648"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.292458"], ["updated_at", "2023-02-17 19:21:20.292458"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.293286"], ["updated_at", "2023-02-17 19:21:20.293286"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.294073"], ["updated_at", "2023-02-17 19:21:20.294073"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:20.294908"], ["updated_at", "2023-02-17 19:21:20.294908"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.295796"], ["updated_at", "2023-02-17 19:21:20.295796"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.296772"], ["updated_at", "2023-02-17 19:21:20.296772"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.297563"], ["updated_at", "2023-02-17 19:21:20.297563"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.298380"], ["updated_at", "2023-02-17 19:21:20.298380"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.299188"], ["updated_at", "2023-02-17 19:21:20.299188"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.300042"], ["updated_at", "2023-02-17 19:21:20.300042"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.300951"], ["updated_at", "2023-02-17 19:21:20.300951"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.301806"], ["updated_at", "2023-02-17 19:21:20.301806"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.302651"], ["updated_at", "2023-02-17 19:21:20.302651"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.303441"], ["updated_at", "2023-02-17 19:21:20.303441"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.304329"], ["updated_at", "2023-02-17 19:21:20.304329"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.305150"], ["updated_at", "2023-02-17 19:21:20.305150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:20.317246"], ["updated_at", "2023-02-17 19:21:20.317246"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:20.318557"], ["updated_at", "2023-02-17 19:21:20.318557"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:20.319681"], ["updated_at", "2023-02-17 19:21:20.319681"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:20.320596"], ["updated_at", "2023-02-17 19:21:20.320596"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:20.321383"], ["updated_at", "2023-02-17 19:21:20.321383"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:20.322089"], ["updated_at", "2023-02-17 19:21:20.322089"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:20.322966"], ["updated_at", "2023-02-17 19:21:20.322966"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:20.323784"], ["updated_at", "2023-02-17 19:21:20.323784"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:20.324605"], ["updated_at", "2023-02-17 19:21:20.324605"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.325495"], ["updated_at", "2023-02-17 19:21:20.325495"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.326405"], ["updated_at", "2023-02-17 19:21:20.326405"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.327228"], ["updated_at", "2023-02-17 19:21:20.327228"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.328079"], ["updated_at", "2023-02-17 19:21:20.328079"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.328843"], ["updated_at", "2023-02-17 19:21:20.328843"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.329626"], ["updated_at", "2023-02-17 19:21:20.329626"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.330638"], ["updated_at", "2023-02-17 19:21:20.330638"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.331704"], ["updated_at", "2023-02-17 19:21:20.331704"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.332528"], ["updated_at", "2023-02-17 19:21:20.332528"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.333296"], ["updated_at", "2023-02-17 19:21:20.333296"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.334158"], ["updated_at", "2023-02-17 19:21:20.334158"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.334977"], ["updated_at", "2023-02-17 19:21:20.334977"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.4ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.351990"], ["updated_at", "2023-02-17 19:21:20.351990"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.353522"], ["updated_at", "2023-02-17 19:21:20.353522"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.354860"], ["updated_at", "2023-02-17 19:21:20.354860"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.355724"], ["updated_at", "2023-02-17 19:21:20.355724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.356549"], ["updated_at", "2023-02-17 19:21:20.356549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.357373"], ["updated_at", "2023-02-17 19:21:20.357373"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.358108"], ["updated_at", "2023-02-17 19:21:20.358108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.359049"], ["updated_at", "2023-02-17 19:21:20.359049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.359830"], ["updated_at", "2023-02-17 19:21:20.359830"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.360557"], ["updated_at", "2023-02-17 19:21:20.360557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.361280"], ["updated_at", "2023-02-17 19:21:20.361280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.361980"], ["updated_at", "2023-02-17 19:21:20.361980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.362824"], ["updated_at", "2023-02-17 19:21:20.362824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.363564"], ["updated_at", "2023-02-17 19:21:20.363564"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.364279"], ["updated_at", "2023-02-17 19:21:20.364279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.365058"], ["updated_at", "2023-02-17 19:21:20.365058"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.381572"], ["updated_at", "2023-02-17 19:21:20.381572"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.382628"], ["updated_at", "2023-02-17 19:21:20.382628"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.383434"], ["updated_at", "2023-02-17 19:21:20.383434"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.384165"], ["updated_at", "2023-02-17 19:21:20.384165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.385061"], ["updated_at", "2023-02-17 19:21:20.385061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.385887"], ["updated_at", "2023-02-17 19:21:20.385887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.386619"], ["updated_at", "2023-02-17 19:21:20.386619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.387334"], ["updated_at", "2023-02-17 19:21:20.387334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.388028"], ["updated_at", "2023-02-17 19:21:20.388028"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.388942"], ["updated_at", "2023-02-17 19:21:20.388942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.389731"], ["updated_at", "2023-02-17 19:21:20.389731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.390474"], ["updated_at", "2023-02-17 19:21:20.390474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.391182"], ["updated_at", "2023-02-17 19:21:20.391182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.391914"], ["updated_at", "2023-02-17 19:21:20.391914"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.392765"], ["updated_at", "2023-02-17 19:21:20.392765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.393499"], ["updated_at", "2023-02-17 19:21:20.393499"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.409671"], ["updated_at", "2023-02-17 19:21:20.409671"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.410685"], ["updated_at", "2023-02-17 19:21:20.410685"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.411668"], ["updated_at", "2023-02-17 19:21:20.411668"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.412430"], ["updated_at", "2023-02-17 19:21:20.412430"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.413225"], ["updated_at", "2023-02-17 19:21:20.413225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.413985"], ["updated_at", "2023-02-17 19:21:20.413985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.414704"], ["updated_at", "2023-02-17 19:21:20.414704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.415614"], ["updated_at", "2023-02-17 19:21:20.415614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.416387"], ["updated_at", "2023-02-17 19:21:20.416387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.417132"], ["updated_at", "2023-02-17 19:21:20.417132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.417840"], ["updated_at", "2023-02-17 19:21:20.417840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.418542"], ["updated_at", "2023-02-17 19:21:20.418542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.419480"], ["updated_at", "2023-02-17 19:21:20.419480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.420197"], ["updated_at", "2023-02-17 19:21:20.420197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.421171"], ["updated_at", "2023-02-17 19:21:20.421171"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.422181"], ["updated_at", "2023-02-17 19:21:20.422181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.438436"], ["updated_at", "2023-02-17 19:21:20.438436"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.439511"], ["updated_at", "2023-02-17 19:21:20.439511"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.440479"], ["updated_at", "2023-02-17 19:21:20.440479"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.441246"], ["updated_at", "2023-02-17 19:21:20.441246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.442029"], ["updated_at", "2023-02-17 19:21:20.442029"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.442776"], ["updated_at", "2023-02-17 19:21:20.442776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.443625"], ["updated_at", "2023-02-17 19:21:20.443625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.444371"], ["updated_at", "2023-02-17 19:21:20.444371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.445119"], ["updated_at", "2023-02-17 19:21:20.445119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.445872"], ["updated_at", "2023-02-17 19:21:20.445872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.446614"], ["updated_at", "2023-02-17 19:21:20.446614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.447558"], ["updated_at", "2023-02-17 19:21:20.447558"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.448356"], ["updated_at", "2023-02-17 19:21:20.448356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.449085"], ["updated_at", "2023-02-17 19:21:20.449085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.449805"], ["updated_at", "2023-02-17 19:21:20.449805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.450508"], ["updated_at", "2023-02-17 19:21:20.450508"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.473446"], ["updated_at", "2023-02-17 19:21:20.473446"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.474396"], ["updated_at", "2023-02-17 19:21:20.474396"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.475186"], ["updated_at", "2023-02-17 19:21:20.475186"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.476016"], ["updated_at", "2023-02-17 19:21:20.476016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.476808"], ["updated_at", "2023-02-17 19:21:20.476808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.477528"], ["updated_at", "2023-02-17 19:21:20.477528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.478219"], ["updated_at", "2023-02-17 19:21:20.478219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.478909"], ["updated_at", "2023-02-17 19:21:20.478909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.479755"], ["updated_at", "2023-02-17 19:21:20.479755"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.480567"], ["updated_at", "2023-02-17 19:21:20.480567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.481319"], ["updated_at", "2023-02-17 19:21:20.481319"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.482034"], ["updated_at", "2023-02-17 19:21:20.482034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.482769"], ["updated_at", "2023-02-17 19:21:20.482769"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.483706"], ["updated_at", "2023-02-17 19:21:20.483706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.484480"], ["updated_at", "2023-02-17 19:21:20.484480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.485202"], ["updated_at", "2023-02-17 19:21:20.485202"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.500914"], ["updated_at", "2023-02-17 19:21:20.500914"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.501882"], ["updated_at", "2023-02-17 19:21:20.501882"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.502821"], ["updated_at", "2023-02-17 19:21:20.502821"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.503566"], ["updated_at", "2023-02-17 19:21:20.503566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.504300"], ["updated_at", "2023-02-17 19:21:20.504300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.505020"], ["updated_at", "2023-02-17 19:21:20.505020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.505747"], ["updated_at", "2023-02-17 19:21:20.505747"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.506574"], ["updated_at", "2023-02-17 19:21:20.506574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.507284"], ["updated_at", "2023-02-17 19:21:20.507284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.507971"], ["updated_at", "2023-02-17 19:21:20.507971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.508651"], ["updated_at", "2023-02-17 19:21:20.508651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.509362"], ["updated_at", "2023-02-17 19:21:20.509362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.510248"], ["updated_at", "2023-02-17 19:21:20.510248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.510978"], ["updated_at", "2023-02-17 19:21:20.510978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.511676"], ["updated_at", "2023-02-17 19:21:20.511676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.512361"], ["updated_at", "2023-02-17 19:21:20.512361"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:21:20 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:21:20.522190"], ["updated_at", "2023-02-17 19:21:20.522190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:21:20.523614"], ["updated_at", "2023-02-17 19:21:20.523614"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:21:20.526716"], ["updated_at", "2023-02-17 19:21:20.526716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:21:20.527894"], ["updated_at", "2023-02-17 19:21:20.527894"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:21:20.530768"], ["updated_at", "2023-02-17 19:21:20.530768"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:21:20.531930"], ["updated_at", "2023-02-17 19:21:20.531930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:21:20.534191"], ["updated_at", "2023-02-17 19:21:20.534191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:21:20.535634"], ["updated_at", "2023-02-17 19:21:20.535634"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:21:20.537298"], ["updated_at", "2023-02-17 19:21:20.537298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:21:20.538577"], ["updated_at", "2023-02-17 19:21:20.538577"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:21:20.540076"], ["updated_at", "2023-02-17 19:21:20.540076"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:21:20.541339"], ["updated_at", "2023-02-17 19:21:20.541339"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:21:20.542707"], ["updated_at", "2023-02-17 19:21:20.542707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:21:20.543949"], ["updated_at", "2023-02-17 19:21:20.543949"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:21:20.545358"], ["updated_at", "2023-02-17 19:21:20.545358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:21:20.546588"], ["updated_at", "2023-02-17 19:21:20.546588"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:21:20.548157"], ["updated_at", "2023-02-17 19:21:20.548157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:21:20.549412"], ["updated_at", "2023-02-17 19:21:20.549412"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:21:20.550756"], ["updated_at", "2023-02-17 19:21:20.550756"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:21:20.552053"], ["updated_at", "2023-02-17 19:21:20.552053"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:21:20.553399"], ["updated_at", "2023-02-17 19:21:20.553399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:21:20.554535"], ["updated_at", "2023-02-17 19:21:20.554535"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:21:20.556380"], ["updated_at", "2023-02-17 19:21:20.556380"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:21:20.558161"], ["updated_at", "2023-02-17 19:21:20.558161"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:21:20.559786"], ["updated_at", "2023-02-17 19:21:20.559786"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:21:20.561185"], ["updated_at", "2023-02-17 19:21:20.561185"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:21:20.562627"], ["updated_at", "2023-02-17 19:21:20.562627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:21:20.563844"], ["updated_at", "2023-02-17 19:21:20.563844"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:21:20.565348"], ["updated_at", "2023-02-17 19:21:20.565348"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:21:20.566582"], ["updated_at", "2023-02-17 19:21:20.566582"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:21:20.567929"], ["updated_at", "2023-02-17 19:21:20.567929"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:21:20.569309"], ["updated_at", "2023-02-17 19:21:20.569309"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:21:20.570681"], ["updated_at", "2023-02-17 19:21:20.570681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:21:20.572075"], ["updated_at", "2023-02-17 19:21:20.572075"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:21:20.573883"], ["updated_at", "2023-02-17 19:21:20.573883"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:21:20.575367"], ["updated_at", "2023-02-17 19:21:20.575367"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:21:20.577332"], ["updated_at", "2023-02-17 19:21:20.577332"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:21:20.578716"], ["updated_at", "2023-02-17 19:21:20.578716"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:21:20.580186"], ["updated_at", "2023-02-17 19:21:20.580186"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:21:20.581425"], ["updated_at", "2023-02-17 19:21:20.581425"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:21:20.582982"], ["updated_at", "2023-02-17 19:21:20.582982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:21:20.584534"], ["updated_at", "2023-02-17 19:21:20.584534"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:21:20.586083"], ["updated_at", "2023-02-17 19:21:20.586083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:21:20.588087"], ["updated_at", "2023-02-17 19:21:20.588087"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:21:20.589874"], ["updated_at", "2023-02-17 19:21:20.589874"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:21:20.591672"], ["updated_at", "2023-02-17 19:21:20.591672"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:21:20.593512"], ["updated_at", "2023-02-17 19:21:20.593512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:21:20.595175"], ["updated_at", "2023-02-17 19:21:20.595175"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:21:20.597150"], ["updated_at", "2023-02-17 19:21:20.597150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:21:20.598930"], ["updated_at", "2023-02-17 19:21:20.598930"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:21:20.600772"], ["updated_at", "2023-02-17 19:21:20.600772"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:21:20.602532"], ["updated_at", "2023-02-17 19:21:20.602532"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:21:20.604340"], ["updated_at", "2023-02-17 19:21:20.604340"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:21:20.606162"], ["updated_at", "2023-02-17 19:21:20.606162"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:21:20.608633"], ["updated_at", "2023-02-17 19:21:20.608633"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:21:20.610342"], ["updated_at", "2023-02-17 19:21:20.610342"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:21:20.612113"], ["updated_at", "2023-02-17 19:21:20.612113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:21:20.613865"], ["updated_at", "2023-02-17 19:21:20.613865"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:21:20.615797"], ["updated_at", "2023-02-17 19:21:20.615797"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:21:20.617864"], ["updated_at", "2023-02-17 19:21:20.617864"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:21:20.619657"], ["updated_at", "2023-02-17 19:21:20.619657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:21:20.621293"], ["updated_at", "2023-02-17 19:21:20.621293"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:21:20.623128"], ["updated_at", "2023-02-17 19:21:20.623128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:21:20.624677"], ["updated_at", "2023-02-17 19:21:20.624677"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:21:20.626653"], ["updated_at", "2023-02-17 19:21:20.626653"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:21:20.628857"], ["updated_at", "2023-02-17 19:21:20.628857"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:21:20.630789"], ["updated_at", "2023-02-17 19:21:20.630789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:21:20.632418"], ["updated_at", "2023-02-17 19:21:20.632418"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:21:20.634199"], ["updated_at", "2023-02-17 19:21:20.634199"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:21:20.636127"], ["updated_at", "2023-02-17 19:21:20.636127"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:21:20.638825"], ["updated_at", "2023-02-17 19:21:20.638825"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:21:20.640556"], ["updated_at", "2023-02-17 19:21:20.640556"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:21:20.642180"], ["updated_at", "2023-02-17 19:21:20.642180"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:21:20.643495"], ["updated_at", "2023-02-17 19:21:20.643495"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:21:20.644835"], ["updated_at", "2023-02-17 19:21:20.644835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:21:20.646267"], ["updated_at", "2023-02-17 19:21:20.646267"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:21:20.647938"], ["updated_at", "2023-02-17 19:21:20.647938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:21:20.649127"], ["updated_at", "2023-02-17 19:21:20.649127"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:21:20.650668"], ["updated_at", "2023-02-17 19:21:20.650668"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:21:20.651858"], ["updated_at", "2023-02-17 19:21:20.651858"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:21:20.653206"], ["updated_at", "2023-02-17 19:21:20.653206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:21:20.654531"], ["updated_at", "2023-02-17 19:21:20.654531"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:21:20.655876"], ["updated_at", "2023-02-17 19:21:20.655876"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:21:20.657519"], ["updated_at", "2023-02-17 19:21:20.657519"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:21:20.659147"], ["updated_at", "2023-02-17 19:21:20.659147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:21:20.660493"], ["updated_at", "2023-02-17 19:21:20.660493"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:21:20.662044"], ["updated_at", "2023-02-17 19:21:20.662044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:21:20.663259"], ["updated_at", "2023-02-17 19:21:20.663259"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:21:20.664743"], ["updated_at", "2023-02-17 19:21:20.664743"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:21:20.666392"], ["updated_at", "2023-02-17 19:21:20.666392"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:21:20.668013"], ["updated_at", "2023-02-17 19:21:20.668013"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:21:20.669513"], ["updated_at", "2023-02-17 19:21:20.669513"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:21:20.671020"], ["updated_at", "2023-02-17 19:21:20.671020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:21:20.672456"], ["updated_at", "2023-02-17 19:21:20.672456"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:21:20.674072"], ["updated_at", "2023-02-17 19:21:20.674072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:21:20.675178"], ["updated_at", "2023-02-17 19:21:20.675178"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:21:20.676854"], ["updated_at", "2023-02-17 19:21:20.676854"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:21:20.678588"], ["updated_at", "2023-02-17 19:21:20.678588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:21:20.680173"], ["updated_at", "2023-02-17 19:21:20.680173"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:21:20.681482"], ["updated_at", "2023-02-17 19:21:20.681482"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:21:20.682740"], ["updated_at", "2023-02-17 19:21:20.682740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:20.694946"], ["updated_at", "2023-02-17 19:21:20.694946"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:20.696460"], ["updated_at", "2023-02-17 19:21:20.696460"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:20.697944"], ["updated_at", "2023-02-17 19:21:20.697944"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.699028"], ["updated_at", "2023-02-17 19:21:20.699028"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.699907"], ["updated_at", "2023-02-17 19:21:20.699907"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.700687"], ["updated_at", "2023-02-17 19:21:20.700687"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.701609"], ["updated_at", "2023-02-17 19:21:20.701609"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.702393"], ["updated_at", "2023-02-17 19:21:20.702393"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:20.703274"], ["updated_at", "2023-02-17 19:21:20.703274"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.704228"], ["updated_at", "2023-02-17 19:21:20.704228"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.705285"], ["updated_at", "2023-02-17 19:21:20.705285"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.706370"], ["updated_at", "2023-02-17 19:21:20.706370"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.707423"], ["updated_at", "2023-02-17 19:21:20.707423"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.708210"], ["updated_at", "2023-02-17 19:21:20.708210"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.709198"], ["updated_at", "2023-02-17 19:21:20.709198"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.710112"], ["updated_at", "2023-02-17 19:21:20.710112"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.710912"], ["updated_at", "2023-02-17 19:21:20.710912"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.711712"], ["updated_at", "2023-02-17 19:21:20.711712"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.712685"], ["updated_at", "2023-02-17 19:21:20.712685"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.713645"], ["updated_at", "2023-02-17 19:21:20.713645"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.714529"], ["updated_at", "2023-02-17 19:21:20.714529"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:21:20.727004"], ["updated_at", "2023-02-17 19:21:20.727004"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:21:20.728611"], ["updated_at", "2023-02-17 19:21:20.728611"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:21:20.729631"], ["updated_at", "2023-02-17 19:21:20.729631"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:20.730597"], ["updated_at", "2023-02-17 19:21:20.730597"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:20.731558"], ["updated_at", "2023-02-17 19:21:20.731558"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:20.732530"], ["updated_at", "2023-02-17 19:21:20.732530"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:20.733282"], ["updated_at", "2023-02-17 19:21:20.733282"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:21:20.733977"], ["updated_at", "2023-02-17 19:21:20.733977"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:21:20.734793"], ["updated_at", "2023-02-17 19:21:20.734793"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.735836"], ["updated_at", "2023-02-17 19:21:20.735836"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.736970"], ["updated_at", "2023-02-17 19:21:20.736970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.738011"], ["updated_at", "2023-02-17 19:21:20.738011"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.738862"], ["updated_at", "2023-02-17 19:21:20.738862"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.739906"], ["updated_at", "2023-02-17 19:21:20.739906"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.740766"], ["updated_at", "2023-02-17 19:21:20.740766"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.741638"], ["updated_at", "2023-02-17 19:21:20.741638"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.742484"], ["updated_at", "2023-02-17 19:21:20.742484"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.743386"], ["updated_at", "2023-02-17 19:21:20.743386"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.744246"], ["updated_at", "2023-02-17 19:21:20.744246"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.745011"], ["updated_at", "2023-02-17 19:21:20.745011"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:21:20.745843"], ["updated_at", "2023-02-17 19:21:20.745843"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.764832"], ["updated_at", "2023-02-17 19:21:20.764832"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.766377"], ["updated_at", "2023-02-17 19:21:20.766377"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.767579"], ["updated_at", "2023-02-17 19:21:20.767579"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.768507"], ["updated_at", "2023-02-17 19:21:20.768507"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.769536"], ["updated_at", "2023-02-17 19:21:20.769536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.770473"], ["updated_at", "2023-02-17 19:21:20.770473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.771318"], ["updated_at", "2023-02-17 19:21:20.771318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.772045"], ["updated_at", "2023-02-17 19:21:20.772045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.772817"], ["updated_at", "2023-02-17 19:21:20.772817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.773793"], ["updated_at", "2023-02-17 19:21:20.773793"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.774575"], ["updated_at", "2023-02-17 19:21:20.774575"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.775308"], ["updated_at", "2023-02-17 19:21:20.775308"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.776098"], ["updated_at", "2023-02-17 19:21:20.776098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.777175"], ["updated_at", "2023-02-17 19:21:20.777175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.778117"], ["updated_at", "2023-02-17 19:21:20.778117"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:21:20.779104"], ["updated_at", "2023-02-17 19:21:20.779104"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.797382"], ["updated_at", "2023-02-17 19:21:20.797382"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.798696"], ["updated_at", "2023-02-17 19:21:20.798696"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.799630"], ["updated_at", "2023-02-17 19:21:20.799630"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.800461"], ["updated_at", "2023-02-17 19:21:20.800461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.801266"], ["updated_at", "2023-02-17 19:21:20.801266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.802332"], ["updated_at", "2023-02-17 19:21:20.802332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.803190"], ["updated_at", "2023-02-17 19:21:20.803190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.804029"], ["updated_at", "2023-02-17 19:21:20.804029"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.804777"], ["updated_at", "2023-02-17 19:21:20.804777"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.805671"], ["updated_at", "2023-02-17 19:21:20.805671"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.806651"], ["updated_at", "2023-02-17 19:21:20.806651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.807525"], ["updated_at", "2023-02-17 19:21:20.807525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.808262"], ["updated_at", "2023-02-17 19:21:20.808262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.809234"], ["updated_at", "2023-02-17 19:21:20.809234"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.810078"], ["updated_at", "2023-02-17 19:21:20.810078"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:21:20.810875"], ["updated_at", "2023-02-17 19:21:20.810875"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.828085"], ["updated_at", "2023-02-17 19:21:20.828085"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.829160"], ["updated_at", "2023-02-17 19:21:20.829160"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.830494"], ["updated_at", "2023-02-17 19:21:20.830494"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.831665"], ["updated_at", "2023-02-17 19:21:20.831665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.832803"], ["updated_at", "2023-02-17 19:21:20.832803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.833888"], ["updated_at", "2023-02-17 19:21:20.833888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.834789"], ["updated_at", "2023-02-17 19:21:20.834789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.835601"], ["updated_at", "2023-02-17 19:21:20.835601"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.836517"], ["updated_at", "2023-02-17 19:21:20.836517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.837405"], ["updated_at", "2023-02-17 19:21:20.837405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.838256"], ["updated_at", "2023-02-17 19:21:20.838256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.839096"], ["updated_at", "2023-02-17 19:21:20.839096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.839973"], ["updated_at", "2023-02-17 19:21:20.839973"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.840884"], ["updated_at", "2023-02-17 19:21:20.840884"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.841794"], ["updated_at", "2023-02-17 19:21:20.841794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:21:20.842632"], ["updated_at", "2023-02-17 19:21:20.842632"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.860825"], ["updated_at", "2023-02-17 19:21:20.860825"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.861908"], ["updated_at", "2023-02-17 19:21:20.861908"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.862996"], ["updated_at", "2023-02-17 19:21:20.862996"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.863924"], ["updated_at", "2023-02-17 19:21:20.863924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.864859"], ["updated_at", "2023-02-17 19:21:20.864859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.865791"], ["updated_at", "2023-02-17 19:21:20.865791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.866823"], ["updated_at", "2023-02-17 19:21:20.866823"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.867754"], ["updated_at", "2023-02-17 19:21:20.867754"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.868616"], ["updated_at", "2023-02-17 19:21:20.868616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.869545"], ["updated_at", "2023-02-17 19:21:20.869545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.870648"], ["updated_at", "2023-02-17 19:21:20.870648"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.871669"], ["updated_at", "2023-02-17 19:21:20.871669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.872473"], ["updated_at", "2023-02-17 19:21:20.872473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.873357"], ["updated_at", "2023-02-17 19:21:20.873357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.874348"], ["updated_at", "2023-02-17 19:21:20.874348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:21:20.875238"], ["updated_at", "2023-02-17 19:21:20.875238"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.893849"], ["updated_at", "2023-02-17 19:21:20.893849"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.895001"], ["updated_at", "2023-02-17 19:21:20.895001"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.895951"], ["updated_at", "2023-02-17 19:21:20.895951"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.896873"], ["updated_at", "2023-02-17 19:21:20.896873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.897797"], ["updated_at", "2023-02-17 19:21:20.897797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.898924"], ["updated_at", "2023-02-17 19:21:20.898924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.899853"], ["updated_at", "2023-02-17 19:21:20.899853"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.900732"], ["updated_at", "2023-02-17 19:21:20.900732"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.901677"], ["updated_at", "2023-02-17 19:21:20.901677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.902668"], ["updated_at", "2023-02-17 19:21:20.902668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.903593"], ["updated_at", "2023-02-17 19:21:20.903593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.904463"], ["updated_at", "2023-02-17 19:21:20.904463"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.905374"], ["updated_at", "2023-02-17 19:21:20.905374"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.906347"], ["updated_at", "2023-02-17 19:21:20.906347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.907266"], ["updated_at", "2023-02-17 19:21:20.907266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:21:20.908118"], ["updated_at", "2023-02-17 19:21:20.908118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:21:20.926546"], ["updated_at", "2023-02-17 19:21:20.926546"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:21:20.927617"], ["updated_at", "2023-02-17 19:21:20.927617"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:21:20.928701"], ["updated_at", "2023-02-17 19:21:20.928701"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:21:20.929643"], ["updated_at", "2023-02-17 19:21:20.929643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.930599"], ["updated_at", "2023-02-17 19:21:20.930599"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.931480"], ["updated_at", "2023-02-17 19:21:20.931480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.932395"], ["updated_at", "2023-02-17 19:21:20.932395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.933308"], ["updated_at", "2023-02-17 19:21:20.933308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.934238"], ["updated_at", "2023-02-17 19:21:20.934238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.935089"], ["updated_at", "2023-02-17 19:21:20.935089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.936085"], ["updated_at", "2023-02-17 19:21:20.936085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.937048"], ["updated_at", "2023-02-17 19:21:20.937048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.937898"], ["updated_at", "2023-02-17 19:21:20.937898"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.938745"], ["updated_at", "2023-02-17 19:21:20.938745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.939672"], ["updated_at", "2023-02-17 19:21:20.939672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:21:20.940472"], ["updated_at", "2023-02-17 19:21:20.940472"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:21:20 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:21:20 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:21:20 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 180)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (3.5ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.9ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:03.514903"], ["updated_at", "2023-02-17 19:22:03.514903"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:03.529083"], ["updated_at", "2023-02-17 19:22:03.529083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:22:03.535746"], ["updated_at", "2023-02-17 19:22:03.535746"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:03.545676"], ["updated_at", "2023-02-17 19:22:03.545676"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:03.554122"], ["updated_at", "2023-02-17 19:22:03.554122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:22:03.557572"], ["updated_at", "2023-02-17 19:22:03.557572"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:03.559921"], ["updated_at", "2023-02-17 19:22:03.559921"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 57ms (Views: 0.3ms | ActiveRecord: 5.4ms | Allocations: 28608)

Member Load (0.2ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
 (1.5ms)  SELECT sqlite_version(*)
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:22:03.577639"], ["updated_at", "2023-02-17 19:22:03.577639"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.9ms | Allocations: 4604)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00007f74fd8e1a88>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 226)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:03.632435"], ["updated_at", "2023-02-17 19:22:03.632435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:03.634189"], ["updated_at", "2023-02-17 19:22:03.634189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:03.637296"], ["updated_at", "2023-02-17 19:22:03.637296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:03.638827"], ["updated_at", "2023-02-17 19:22:03.638827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:03.641851"], ["updated_at", "2023-02-17 19:22:03.641851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:03.643058"], ["updated_at", "2023-02-17 19:22:03.643058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:03.645576"], ["updated_at", "2023-02-17 19:22:03.645576"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:03.647106"], ["updated_at", "2023-02-17 19:22:03.647106"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:03.649069"], ["updated_at", "2023-02-17 19:22:03.649069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:03.650641"], ["updated_at", "2023-02-17 19:22:03.650641"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:03.652060"], ["updated_at", "2023-02-17 19:22:03.652060"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:03.653591"], ["updated_at", "2023-02-17 19:22:03.653591"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:03.655328"], ["updated_at", "2023-02-17 19:22:03.655328"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:03.656698"], ["updated_at", "2023-02-17 19:22:03.656698"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:03.658275"], ["updated_at", "2023-02-17 19:22:03.658275"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:03.659572"], ["updated_at", "2023-02-17 19:22:03.659572"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:03.661233"], ["updated_at", "2023-02-17 19:22:03.661233"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:03.662682"], ["updated_at", "2023-02-17 19:22:03.662682"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:03.664343"], ["updated_at", "2023-02-17 19:22:03.664343"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:03.665610"], ["updated_at", "2023-02-17 19:22:03.665610"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:03.667118"], ["updated_at", "2023-02-17 19:22:03.667118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:03.668630"], ["updated_at", "2023-02-17 19:22:03.668630"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:03.670504"], ["updated_at", "2023-02-17 19:22:03.670504"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:03.672086"], ["updated_at", "2023-02-17 19:22:03.672086"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:03.673738"], ["updated_at", "2023-02-17 19:22:03.673738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:03.675020"], ["updated_at", "2023-02-17 19:22:03.675020"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:03.676430"], ["updated_at", "2023-02-17 19:22:03.676430"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:03.678030"], ["updated_at", "2023-02-17 19:22:03.678030"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:03.679530"], ["updated_at", "2023-02-17 19:22:03.679530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:03.680978"], ["updated_at", "2023-02-17 19:22:03.680978"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:03.682634"], ["updated_at", "2023-02-17 19:22:03.682634"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:03.683857"], ["updated_at", "2023-02-17 19:22:03.683857"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:03.685500"], ["updated_at", "2023-02-17 19:22:03.685500"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:03.686801"], ["updated_at", "2023-02-17 19:22:03.686801"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:03.688321"], ["updated_at", "2023-02-17 19:22:03.688321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:03.689796"], ["updated_at", "2023-02-17 19:22:03.689796"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:03.691639"], ["updated_at", "2023-02-17 19:22:03.691639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:03.692871"], ["updated_at", "2023-02-17 19:22:03.692871"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:03.694405"], ["updated_at", "2023-02-17 19:22:03.694405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:03.695881"], ["updated_at", "2023-02-17 19:22:03.695881"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:03.697680"], ["updated_at", "2023-02-17 19:22:03.697680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:03.699061"], ["updated_at", "2023-02-17 19:22:03.699061"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:03.700527"], ["updated_at", "2023-02-17 19:22:03.700527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:03.702048"], ["updated_at", "2023-02-17 19:22:03.702048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:03.703721"], ["updated_at", "2023-02-17 19:22:03.703721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:03.705283"], ["updated_at", "2023-02-17 19:22:03.705283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:03.706834"], ["updated_at", "2023-02-17 19:22:03.706834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:03.708110"], ["updated_at", "2023-02-17 19:22:03.708110"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:03.709800"], ["updated_at", "2023-02-17 19:22:03.709800"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:03.711070"], ["updated_at", "2023-02-17 19:22:03.711070"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:03.712556"], ["updated_at", "2023-02-17 19:22:03.712556"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:03.714058"], ["updated_at", "2023-02-17 19:22:03.714058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:03.716607"], ["updated_at", "2023-02-17 19:22:03.716607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:03.718307"], ["updated_at", "2023-02-17 19:22:03.718307"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:03.719815"], ["updated_at", "2023-02-17 19:22:03.719815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:03.721273"], ["updated_at", "2023-02-17 19:22:03.721273"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:03.722789"], ["updated_at", "2023-02-17 19:22:03.722789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:03.724142"], ["updated_at", "2023-02-17 19:22:03.724142"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:03.726181"], ["updated_at", "2023-02-17 19:22:03.726181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:03.727626"], ["updated_at", "2023-02-17 19:22:03.727626"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:03.729389"], ["updated_at", "2023-02-17 19:22:03.729389"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:03.730681"], ["updated_at", "2023-02-17 19:22:03.730681"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:03.732444"], ["updated_at", "2023-02-17 19:22:03.732444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:03.733871"], ["updated_at", "2023-02-17 19:22:03.733871"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:03.735364"], ["updated_at", "2023-02-17 19:22:03.735364"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:03.736865"], ["updated_at", "2023-02-17 19:22:03.736865"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:03.739097"], ["updated_at", "2023-02-17 19:22:03.739097"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:03.740483"], ["updated_at", "2023-02-17 19:22:03.740483"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:03.742273"], ["updated_at", "2023-02-17 19:22:03.742273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:03.743781"], ["updated_at", "2023-02-17 19:22:03.743781"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:03.745312"], ["updated_at", "2023-02-17 19:22:03.745312"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:03.746792"], ["updated_at", "2023-02-17 19:22:03.746792"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:03.748350"], ["updated_at", "2023-02-17 19:22:03.748350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:03.749725"], ["updated_at", "2023-02-17 19:22:03.749725"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:03.751641"], ["updated_at", "2023-02-17 19:22:03.751641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:03.753020"], ["updated_at", "2023-02-17 19:22:03.753020"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:03.754806"], ["updated_at", "2023-02-17 19:22:03.754806"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:03.756078"], ["updated_at", "2023-02-17 19:22:03.756078"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:03.757611"], ["updated_at", "2023-02-17 19:22:03.757611"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:03.759338"], ["updated_at", "2023-02-17 19:22:03.759338"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:03.760825"], ["updated_at", "2023-02-17 19:22:03.760825"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:03.762258"], ["updated_at", "2023-02-17 19:22:03.762258"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:03.763711"], ["updated_at", "2023-02-17 19:22:03.763711"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:03.764958"], ["updated_at", "2023-02-17 19:22:03.764958"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:03.766669"], ["updated_at", "2023-02-17 19:22:03.766669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:03.767973"], ["updated_at", "2023-02-17 19:22:03.767973"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:03.769522"], ["updated_at", "2023-02-17 19:22:03.769522"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:03.771099"], ["updated_at", "2023-02-17 19:22:03.771099"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:03.772630"], ["updated_at", "2023-02-17 19:22:03.772630"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:03.774106"], ["updated_at", "2023-02-17 19:22:03.774106"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:03.775834"], ["updated_at", "2023-02-17 19:22:03.775834"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:03.777273"], ["updated_at", "2023-02-17 19:22:03.777273"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:03.778828"], ["updated_at", "2023-02-17 19:22:03.778828"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:03.780162"], ["updated_at", "2023-02-17 19:22:03.780162"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:03.782014"], ["updated_at", "2023-02-17 19:22:03.782014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:03.783224"], ["updated_at", "2023-02-17 19:22:03.783224"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:03.784528"], ["updated_at", "2023-02-17 19:22:03.784528"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:03.785972"], ["updated_at", "2023-02-17 19:22:03.785972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.3ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:03.790122"], ["updated_at", "2023-02-17 19:22:03.790122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:03.791872"], ["updated_at", "2023-02-17 19:22:03.791872"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:03.793145"], ["updated_at", "2023-02-17 19:22:03.793145"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:03.822273"], ["updated_at", "2023-02-17 19:22:03.822273"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:03.823910"], ["updated_at", "2023-02-17 19:22:03.823910"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:03.825197"], ["updated_at", "2023-02-17 19:22:03.825197"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:03.826186"], ["updated_at", "2023-02-17 19:22:03.826186"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:03.827010"], ["updated_at", "2023-02-17 19:22:03.827010"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:03.827725"], ["updated_at", "2023-02-17 19:22:03.827725"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:03.828575"], ["updated_at", "2023-02-17 19:22:03.828575"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:03.829413"], ["updated_at", "2023-02-17 19:22:03.829413"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:03.830187"], ["updated_at", "2023-02-17 19:22:03.830187"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.831115"], ["updated_at", "2023-02-17 19:22:03.831115"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.832109"], ["updated_at", "2023-02-17 19:22:03.832109"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.833142"], ["updated_at", "2023-02-17 19:22:03.833142"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.833977"], ["updated_at", "2023-02-17 19:22:03.833977"]]

Processing by ScrapperController#show as HTML

LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.834708"], ["updated_at", "2023-02-17 19:22:03.834708"]]

Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.835435"], ["updated_at", "2023-02-17 19:22:03.835435"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.836255"], ["updated_at", "2023-02-17 19:22:03.836255"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.837042"], ["updated_at", "2023-02-17 19:22:03.837042"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.837796"], ["updated_at", "2023-02-17 19:22:03.837796"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.838584"], ["updated_at", "2023-02-17 19:22:03.838584"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.839396"], ["updated_at", "2023-02-17 19:22:03.839396"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.840349"], ["updated_at", "2023-02-17 19:22:03.840349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:03.852098"], ["updated_at", "2023-02-17 19:22:03.852098"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:03.853315"], ["updated_at", "2023-02-17 19:22:03.853315"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:03.854232"], ["updated_at", "2023-02-17 19:22:03.854232"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:03.855246"], ["updated_at", "2023-02-17 19:22:03.855246"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:03.856105"], ["updated_at", "2023-02-17 19:22:03.856105"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:03.856855"], ["updated_at", "2023-02-17 19:22:03.856855"]]
TRANSACTION (0.1ms)  rollback transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:03.857557"], ["updated_at", "2023-02-17 19:22:03.857557"]]
TRANSACTION (0.0ms)  begin transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:03.858249"], ["updated_at", "2023-02-17 19:22:03.858249"]]

Processing by ScrapperController#show as HTML

SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:03.859292"], ["updated_at", "2023-02-17 19:22:03.859292"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.860200"], ["updated_at", "2023-02-17 19:22:03.860200"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.861017"], ["updated_at", "2023-02-17 19:22:03.861017"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.861822"], ["updated_at", "2023-02-17 19:22:03.861822"]]

Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2360)

LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.862700"], ["updated_at", "2023-02-17 19:22:03.862700"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.863676"], ["updated_at", "2023-02-17 19:22:03.863676"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.864561"], ["updated_at", "2023-02-17 19:22:03.864561"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.865516"], ["updated_at", "2023-02-17 19:22:03.865516"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.866483"], ["updated_at", "2023-02-17 19:22:03.866483"]]

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.867267"], ["updated_at", "2023-02-17 19:22:03.867267"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.868027"], ["updated_at", "2023-02-17 19:22:03.868027"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.868800"], ["updated_at", "2023-02-17 19:22:03.868800"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:03.869617"], ["updated_at", "2023-02-17 19:22:03.869617"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Load (0.3ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:03.878127"], ["updated_at", "2023-02-17 19:22:03.878127"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 12ms (ActiveRecord: 1.6ms | Allocations: 6170)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:22:03.902748"], ["updated_at", "2023-02-17 19:22:03.902748"], ["role_id", 1]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 12ms (ActiveRecord: 1.0ms | Allocations: 5710)

TRANSACTION (0.0ms)  rollback transaction
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:03.904034"], ["updated_at", "2023-02-17 19:22:03.904034"]]
TRANSACTION (0.0ms)  begin transaction
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:03.905191"], ["updated_at", "2023-02-17 19:22:03.905191"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:03.906183"], ["updated_at", "2023-02-17 19:22:03.906183"]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.906949"], ["updated_at", "2023-02-17 19:22:03.906949"]]

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055a9d4ccfc58>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.907922"], ["updated_at", "2023-02-17 19:22:03.907922"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.908887"], ["updated_at", "2023-02-17 19:22:03.908887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.909686"], ["updated_at", "2023-02-17 19:22:03.909686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.910378"], ["updated_at", "2023-02-17 19:22:03.910378"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.911078"], ["updated_at", "2023-02-17 19:22:03.911078"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.911941"], ["updated_at", "2023-02-17 19:22:03.911941"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.912630"], ["updated_at", "2023-02-17 19:22:03.912630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.913347"], ["updated_at", "2023-02-17 19:22:03.913347"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.914022"], ["updated_at", "2023-02-17 19:22:03.914022"]]
TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.914717"], ["updated_at", "2023-02-17 19:22:03.914717"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.915718"], ["updated_at", "2023-02-17 19:22:03.915718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:03.916514"], ["updated_at", "2023-02-17 19:22:03.916514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 227)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:03.934534"], ["updated_at", "2023-02-17 19:22:03.934534"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:03.935537"], ["updated_at", "2023-02-17 19:22:03.935537"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:03.936293"], ["updated_at", "2023-02-17 19:22:03.936293"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.937163"], ["updated_at", "2023-02-17 19:22:03.937163"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.938410"], ["updated_at", "2023-02-17 19:22:03.938410"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.939478"], ["updated_at", "2023-02-17 19:22:03.939478"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.940337"], ["updated_at", "2023-02-17 19:22:03.940337"]]
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.941076"], ["updated_at", "2023-02-17 19:22:03.941076"]]

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 6053)

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.941936"], ["updated_at", "2023-02-17 19:22:03.941936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.942833"], ["updated_at", "2023-02-17 19:22:03.942833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.943571"], ["updated_at", "2023-02-17 19:22:03.943571"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.944257"], ["updated_at", "2023-02-17 19:22:03.944257"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.945242"], ["updated_at", "2023-02-17 19:22:03.945242"]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.946286"], ["updated_at", "2023-02-17 19:22:03.946286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.947209"], ["updated_at", "2023-02-17 19:22:03.947209"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:03.947983"], ["updated_at", "2023-02-17 19:22:03.947983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:03.957832"], ["updated_at", "2023-02-17 19:22:03.957832"]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:03.963516"], ["updated_at", "2023-02-17 19:22:03.963516"]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
TRANSACTION (0.2ms)  begin transaction
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:03.965290"], ["updated_at", "2023-02-17 19:22:03.965290"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:03.966275"], ["updated_at", "2023-02-17 19:22:03.966275"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:03.967190"], ["updated_at", "2023-02-17 19:22:03.967190"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:03.968118"], ["updated_at", "2023-02-17 19:22:03.968118"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.968999"], ["updated_at", "2023-02-17 19:22:03.968999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.969875"], ["updated_at", "2023-02-17 19:22:03.969875"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:03.969717"], ["updated_at", "2023-02-17 19:22:03.969717"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.970936"], ["updated_at", "2023-02-17 19:22:03.970936"]]
TRANSACTION (0.2ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.971925"], ["updated_at", "2023-02-17 19:22:03.971925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.973041"], ["updated_at", "2023-02-17 19:22:03.973041"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.973854"], ["updated_at", "2023-02-17 19:22:03.973854"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.974556"], ["updated_at", "2023-02-17 19:22:03.974556"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.975666"], ["updated_at", "2023-02-17 19:22:03.975666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.976560"], ["updated_at", "2023-02-17 19:22:03.976560"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:03.976105"], ["updated_at", "2023-02-17 19:22:03.976105"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.977333"], ["updated_at", "2023-02-17 19:22:03.977333"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.978070"], ["updated_at", "2023-02-17 19:22:03.978070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:03.978923"], ["updated_at", "2023-02-17 19:22:03.978923"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.6ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:03.981930"], ["updated_at", "2023-02-17 19:22:03.981930"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:03.987689"], ["updated_at", "2023-02-17 19:22:03.987689"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:03.992805"], ["updated_at", "2023-02-17 19:22:03.992805"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:03.997021"], ["updated_at", "2023-02-17 19:22:03.997021"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:03.998352"], ["updated_at", "2023-02-17 19:22:03.998352"]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:03.998724"], ["updated_at", "2023-02-17 19:22:03.998724"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:03.999620"], ["updated_at", "2023-02-17 19:22:03.999620"]]
TRANSACTION (0.0ms)  rollback transaction
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.000711"], ["updated_at", "2023-02-17 19:22:04.000711"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.001596"], ["updated_at", "2023-02-17 19:22:04.001596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.002368"], ["updated_at", "2023-02-17 19:22:04.002368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.003353"], ["updated_at", "2023-02-17 19:22:04.003353"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.004303"], ["updated_at", "2023-02-17 19:22:04.004303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.005043"], ["updated_at", "2023-02-17 19:22:04.005043"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.005732"], ["updated_at", "2023-02-17 19:22:04.005732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.006661"], ["updated_at", "2023-02-17 19:22:04.006661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.007467"], ["updated_at", "2023-02-17 19:22:04.007467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.008266"], ["updated_at", "2023-02-17 19:22:04.008266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.009015"], ["updated_at", "2023-02-17 19:22:04.009015"]]

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:22:04 -0300

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.009720"], ["updated_at", "2023-02-17 19:22:04.009720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.010565"], ["updated_at", "2023-02-17 19:22:04.010565"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 232)

SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:22:04 -0300 Processing by SurveysController#open as JSON

SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.027835"], ["updated_at", "2023-02-17 19:22:04.027835"]]
Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 180)

QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.028918"], ["updated_at", "2023-02-17 19:22:04.028918"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.030044"], ["updated_at", "2023-02-17 19:22:04.030044"]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.030975"], ["updated_at", "2023-02-17 19:22:04.030975"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.031899"], ["updated_at", "2023-02-17 19:22:04.031899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.032686"], ["updated_at", "2023-02-17 19:22:04.032686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.033488"], ["updated_at", "2023-02-17 19:22:04.033488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.034235"], ["updated_at", "2023-02-17 19:22:04.034235"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.035160"], ["updated_at", "2023-02-17 19:22:04.035160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.035930"], ["updated_at", "2023-02-17 19:22:04.035930"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.036626"], ["updated_at", "2023-02-17 19:22:04.036626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.037395"], ["updated_at", "2023-02-17 19:22:04.037395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.038161"], ["updated_at", "2023-02-17 19:22:04.038161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.039055"], ["updated_at", "2023-02-17 19:22:04.039055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.039775"], ["updated_at", "2023-02-17 19:22:04.039775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.040551"], ["updated_at", "2023-02-17 19:22:04.040551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.057570"], ["updated_at", "2023-02-17 19:22:04.057570"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.058802"], ["updated_at", "2023-02-17 19:22:04.058802"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.059703"], ["updated_at", "2023-02-17 19:22:04.059703"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.060448"], ["updated_at", "2023-02-17 19:22:04.060448"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.061357"], ["updated_at", "2023-02-17 19:22:04.061357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.062129"], ["updated_at", "2023-02-17 19:22:04.062129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.062965"], ["updated_at", "2023-02-17 19:22:04.062965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.063724"], ["updated_at", "2023-02-17 19:22:04.063724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.064438"], ["updated_at", "2023-02-17 19:22:04.064438"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.065415"], ["updated_at", "2023-02-17 19:22:04.065415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.066218"], ["updated_at", "2023-02-17 19:22:04.066218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.067013"], ["updated_at", "2023-02-17 19:22:04.067013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.067766"], ["updated_at", "2023-02-17 19:22:04.067766"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.068780"], ["updated_at", "2023-02-17 19:22:04.068780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.069996"], ["updated_at", "2023-02-17 19:22:04.069996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.070778"], ["updated_at", "2023-02-17 19:22:04.070778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:22:04 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.3ms | Allocations: 3126)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:04.096579"], ["updated_at", "2023-02-17 19:22:04.096579"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:04.098073"], ["updated_at", "2023-02-17 19:22:04.098073"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:04.102175"], ["updated_at", "2023-02-17 19:22:04.102175"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:04.103458"], ["updated_at", "2023-02-17 19:22:04.103458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:04.106424"], ["updated_at", "2023-02-17 19:22:04.106424"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:04.107652"], ["updated_at", "2023-02-17 19:22:04.107652"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:04.110249"], ["updated_at", "2023-02-17 19:22:04.110249"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:04.111740"], ["updated_at", "2023-02-17 19:22:04.111740"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:04.113473"], ["updated_at", "2023-02-17 19:22:04.113473"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:04.114881"], ["updated_at", "2023-02-17 19:22:04.114881"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:04.116488"], ["updated_at", "2023-02-17 19:22:04.116488"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:04.117835"], ["updated_at", "2023-02-17 19:22:04.117835"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:04.119496"], ["updated_at", "2023-02-17 19:22:04.119496"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:04.121109"], ["updated_at", "2023-02-17 19:22:04.121109"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:04.122639"], ["updated_at", "2023-02-17 19:22:04.122639"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:04.124060"], ["updated_at", "2023-02-17 19:22:04.124060"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:04.125578"], ["updated_at", "2023-02-17 19:22:04.125578"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:04.126884"], ["updated_at", "2023-02-17 19:22:04.126884"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:04.128445"], ["updated_at", "2023-02-17 19:22:04.128445"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:04.130118"], ["updated_at", "2023-02-17 19:22:04.130118"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:04.131918"], ["updated_at", "2023-02-17 19:22:04.131918"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:04.133248"], ["updated_at", "2023-02-17 19:22:04.133248"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:04.134799"], ["updated_at", "2023-02-17 19:22:04.134799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:04.136109"], ["updated_at", "2023-02-17 19:22:04.136109"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:04.137507"], ["updated_at", "2023-02-17 19:22:04.137507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:04.138933"], ["updated_at", "2023-02-17 19:22:04.138933"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:04.140767"], ["updated_at", "2023-02-17 19:22:04.140767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:04.142036"], ["updated_at", "2023-02-17 19:22:04.142036"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:04.143678"], ["updated_at", "2023-02-17 19:22:04.143678"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:04.144918"], ["updated_at", "2023-02-17 19:22:04.144918"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:04.146538"], ["updated_at", "2023-02-17 19:22:04.146538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:04.147925"], ["updated_at", "2023-02-17 19:22:04.147925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:04.149484"], ["updated_at", "2023-02-17 19:22:04.149484"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:04.150977"], ["updated_at", "2023-02-17 19:22:04.150977"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:04.152446"], ["updated_at", "2023-02-17 19:22:04.152446"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:04.153823"], ["updated_at", "2023-02-17 19:22:04.153823"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:04.155346"], ["updated_at", "2023-02-17 19:22:04.155346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:04.156624"], ["updated_at", "2023-02-17 19:22:04.156624"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:04.158121"], ["updated_at", "2023-02-17 19:22:04.158121"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:04.159459"], ["updated_at", "2023-02-17 19:22:04.159459"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:04.161413"], ["updated_at", "2023-02-17 19:22:04.161413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:04.162854"], ["updated_at", "2023-02-17 19:22:04.162854"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:04.164341"], ["updated_at", "2023-02-17 19:22:04.164341"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:04.165733"], ["updated_at", "2023-02-17 19:22:04.165733"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:04.167116"], ["updated_at", "2023-02-17 19:22:04.167116"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:04.168426"], ["updated_at", "2023-02-17 19:22:04.168426"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:04.170437"], ["updated_at", "2023-02-17 19:22:04.170437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:04.171799"], ["updated_at", "2023-02-17 19:22:04.171799"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:04.173403"], ["updated_at", "2023-02-17 19:22:04.173403"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:04.174921"], ["updated_at", "2023-02-17 19:22:04.174921"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:04.176498"], ["updated_at", "2023-02-17 19:22:04.176498"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:04.177713"], ["updated_at", "2023-02-17 19:22:04.177713"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:04.179455"], ["updated_at", "2023-02-17 19:22:04.179455"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:04.180867"], ["updated_at", "2023-02-17 19:22:04.180867"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:04.182579"], ["updated_at", "2023-02-17 19:22:04.182579"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:04.183813"], ["updated_at", "2023-02-17 19:22:04.183813"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:04.185293"], ["updated_at", "2023-02-17 19:22:04.185293"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:04.186829"], ["updated_at", "2023-02-17 19:22:04.186829"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:04.188566"], ["updated_at", "2023-02-17 19:22:04.188566"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:04.190631"], ["updated_at", "2023-02-17 19:22:04.190631"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:04.192331"], ["updated_at", "2023-02-17 19:22:04.192331"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:04.193657"], ["updated_at", "2023-02-17 19:22:04.193657"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:04.195307"], ["updated_at", "2023-02-17 19:22:04.195307"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:04.196565"], ["updated_at", "2023-02-17 19:22:04.196565"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:04.198190"], ["updated_at", "2023-02-17 19:22:04.198190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:04.199842"], ["updated_at", "2023-02-17 19:22:04.199842"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:04.201609"], ["updated_at", "2023-02-17 19:22:04.201609"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:04.203500"], ["updated_at", "2023-02-17 19:22:04.203500"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:04.205058"], ["updated_at", "2023-02-17 19:22:04.205058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:04.206308"], ["updated_at", "2023-02-17 19:22:04.206308"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:04.207870"], ["updated_at", "2023-02-17 19:22:04.207870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:04.209362"], ["updated_at", "2023-02-17 19:22:04.209362"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:04.210938"], ["updated_at", "2023-02-17 19:22:04.210938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:04.212212"], ["updated_at", "2023-02-17 19:22:04.212212"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:04.213722"], ["updated_at", "2023-02-17 19:22:04.213722"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:04.215151"], ["updated_at", "2023-02-17 19:22:04.215151"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:04.216615"], ["updated_at", "2023-02-17 19:22:04.216615"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:04.217948"], ["updated_at", "2023-02-17 19:22:04.217948"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:04.219877"], ["updated_at", "2023-02-17 19:22:04.219877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:04.221218"], ["updated_at", "2023-02-17 19:22:04.221218"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:04.222942"], ["updated_at", "2023-02-17 19:22:04.222942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:04.224202"], ["updated_at", "2023-02-17 19:22:04.224202"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:04.225936"], ["updated_at", "2023-02-17 19:22:04.225936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:04.227321"], ["updated_at", "2023-02-17 19:22:04.227321"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:04.229066"], ["updated_at", "2023-02-17 19:22:04.229066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:04.230686"], ["updated_at", "2023-02-17 19:22:04.230686"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:04.232125"], ["updated_at", "2023-02-17 19:22:04.232125"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:04.233518"], ["updated_at", "2023-02-17 19:22:04.233518"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:04.235002"], ["updated_at", "2023-02-17 19:22:04.235002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:04.236246"], ["updated_at", "2023-02-17 19:22:04.236246"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:04.237884"], ["updated_at", "2023-02-17 19:22:04.237884"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:04.239303"], ["updated_at", "2023-02-17 19:22:04.239303"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:04.240921"], ["updated_at", "2023-02-17 19:22:04.240921"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:04.242171"], ["updated_at", "2023-02-17 19:22:04.242171"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:04.243729"], ["updated_at", "2023-02-17 19:22:04.243729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:04.245187"], ["updated_at", "2023-02-17 19:22:04.245187"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:04.246500"], ["updated_at", "2023-02-17 19:22:04.246500"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:04.248046"], ["updated_at", "2023-02-17 19:22:04.248046"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:04.249986"], ["updated_at", "2023-02-17 19:22:04.249986"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:04.251396"], ["updated_at", "2023-02-17 19:22:04.251396"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:04.252684"], ["updated_at", "2023-02-17 19:22:04.252684"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:04.265498"], ["updated_at", "2023-02-17 19:22:04.265498"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:04.267197"], ["updated_at", "2023-02-17 19:22:04.267197"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:04.268492"], ["updated_at", "2023-02-17 19:22:04.268492"]]
QuestionOption Create (0.3ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.269619"], ["updated_at", "2023-02-17 19:22:04.269619"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.270781"], ["updated_at", "2023-02-17 19:22:04.270781"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.271767"], ["updated_at", "2023-02-17 19:22:04.271767"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.272668"], ["updated_at", "2023-02-17 19:22:04.272668"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.273569"], ["updated_at", "2023-02-17 19:22:04.273569"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:04.274808"], ["updated_at", "2023-02-17 19:22:04.274808"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.276118"], ["updated_at", "2023-02-17 19:22:04.276118"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.277188"], ["updated_at", "2023-02-17 19:22:04.277188"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.278162"], ["updated_at", "2023-02-17 19:22:04.278162"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.280515"], ["updated_at", "2023-02-17 19:22:04.280515"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.281538"], ["updated_at", "2023-02-17 19:22:04.281538"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.282474"], ["updated_at", "2023-02-17 19:22:04.282474"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.283398"], ["updated_at", "2023-02-17 19:22:04.283398"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.284565"], ["updated_at", "2023-02-17 19:22:04.284565"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.285630"], ["updated_at", "2023-02-17 19:22:04.285630"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.286621"], ["updated_at", "2023-02-17 19:22:04.286621"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.287670"], ["updated_at", "2023-02-17 19:22:04.287670"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.289711"], ["updated_at", "2023-02-17 19:22:04.289711"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:04.303340"], ["updated_at", "2023-02-17 19:22:04.303340"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:04.305289"], ["updated_at", "2023-02-17 19:22:04.305289"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:04.306430"], ["updated_at", "2023-02-17 19:22:04.306430"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:04.307496"], ["updated_at", "2023-02-17 19:22:04.307496"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:04.309620"], ["updated_at", "2023-02-17 19:22:04.309620"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:04.310805"], ["updated_at", "2023-02-17 19:22:04.310805"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:04.311704"], ["updated_at", "2023-02-17 19:22:04.311704"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:04.312806"], ["updated_at", "2023-02-17 19:22:04.312806"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:04.313838"], ["updated_at", "2023-02-17 19:22:04.313838"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.314834"], ["updated_at", "2023-02-17 19:22:04.314834"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.315935"], ["updated_at", "2023-02-17 19:22:04.315935"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.316857"], ["updated_at", "2023-02-17 19:22:04.316857"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.317812"], ["updated_at", "2023-02-17 19:22:04.317812"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.319950"], ["updated_at", "2023-02-17 19:22:04.319950"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.321142"], ["updated_at", "2023-02-17 19:22:04.321142"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.322074"], ["updated_at", "2023-02-17 19:22:04.322074"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.322948"], ["updated_at", "2023-02-17 19:22:04.322948"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.323970"], ["updated_at", "2023-02-17 19:22:04.323970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.324806"], ["updated_at", "2023-02-17 19:22:04.324806"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.325610"], ["updated_at", "2023-02-17 19:22:04.325610"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.326367"], ["updated_at", "2023-02-17 19:22:04.326367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.351207"], ["updated_at", "2023-02-17 19:22:04.351207"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.352405"], ["updated_at", "2023-02-17 19:22:04.352405"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.353617"], ["updated_at", "2023-02-17 19:22:04.353617"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.354600"], ["updated_at", "2023-02-17 19:22:04.354600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.355475"], ["updated_at", "2023-02-17 19:22:04.355475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.356286"], ["updated_at", "2023-02-17 19:22:04.356286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.357020"], ["updated_at", "2023-02-17 19:22:04.357020"]]
LikertScaleAnswer Create (0.6ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.358211"], ["updated_at", "2023-02-17 19:22:04.358211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.359728"], ["updated_at", "2023-02-17 19:22:04.359728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.360610"], ["updated_at", "2023-02-17 19:22:04.360610"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.361511"], ["updated_at", "2023-02-17 19:22:04.361511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.362416"], ["updated_at", "2023-02-17 19:22:04.362416"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.363528"], ["updated_at", "2023-02-17 19:22:04.363528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.364553"], ["updated_at", "2023-02-17 19:22:04.364553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.365646"], ["updated_at", "2023-02-17 19:22:04.365646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.366750"], ["updated_at", "2023-02-17 19:22:04.366750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.386729"], ["updated_at", "2023-02-17 19:22:04.386729"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.387726"], ["updated_at", "2023-02-17 19:22:04.387726"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.388565"], ["updated_at", "2023-02-17 19:22:04.388565"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.389732"], ["updated_at", "2023-02-17 19:22:04.389732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.390684"], ["updated_at", "2023-02-17 19:22:04.390684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.391485"], ["updated_at", "2023-02-17 19:22:04.391485"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.392247"], ["updated_at", "2023-02-17 19:22:04.392247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.392972"], ["updated_at", "2023-02-17 19:22:04.392972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.393665"], ["updated_at", "2023-02-17 19:22:04.393665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.394407"], ["updated_at", "2023-02-17 19:22:04.394407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.395229"], ["updated_at", "2023-02-17 19:22:04.395229"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.396110"], ["updated_at", "2023-02-17 19:22:04.396110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.396838"], ["updated_at", "2023-02-17 19:22:04.396838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.397547"], ["updated_at", "2023-02-17 19:22:04.397547"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.398307"], ["updated_at", "2023-02-17 19:22:04.398307"]]
LikertScaleAnswer Create (0.6ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.399393"], ["updated_at", "2023-02-17 19:22:04.399393"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.417451"], ["updated_at", "2023-02-17 19:22:04.417451"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.418421"], ["updated_at", "2023-02-17 19:22:04.418421"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.419291"], ["updated_at", "2023-02-17 19:22:04.419291"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.420622"], ["updated_at", "2023-02-17 19:22:04.420622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.421541"], ["updated_at", "2023-02-17 19:22:04.421541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.422337"], ["updated_at", "2023-02-17 19:22:04.422337"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.423091"], ["updated_at", "2023-02-17 19:22:04.423091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.423829"], ["updated_at", "2023-02-17 19:22:04.423829"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.424686"], ["updated_at", "2023-02-17 19:22:04.424686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.425476"], ["updated_at", "2023-02-17 19:22:04.425476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.426211"], ["updated_at", "2023-02-17 19:22:04.426211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.426908"], ["updated_at", "2023-02-17 19:22:04.426908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.427701"], ["updated_at", "2023-02-17 19:22:04.427701"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.428489"], ["updated_at", "2023-02-17 19:22:04.428489"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.429492"], ["updated_at", "2023-02-17 19:22:04.429492"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.430592"], ["updated_at", "2023-02-17 19:22:04.430592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.448054"], ["updated_at", "2023-02-17 19:22:04.448054"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.449116"], ["updated_at", "2023-02-17 19:22:04.449116"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.450203"], ["updated_at", "2023-02-17 19:22:04.450203"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.451075"], ["updated_at", "2023-02-17 19:22:04.451075"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.451843"], ["updated_at", "2023-02-17 19:22:04.451843"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.452592"], ["updated_at", "2023-02-17 19:22:04.452592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.453316"], ["updated_at", "2023-02-17 19:22:04.453316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.454156"], ["updated_at", "2023-02-17 19:22:04.454156"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.454936"], ["updated_at", "2023-02-17 19:22:04.454936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.455676"], ["updated_at", "2023-02-17 19:22:04.455676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.456405"], ["updated_at", "2023-02-17 19:22:04.456405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.457992"], ["updated_at", "2023-02-17 19:22:04.457992"]]
LikertScaleAnswer Create (0.6ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.458991"], ["updated_at", "2023-02-17 19:22:04.458991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.462280"], ["updated_at", "2023-02-17 19:22:04.462280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.463271"], ["updated_at", "2023-02-17 19:22:04.463271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.463993"], ["updated_at", "2023-02-17 19:22:04.463993"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.483404"], ["updated_at", "2023-02-17 19:22:04.483404"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.484417"], ["updated_at", "2023-02-17 19:22:04.484417"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.485225"], ["updated_at", "2023-02-17 19:22:04.485225"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.486150"], ["updated_at", "2023-02-17 19:22:04.486150"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.487013"], ["updated_at", "2023-02-17 19:22:04.487013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.487821"], ["updated_at", "2023-02-17 19:22:04.487821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.488545"], ["updated_at", "2023-02-17 19:22:04.488545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.489266"], ["updated_at", "2023-02-17 19:22:04.489266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.491403"], ["updated_at", "2023-02-17 19:22:04.491403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.492233"], ["updated_at", "2023-02-17 19:22:04.492233"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.492960"], ["updated_at", "2023-02-17 19:22:04.492960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.493912"], ["updated_at", "2023-02-17 19:22:04.493912"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.494649"], ["updated_at", "2023-02-17 19:22:04.494649"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.495391"], ["updated_at", "2023-02-17 19:22:04.495391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.496144"], ["updated_at", "2023-02-17 19:22:04.496144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.496955"], ["updated_at", "2023-02-17 19:22:04.496955"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.515205"], ["updated_at", "2023-02-17 19:22:04.515205"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.516259"], ["updated_at", "2023-02-17 19:22:04.516259"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.517102"], ["updated_at", "2023-02-17 19:22:04.517102"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.517865"], ["updated_at", "2023-02-17 19:22:04.517865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.518663"], ["updated_at", "2023-02-17 19:22:04.518663"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.519582"], ["updated_at", "2023-02-17 19:22:04.519582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.521126"], ["updated_at", "2023-02-17 19:22:04.521126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.522108"], ["updated_at", "2023-02-17 19:22:04.522108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.522915"], ["updated_at", "2023-02-17 19:22:04.522915"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.523681"], ["updated_at", "2023-02-17 19:22:04.523681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.524378"], ["updated_at", "2023-02-17 19:22:04.524378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.525132"], ["updated_at", "2023-02-17 19:22:04.525132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.525908"], ["updated_at", "2023-02-17 19:22:04.525908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.526660"], ["updated_at", "2023-02-17 19:22:04.526660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.527391"], ["updated_at", "2023-02-17 19:22:04.527391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.528083"], ["updated_at", "2023-02-17 19:22:04.528083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:22:04 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.1ms | Allocations: 381)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:04.547654"], ["updated_at", "2023-02-17 19:22:04.547654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:04.549098"], ["updated_at", "2023-02-17 19:22:04.549098"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:04.552433"], ["updated_at", "2023-02-17 19:22:04.552433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:04.553642"], ["updated_at", "2023-02-17 19:22:04.553642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:04.556267"], ["updated_at", "2023-02-17 19:22:04.556267"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:04.557456"], ["updated_at", "2023-02-17 19:22:04.557456"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:04.559447"], ["updated_at", "2023-02-17 19:22:04.559447"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:04.561742"], ["updated_at", "2023-02-17 19:22:04.561742"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:04.563365"], ["updated_at", "2023-02-17 19:22:04.563365"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:04.564630"], ["updated_at", "2023-02-17 19:22:04.564630"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:04.566008"], ["updated_at", "2023-02-17 19:22:04.566008"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:04.567161"], ["updated_at", "2023-02-17 19:22:04.567161"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:04.568524"], ["updated_at", "2023-02-17 19:22:04.568524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:04.569844"], ["updated_at", "2023-02-17 19:22:04.569844"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:04.571460"], ["updated_at", "2023-02-17 19:22:04.571460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:04.572689"], ["updated_at", "2023-02-17 19:22:04.572689"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:04.574033"], ["updated_at", "2023-02-17 19:22:04.574033"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:04.575185"], ["updated_at", "2023-02-17 19:22:04.575185"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:04.576581"], ["updated_at", "2023-02-17 19:22:04.576581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:04.577787"], ["updated_at", "2023-02-17 19:22:04.577787"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:04.579203"], ["updated_at", "2023-02-17 19:22:04.579203"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:04.581362"], ["updated_at", "2023-02-17 19:22:04.581362"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:04.583078"], ["updated_at", "2023-02-17 19:22:04.583078"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:04.584341"], ["updated_at", "2023-02-17 19:22:04.584341"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:04.585729"], ["updated_at", "2023-02-17 19:22:04.585729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:04.586959"], ["updated_at", "2023-02-17 19:22:04.586959"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:04.588392"], ["updated_at", "2023-02-17 19:22:04.588392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:04.589597"], ["updated_at", "2023-02-17 19:22:04.589597"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:04.591182"], ["updated_at", "2023-02-17 19:22:04.591182"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:04.592353"], ["updated_at", "2023-02-17 19:22:04.592353"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:04.594378"], ["updated_at", "2023-02-17 19:22:04.594378"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:04.595736"], ["updated_at", "2023-02-17 19:22:04.595736"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:04.597169"], ["updated_at", "2023-02-17 19:22:04.597169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:04.598424"], ["updated_at", "2023-02-17 19:22:04.598424"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:04.600069"], ["updated_at", "2023-02-17 19:22:04.600069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:04.602208"], ["updated_at", "2023-02-17 19:22:04.602208"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:04.603674"], ["updated_at", "2023-02-17 19:22:04.603674"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:04.604868"], ["updated_at", "2023-02-17 19:22:04.604868"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:04.609171"], ["updated_at", "2023-02-17 19:22:04.609171"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:04.611224"], ["updated_at", "2023-02-17 19:22:04.611224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:04.612954"], ["updated_at", "2023-02-17 19:22:04.612954"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:04.614624"], ["updated_at", "2023-02-17 19:22:04.614624"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:04.616345"], ["updated_at", "2023-02-17 19:22:04.616345"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:04.617944"], ["updated_at", "2023-02-17 19:22:04.617944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:04.619742"], ["updated_at", "2023-02-17 19:22:04.619742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (1.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:04.621328"], ["updated_at", "2023-02-17 19:22:04.621328"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:04.624603"], ["updated_at", "2023-02-17 19:22:04.624603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:04.626126"], ["updated_at", "2023-02-17 19:22:04.626126"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:04.628085"], ["updated_at", "2023-02-17 19:22:04.628085"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:04.629899"], ["updated_at", "2023-02-17 19:22:04.629899"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:04.631719"], ["updated_at", "2023-02-17 19:22:04.631719"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:04.636187"], ["updated_at", "2023-02-17 19:22:04.636187"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:04.638407"], ["updated_at", "2023-02-17 19:22:04.638407"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:04.639729"], ["updated_at", "2023-02-17 19:22:04.639729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:04.641305"], ["updated_at", "2023-02-17 19:22:04.641305"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:04.642560"], ["updated_at", "2023-02-17 19:22:04.642560"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:04.644049"], ["updated_at", "2023-02-17 19:22:04.644049"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:04.645364"], ["updated_at", "2023-02-17 19:22:04.645364"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:04.647471"], ["updated_at", "2023-02-17 19:22:04.647471"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:04.649014"], ["updated_at", "2023-02-17 19:22:04.649014"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:04.651691"], ["updated_at", "2023-02-17 19:22:04.651691"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:04.653486"], ["updated_at", "2023-02-17 19:22:04.653486"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:04.655492"], ["updated_at", "2023-02-17 19:22:04.655492"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:04.657145"], ["updated_at", "2023-02-17 19:22:04.657145"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:04.659149"], ["updated_at", "2023-02-17 19:22:04.659149"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:04.660944"], ["updated_at", "2023-02-17 19:22:04.660944"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:04.662884"], ["updated_at", "2023-02-17 19:22:04.662884"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:04.664601"], ["updated_at", "2023-02-17 19:22:04.664601"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:04.666576"], ["updated_at", "2023-02-17 19:22:04.666576"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:04.668304"], ["updated_at", "2023-02-17 19:22:04.668304"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:04.670098"], ["updated_at", "2023-02-17 19:22:04.670098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:04.671593"], ["updated_at", "2023-02-17 19:22:04.671593"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:04.673038"], ["updated_at", "2023-02-17 19:22:04.673038"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:04.674431"], ["updated_at", "2023-02-17 19:22:04.674431"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:04.675964"], ["updated_at", "2023-02-17 19:22:04.675964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:04.677154"], ["updated_at", "2023-02-17 19:22:04.677154"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:04.678671"], ["updated_at", "2023-02-17 19:22:04.678671"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:04.680031"], ["updated_at", "2023-02-17 19:22:04.680031"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:04.683847"], ["updated_at", "2023-02-17 19:22:04.683847"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:04.689375"], ["updated_at", "2023-02-17 19:22:04.689375"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:04.691102"], ["updated_at", "2023-02-17 19:22:04.691102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:04.692375"], ["updated_at", "2023-02-17 19:22:04.692375"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:04.693831"], ["updated_at", "2023-02-17 19:22:04.693831"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:04.695150"], ["updated_at", "2023-02-17 19:22:04.695150"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:04.696928"], ["updated_at", "2023-02-17 19:22:04.696928"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:04.698501"], ["updated_at", "2023-02-17 19:22:04.698501"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:04.700104"], ["updated_at", "2023-02-17 19:22:04.700104"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:04.701706"], ["updated_at", "2023-02-17 19:22:04.701706"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:04.703183"], ["updated_at", "2023-02-17 19:22:04.703183"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:04.704572"], ["updated_at", "2023-02-17 19:22:04.704572"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:04.705973"], ["updated_at", "2023-02-17 19:22:04.705973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:04.707526"], ["updated_at", "2023-02-17 19:22:04.707526"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:04.709239"], ["updated_at", "2023-02-17 19:22:04.709239"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:04.711170"], ["updated_at", "2023-02-17 19:22:04.711170"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:04.713096"], ["updated_at", "2023-02-17 19:22:04.713096"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:04.714352"], ["updated_at", "2023-02-17 19:22:04.714352"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:04.715703"], ["updated_at", "2023-02-17 19:22:04.715703"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:04.717428"], ["updated_at", "2023-02-17 19:22:04.717428"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:04.719166"], ["updated_at", "2023-02-17 19:22:04.719166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:04.720387"], ["updated_at", "2023-02-17 19:22:04.720387"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:04.721437"], ["updated_at", "2023-02-17 19:22:04.721437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:04.733431"], ["updated_at", "2023-02-17 19:22:04.733431"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:04.734884"], ["updated_at", "2023-02-17 19:22:04.734884"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:04.735915"], ["updated_at", "2023-02-17 19:22:04.735915"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.736857"], ["updated_at", "2023-02-17 19:22:04.736857"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.737703"], ["updated_at", "2023-02-17 19:22:04.737703"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.738473"], ["updated_at", "2023-02-17 19:22:04.738473"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.739160"], ["updated_at", "2023-02-17 19:22:04.739160"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.739897"], ["updated_at", "2023-02-17 19:22:04.739897"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:04.740797"], ["updated_at", "2023-02-17 19:22:04.740797"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.741721"], ["updated_at", "2023-02-17 19:22:04.741721"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.742591"], ["updated_at", "2023-02-17 19:22:04.742591"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.743351"], ["updated_at", "2023-02-17 19:22:04.743351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.744264"], ["updated_at", "2023-02-17 19:22:04.744264"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.745188"], ["updated_at", "2023-02-17 19:22:04.745188"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.746019"], ["updated_at", "2023-02-17 19:22:04.746019"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.746742"], ["updated_at", "2023-02-17 19:22:04.746742"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.747447"], ["updated_at", "2023-02-17 19:22:04.747447"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.748210"], ["updated_at", "2023-02-17 19:22:04.748210"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.749151"], ["updated_at", "2023-02-17 19:22:04.749151"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.750028"], ["updated_at", "2023-02-17 19:22:04.750028"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.750820"], ["updated_at", "2023-02-17 19:22:04.750820"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:04.762590"], ["updated_at", "2023-02-17 19:22:04.762590"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:04.763930"], ["updated_at", "2023-02-17 19:22:04.763930"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:04.764947"], ["updated_at", "2023-02-17 19:22:04.764947"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:04.765906"], ["updated_at", "2023-02-17 19:22:04.765906"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:04.766772"], ["updated_at", "2023-02-17 19:22:04.766772"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:04.767514"], ["updated_at", "2023-02-17 19:22:04.767514"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:04.768150"], ["updated_at", "2023-02-17 19:22:04.768150"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:04.768834"], ["updated_at", "2023-02-17 19:22:04.768834"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:04.769711"], ["updated_at", "2023-02-17 19:22:04.769711"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.770641"], ["updated_at", "2023-02-17 19:22:04.770641"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.771518"], ["updated_at", "2023-02-17 19:22:04.771518"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.772305"], ["updated_at", "2023-02-17 19:22:04.772305"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.773066"], ["updated_at", "2023-02-17 19:22:04.773066"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.773925"], ["updated_at", "2023-02-17 19:22:04.773925"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.774760"], ["updated_at", "2023-02-17 19:22:04.774760"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.775533"], ["updated_at", "2023-02-17 19:22:04.775533"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.776223"], ["updated_at", "2023-02-17 19:22:04.776223"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.776918"], ["updated_at", "2023-02-17 19:22:04.776918"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.777704"], ["updated_at", "2023-02-17 19:22:04.777704"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.778522"], ["updated_at", "2023-02-17 19:22:04.778522"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:04.779383"], ["updated_at", "2023-02-17 19:22:04.779383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.795550"], ["updated_at", "2023-02-17 19:22:04.795550"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.796659"], ["updated_at", "2023-02-17 19:22:04.796659"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.797515"], ["updated_at", "2023-02-17 19:22:04.797515"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.798289"], ["updated_at", "2023-02-17 19:22:04.798289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.799192"], ["updated_at", "2023-02-17 19:22:04.799192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.800024"], ["updated_at", "2023-02-17 19:22:04.800024"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.800771"], ["updated_at", "2023-02-17 19:22:04.800771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.801499"], ["updated_at", "2023-02-17 19:22:04.801499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.802262"], ["updated_at", "2023-02-17 19:22:04.802262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.803030"], ["updated_at", "2023-02-17 19:22:04.803030"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.803764"], ["updated_at", "2023-02-17 19:22:04.803764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.804487"], ["updated_at", "2023-02-17 19:22:04.804487"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.805200"], ["updated_at", "2023-02-17 19:22:04.805200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.805921"], ["updated_at", "2023-02-17 19:22:04.805921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.806656"], ["updated_at", "2023-02-17 19:22:04.806656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:04.807383"], ["updated_at", "2023-02-17 19:22:04.807383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.822746"], ["updated_at", "2023-02-17 19:22:04.822746"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.823773"], ["updated_at", "2023-02-17 19:22:04.823773"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.824554"], ["updated_at", "2023-02-17 19:22:04.824554"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.825290"], ["updated_at", "2023-02-17 19:22:04.825290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.826063"], ["updated_at", "2023-02-17 19:22:04.826063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.826795"], ["updated_at", "2023-02-17 19:22:04.826795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.827539"], ["updated_at", "2023-02-17 19:22:04.827539"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.828269"], ["updated_at", "2023-02-17 19:22:04.828269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.828991"], ["updated_at", "2023-02-17 19:22:04.828991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.829667"], ["updated_at", "2023-02-17 19:22:04.829667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.830397"], ["updated_at", "2023-02-17 19:22:04.830397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.831109"], ["updated_at", "2023-02-17 19:22:04.831109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.831856"], ["updated_at", "2023-02-17 19:22:04.831856"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.832577"], ["updated_at", "2023-02-17 19:22:04.832577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.833370"], ["updated_at", "2023-02-17 19:22:04.833370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:04.834081"], ["updated_at", "2023-02-17 19:22:04.834081"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.849757"], ["updated_at", "2023-02-17 19:22:04.849757"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.850730"], ["updated_at", "2023-02-17 19:22:04.850730"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.851467"], ["updated_at", "2023-02-17 19:22:04.851467"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.852258"], ["updated_at", "2023-02-17 19:22:04.852258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.853095"], ["updated_at", "2023-02-17 19:22:04.853095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.853856"], ["updated_at", "2023-02-17 19:22:04.853856"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.854559"], ["updated_at", "2023-02-17 19:22:04.854559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.855260"], ["updated_at", "2023-02-17 19:22:04.855260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.855945"], ["updated_at", "2023-02-17 19:22:04.855945"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.856698"], ["updated_at", "2023-02-17 19:22:04.856698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.857410"], ["updated_at", "2023-02-17 19:22:04.857410"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.858107"], ["updated_at", "2023-02-17 19:22:04.858107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.858820"], ["updated_at", "2023-02-17 19:22:04.858820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.859549"], ["updated_at", "2023-02-17 19:22:04.859549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.860312"], ["updated_at", "2023-02-17 19:22:04.860312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:04.861116"], ["updated_at", "2023-02-17 19:22:04.861116"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.878370"], ["updated_at", "2023-02-17 19:22:04.878370"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.879373"], ["updated_at", "2023-02-17 19:22:04.879373"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.880139"], ["updated_at", "2023-02-17 19:22:04.880139"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.880842"], ["updated_at", "2023-02-17 19:22:04.880842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.881704"], ["updated_at", "2023-02-17 19:22:04.881704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.882502"], ["updated_at", "2023-02-17 19:22:04.882502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.883251"], ["updated_at", "2023-02-17 19:22:04.883251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.883959"], ["updated_at", "2023-02-17 19:22:04.883959"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.884647"], ["updated_at", "2023-02-17 19:22:04.884647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.885358"], ["updated_at", "2023-02-17 19:22:04.885358"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.886110"], ["updated_at", "2023-02-17 19:22:04.886110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.887069"], ["updated_at", "2023-02-17 19:22:04.887069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.888640"], ["updated_at", "2023-02-17 19:22:04.888640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.889732"], ["updated_at", "2023-02-17 19:22:04.889732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.890511"], ["updated_at", "2023-02-17 19:22:04.890511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:04.891403"], ["updated_at", "2023-02-17 19:22:04.891403"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.910923"], ["updated_at", "2023-02-17 19:22:04.910923"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.912464"], ["updated_at", "2023-02-17 19:22:04.912464"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.913804"], ["updated_at", "2023-02-17 19:22:04.913804"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.915048"], ["updated_at", "2023-02-17 19:22:04.915048"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.916400"], ["updated_at", "2023-02-17 19:22:04.916400"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.917763"], ["updated_at", "2023-02-17 19:22:04.917763"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.919056"], ["updated_at", "2023-02-17 19:22:04.919056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.920382"], ["updated_at", "2023-02-17 19:22:04.920382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.921497"], ["updated_at", "2023-02-17 19:22:04.921497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.922375"], ["updated_at", "2023-02-17 19:22:04.922375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.923123"], ["updated_at", "2023-02-17 19:22:04.923123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.923832"], ["updated_at", "2023-02-17 19:22:04.923832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.924506"], ["updated_at", "2023-02-17 19:22:04.924506"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.925214"], ["updated_at", "2023-02-17 19:22:04.925214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.925899"], ["updated_at", "2023-02-17 19:22:04.925899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:04.926585"], ["updated_at", "2023-02-17 19:22:04.926585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.4ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:04.942425"], ["updated_at", "2023-02-17 19:22:04.942425"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:04.943403"], ["updated_at", "2023-02-17 19:22:04.943403"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:04.944187"], ["updated_at", "2023-02-17 19:22:04.944187"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:04.945037"], ["updated_at", "2023-02-17 19:22:04.945037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.945876"], ["updated_at", "2023-02-17 19:22:04.945876"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.946624"], ["updated_at", "2023-02-17 19:22:04.946624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.947367"], ["updated_at", "2023-02-17 19:22:04.947367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.948314"], ["updated_at", "2023-02-17 19:22:04.948314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.949128"], ["updated_at", "2023-02-17 19:22:04.949128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.949865"], ["updated_at", "2023-02-17 19:22:04.949865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.950579"], ["updated_at", "2023-02-17 19:22:04.950579"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.951272"], ["updated_at", "2023-02-17 19:22:04.951272"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.952003"], ["updated_at", "2023-02-17 19:22:04.952003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.952728"], ["updated_at", "2023-02-17 19:22:04.952728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.953437"], ["updated_at", "2023-02-17 19:22:04.953437"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:04.954160"], ["updated_at", "2023-02-17 19:22:04.954160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:22:04 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 14ms (Views: 10.8ms | ActiveRecord: 0.5ms | Allocations: 9578)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:04.977262"], ["updated_at", "2023-02-17 19:22:04.977262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:04.978720"], ["updated_at", "2023-02-17 19:22:04.978720"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:04.981545"], ["updated_at", "2023-02-17 19:22:04.981545"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:04.982811"], ["updated_at", "2023-02-17 19:22:04.982811"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:04.985805"], ["updated_at", "2023-02-17 19:22:04.985805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:04.986985"], ["updated_at", "2023-02-17 19:22:04.986985"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:04.989587"], ["updated_at", "2023-02-17 19:22:04.989587"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:04.991489"], ["updated_at", "2023-02-17 19:22:04.991489"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:04.993263"], ["updated_at", "2023-02-17 19:22:04.993263"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:04.994876"], ["updated_at", "2023-02-17 19:22:04.994876"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:04.996551"], ["updated_at", "2023-02-17 19:22:04.996551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:04.997809"], ["updated_at", "2023-02-17 19:22:04.997809"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:04.999177"], ["updated_at", "2023-02-17 19:22:04.999177"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:05.000378"], ["updated_at", "2023-02-17 19:22:05.000378"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:05.001765"], ["updated_at", "2023-02-17 19:22:05.001765"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:05.002975"], ["updated_at", "2023-02-17 19:22:05.002975"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:05.004374"], ["updated_at", "2023-02-17 19:22:05.004374"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:05.005602"], ["updated_at", "2023-02-17 19:22:05.005602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:05.007044"], ["updated_at", "2023-02-17 19:22:05.007044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:05.008224"], ["updated_at", "2023-02-17 19:22:05.008224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:05.009568"], ["updated_at", "2023-02-17 19:22:05.009568"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:05.010775"], ["updated_at", "2023-02-17 19:22:05.010775"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:05.012179"], ["updated_at", "2023-02-17 19:22:05.012179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:05.013388"], ["updated_at", "2023-02-17 19:22:05.013388"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:05.014783"], ["updated_at", "2023-02-17 19:22:05.014783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:05.015982"], ["updated_at", "2023-02-17 19:22:05.015982"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:05.017431"], ["updated_at", "2023-02-17 19:22:05.017431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:05.018630"], ["updated_at", "2023-02-17 19:22:05.018630"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:05.020007"], ["updated_at", "2023-02-17 19:22:05.020007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:05.021182"], ["updated_at", "2023-02-17 19:22:05.021182"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:05.022573"], ["updated_at", "2023-02-17 19:22:05.022573"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:05.023755"], ["updated_at", "2023-02-17 19:22:05.023755"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:05.025160"], ["updated_at", "2023-02-17 19:22:05.025160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:05.026391"], ["updated_at", "2023-02-17 19:22:05.026391"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:05.027771"], ["updated_at", "2023-02-17 19:22:05.027771"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:05.028932"], ["updated_at", "2023-02-17 19:22:05.028932"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:05.030290"], ["updated_at", "2023-02-17 19:22:05.030290"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:05.031466"], ["updated_at", "2023-02-17 19:22:05.031466"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:05.032849"], ["updated_at", "2023-02-17 19:22:05.032849"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:05.034105"], ["updated_at", "2023-02-17 19:22:05.034105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:05.035484"], ["updated_at", "2023-02-17 19:22:05.035484"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:05.036720"], ["updated_at", "2023-02-17 19:22:05.036720"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:05.038098"], ["updated_at", "2023-02-17 19:22:05.038098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.039279"], ["updated_at", "2023-02-17 19:22:05.039279"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:05.040654"], ["updated_at", "2023-02-17 19:22:05.040654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:05.041853"], ["updated_at", "2023-02-17 19:22:05.041853"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:05.043250"], ["updated_at", "2023-02-17 19:22:05.043250"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:05.044409"], ["updated_at", "2023-02-17 19:22:05.044409"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:05.045767"], ["updated_at", "2023-02-17 19:22:05.045767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:05.046949"], ["updated_at", "2023-02-17 19:22:05.046949"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:05.048321"], ["updated_at", "2023-02-17 19:22:05.048321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:05.049506"], ["updated_at", "2023-02-17 19:22:05.049506"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:05.050889"], ["updated_at", "2023-02-17 19:22:05.050889"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:05.052103"], ["updated_at", "2023-02-17 19:22:05.052103"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:05.053505"], ["updated_at", "2023-02-17 19:22:05.053505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:05.054739"], ["updated_at", "2023-02-17 19:22:05.054739"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:05.056101"], ["updated_at", "2023-02-17 19:22:05.056101"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:05.057281"], ["updated_at", "2023-02-17 19:22:05.057281"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:05.058629"], ["updated_at", "2023-02-17 19:22:05.058629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:05.059849"], ["updated_at", "2023-02-17 19:22:05.059849"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:05.061258"], ["updated_at", "2023-02-17 19:22:05.061258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:05.062526"], ["updated_at", "2023-02-17 19:22:05.062526"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:05.063897"], ["updated_at", "2023-02-17 19:22:05.063897"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.065061"], ["updated_at", "2023-02-17 19:22:05.065061"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:05.066439"], ["updated_at", "2023-02-17 19:22:05.066439"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:05.067656"], ["updated_at", "2023-02-17 19:22:05.067656"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:05.069020"], ["updated_at", "2023-02-17 19:22:05.069020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:05.070240"], ["updated_at", "2023-02-17 19:22:05.070240"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:05.071607"], ["updated_at", "2023-02-17 19:22:05.071607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.072829"], ["updated_at", "2023-02-17 19:22:05.072829"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:05.074197"], ["updated_at", "2023-02-17 19:22:05.074197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:05.075386"], ["updated_at", "2023-02-17 19:22:05.075386"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:05.076763"], ["updated_at", "2023-02-17 19:22:05.076763"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:05.077982"], ["updated_at", "2023-02-17 19:22:05.077982"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:05.079360"], ["updated_at", "2023-02-17 19:22:05.079360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:05.080529"], ["updated_at", "2023-02-17 19:22:05.080529"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:05.081888"], ["updated_at", "2023-02-17 19:22:05.081888"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:05.083095"], ["updated_at", "2023-02-17 19:22:05.083095"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:05.084499"], ["updated_at", "2023-02-17 19:22:05.084499"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:05.085742"], ["updated_at", "2023-02-17 19:22:05.085742"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:05.087156"], ["updated_at", "2023-02-17 19:22:05.087156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.088401"], ["updated_at", "2023-02-17 19:22:05.088401"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:05.089841"], ["updated_at", "2023-02-17 19:22:05.089841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:05.091059"], ["updated_at", "2023-02-17 19:22:05.091059"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:05.092530"], ["updated_at", "2023-02-17 19:22:05.092530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:05.093753"], ["updated_at", "2023-02-17 19:22:05.093753"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:05.095123"], ["updated_at", "2023-02-17 19:22:05.095123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:05.096278"], ["updated_at", "2023-02-17 19:22:05.096278"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:05.097657"], ["updated_at", "2023-02-17 19:22:05.097657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:05.098872"], ["updated_at", "2023-02-17 19:22:05.098872"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:05.100266"], ["updated_at", "2023-02-17 19:22:05.100266"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:05.101472"], ["updated_at", "2023-02-17 19:22:05.101472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:05.102868"], ["updated_at", "2023-02-17 19:22:05.102868"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:05.104220"], ["updated_at", "2023-02-17 19:22:05.104220"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:05.105671"], ["updated_at", "2023-02-17 19:22:05.105671"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:05.106761"], ["updated_at", "2023-02-17 19:22:05.106761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:05.107993"], ["updated_at", "2023-02-17 19:22:05.107993"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:05.109427"], ["updated_at", "2023-02-17 19:22:05.109427"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:05.111013"], ["updated_at", "2023-02-17 19:22:05.111013"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:05.112424"], ["updated_at", "2023-02-17 19:22:05.112424"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:05.113603"], ["updated_at", "2023-02-17 19:22:05.113603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:05.125168"], ["updated_at", "2023-02-17 19:22:05.125168"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:05.126712"], ["updated_at", "2023-02-17 19:22:05.126712"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:05.127883"], ["updated_at", "2023-02-17 19:22:05.127883"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.128835"], ["updated_at", "2023-02-17 19:22:05.128835"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.129785"], ["updated_at", "2023-02-17 19:22:05.129785"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.130540"], ["updated_at", "2023-02-17 19:22:05.130540"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.131235"], ["updated_at", "2023-02-17 19:22:05.131235"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.131917"], ["updated_at", "2023-02-17 19:22:05.131917"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:05.132970"], ["updated_at", "2023-02-17 19:22:05.132970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.134099"], ["updated_at", "2023-02-17 19:22:05.134099"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.135029"], ["updated_at", "2023-02-17 19:22:05.135029"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.135833"], ["updated_at", "2023-02-17 19:22:05.135833"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.136588"], ["updated_at", "2023-02-17 19:22:05.136588"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.137357"], ["updated_at", "2023-02-17 19:22:05.137357"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.138139"], ["updated_at", "2023-02-17 19:22:05.138139"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.138876"], ["updated_at", "2023-02-17 19:22:05.138876"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.139599"], ["updated_at", "2023-02-17 19:22:05.139599"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.140315"], ["updated_at", "2023-02-17 19:22:05.140315"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.141065"], ["updated_at", "2023-02-17 19:22:05.141065"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.141819"], ["updated_at", "2023-02-17 19:22:05.141819"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.142541"], ["updated_at", "2023-02-17 19:22:05.142541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:05.153935"], ["updated_at", "2023-02-17 19:22:05.153935"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:05.155167"], ["updated_at", "2023-02-17 19:22:05.155167"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:05.156074"], ["updated_at", "2023-02-17 19:22:05.156074"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.156919"], ["updated_at", "2023-02-17 19:22:05.156919"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.157662"], ["updated_at", "2023-02-17 19:22:05.157662"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.158354"], ["updated_at", "2023-02-17 19:22:05.158354"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.159055"], ["updated_at", "2023-02-17 19:22:05.159055"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.159803"], ["updated_at", "2023-02-17 19:22:05.159803"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:05.160563"], ["updated_at", "2023-02-17 19:22:05.160563"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.161444"], ["updated_at", "2023-02-17 19:22:05.161444"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.162290"], ["updated_at", "2023-02-17 19:22:05.162290"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.163074"], ["updated_at", "2023-02-17 19:22:05.163074"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.163828"], ["updated_at", "2023-02-17 19:22:05.163828"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.164577"], ["updated_at", "2023-02-17 19:22:05.164577"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.165548"], ["updated_at", "2023-02-17 19:22:05.165548"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.166719"], ["updated_at", "2023-02-17 19:22:05.166719"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.167709"], ["updated_at", "2023-02-17 19:22:05.167709"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.168538"], ["updated_at", "2023-02-17 19:22:05.168538"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.169314"], ["updated_at", "2023-02-17 19:22:05.169314"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.170067"], ["updated_at", "2023-02-17 19:22:05.170067"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.170829"], ["updated_at", "2023-02-17 19:22:05.170829"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.187966"], ["updated_at", "2023-02-17 19:22:05.187966"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.189118"], ["updated_at", "2023-02-17 19:22:05.189118"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.189971"], ["updated_at", "2023-02-17 19:22:05.189971"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.190698"], ["updated_at", "2023-02-17 19:22:05.190698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.191484"], ["updated_at", "2023-02-17 19:22:05.191484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.192287"], ["updated_at", "2023-02-17 19:22:05.192287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.193025"], ["updated_at", "2023-02-17 19:22:05.193025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.193758"], ["updated_at", "2023-02-17 19:22:05.193758"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.194467"], ["updated_at", "2023-02-17 19:22:05.194467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.195200"], ["updated_at", "2023-02-17 19:22:05.195200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.195942"], ["updated_at", "2023-02-17 19:22:05.195942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.196892"], ["updated_at", "2023-02-17 19:22:05.196892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.197652"], ["updated_at", "2023-02-17 19:22:05.197652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.198390"], ["updated_at", "2023-02-17 19:22:05.198390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.199201"], ["updated_at", "2023-02-17 19:22:05.199201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.200055"], ["updated_at", "2023-02-17 19:22:05.200055"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.216152"], ["updated_at", "2023-02-17 19:22:05.216152"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.217325"], ["updated_at", "2023-02-17 19:22:05.217325"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.218205"], ["updated_at", "2023-02-17 19:22:05.218205"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.218965"], ["updated_at", "2023-02-17 19:22:05.218965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.219763"], ["updated_at", "2023-02-17 19:22:05.219763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.220526"], ["updated_at", "2023-02-17 19:22:05.220526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.221301"], ["updated_at", "2023-02-17 19:22:05.221301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.222051"], ["updated_at", "2023-02-17 19:22:05.222051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.222779"], ["updated_at", "2023-02-17 19:22:05.222779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.223474"], ["updated_at", "2023-02-17 19:22:05.223474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.224167"], ["updated_at", "2023-02-17 19:22:05.224167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.224862"], ["updated_at", "2023-02-17 19:22:05.224862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.225567"], ["updated_at", "2023-02-17 19:22:05.225567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.226279"], ["updated_at", "2023-02-17 19:22:05.226279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.227032"], ["updated_at", "2023-02-17 19:22:05.227032"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.227818"], ["updated_at", "2023-02-17 19:22:05.227818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.243390"], ["updated_at", "2023-02-17 19:22:05.243390"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.244422"], ["updated_at", "2023-02-17 19:22:05.244422"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.245250"], ["updated_at", "2023-02-17 19:22:05.245250"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.246143"], ["updated_at", "2023-02-17 19:22:05.246143"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.247231"], ["updated_at", "2023-02-17 19:22:05.247231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.248050"], ["updated_at", "2023-02-17 19:22:05.248050"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.248763"], ["updated_at", "2023-02-17 19:22:05.248763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.249475"], ["updated_at", "2023-02-17 19:22:05.249475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.250206"], ["updated_at", "2023-02-17 19:22:05.250206"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.250899"], ["updated_at", "2023-02-17 19:22:05.250899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.251614"], ["updated_at", "2023-02-17 19:22:05.251614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.252346"], ["updated_at", "2023-02-17 19:22:05.252346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.253072"], ["updated_at", "2023-02-17 19:22:05.253072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.253781"], ["updated_at", "2023-02-17 19:22:05.253781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.254495"], ["updated_at", "2023-02-17 19:22:05.254495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.255204"], ["updated_at", "2023-02-17 19:22:05.255204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.270690"], ["updated_at", "2023-02-17 19:22:05.270690"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.271670"], ["updated_at", "2023-02-17 19:22:05.271670"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.272438"], ["updated_at", "2023-02-17 19:22:05.272438"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.273183"], ["updated_at", "2023-02-17 19:22:05.273183"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.273969"], ["updated_at", "2023-02-17 19:22:05.273969"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.274728"], ["updated_at", "2023-02-17 19:22:05.274728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.275433"], ["updated_at", "2023-02-17 19:22:05.275433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.276155"], ["updated_at", "2023-02-17 19:22:05.276155"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.276922"], ["updated_at", "2023-02-17 19:22:05.276922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.277624"], ["updated_at", "2023-02-17 19:22:05.277624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.278417"], ["updated_at", "2023-02-17 19:22:05.278417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.279183"], ["updated_at", "2023-02-17 19:22:05.279183"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.279892"], ["updated_at", "2023-02-17 19:22:05.279892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.280622"], ["updated_at", "2023-02-17 19:22:05.280622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.281342"], ["updated_at", "2023-02-17 19:22:05.281342"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.282069"], ["updated_at", "2023-02-17 19:22:05.282069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.297404"], ["updated_at", "2023-02-17 19:22:05.297404"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.298385"], ["updated_at", "2023-02-17 19:22:05.298385"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.299183"], ["updated_at", "2023-02-17 19:22:05.299183"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.299923"], ["updated_at", "2023-02-17 19:22:05.299923"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.300734"], ["updated_at", "2023-02-17 19:22:05.300734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.301490"], ["updated_at", "2023-02-17 19:22:05.301490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.302210"], ["updated_at", "2023-02-17 19:22:05.302210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.302902"], ["updated_at", "2023-02-17 19:22:05.302902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.303622"], ["updated_at", "2023-02-17 19:22:05.303622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.304357"], ["updated_at", "2023-02-17 19:22:05.304357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.305107"], ["updated_at", "2023-02-17 19:22:05.305107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.305798"], ["updated_at", "2023-02-17 19:22:05.305798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.306498"], ["updated_at", "2023-02-17 19:22:05.306498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.307205"], ["updated_at", "2023-02-17 19:22:05.307205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.307923"], ["updated_at", "2023-02-17 19:22:05.307923"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.308632"], ["updated_at", "2023-02-17 19:22:05.308632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.325503"], ["updated_at", "2023-02-17 19:22:05.325503"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.326493"], ["updated_at", "2023-02-17 19:22:05.326493"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.327265"], ["updated_at", "2023-02-17 19:22:05.327265"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.327965"], ["updated_at", "2023-02-17 19:22:05.327965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.328841"], ["updated_at", "2023-02-17 19:22:05.328841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.329650"], ["updated_at", "2023-02-17 19:22:05.329650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.330398"], ["updated_at", "2023-02-17 19:22:05.330398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.331155"], ["updated_at", "2023-02-17 19:22:05.331155"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.331877"], ["updated_at", "2023-02-17 19:22:05.331877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.332568"], ["updated_at", "2023-02-17 19:22:05.332568"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.333341"], ["updated_at", "2023-02-17 19:22:05.333341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.334109"], ["updated_at", "2023-02-17 19:22:05.334109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.334841"], ["updated_at", "2023-02-17 19:22:05.334841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.335541"], ["updated_at", "2023-02-17 19:22:05.335541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.336256"], ["updated_at", "2023-02-17 19:22:05.336256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.336996"], ["updated_at", "2023-02-17 19:22:05.336996"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:22:05 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:05.355153"], ["updated_at", "2023-02-17 19:22:05.355153"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:05.356669"], ["updated_at", "2023-02-17 19:22:05.356669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:05.359564"], ["updated_at", "2023-02-17 19:22:05.359564"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:05.360831"], ["updated_at", "2023-02-17 19:22:05.360831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:05.363740"], ["updated_at", "2023-02-17 19:22:05.363740"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:05.365162"], ["updated_at", "2023-02-17 19:22:05.365162"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:05.367834"], ["updated_at", "2023-02-17 19:22:05.367834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:05.369314"], ["updated_at", "2023-02-17 19:22:05.369314"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:05.370898"], ["updated_at", "2023-02-17 19:22:05.370898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:05.372244"], ["updated_at", "2023-02-17 19:22:05.372244"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:05.373648"], ["updated_at", "2023-02-17 19:22:05.373648"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:05.374854"], ["updated_at", "2023-02-17 19:22:05.374854"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:05.376247"], ["updated_at", "2023-02-17 19:22:05.376247"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:05.377509"], ["updated_at", "2023-02-17 19:22:05.377509"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:05.378979"], ["updated_at", "2023-02-17 19:22:05.378979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:05.380258"], ["updated_at", "2023-02-17 19:22:05.380258"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:05.381777"], ["updated_at", "2023-02-17 19:22:05.381777"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:05.383028"], ["updated_at", "2023-02-17 19:22:05.383028"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:05.384417"], ["updated_at", "2023-02-17 19:22:05.384417"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:05.385630"], ["updated_at", "2023-02-17 19:22:05.385630"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:05.387023"], ["updated_at", "2023-02-17 19:22:05.387023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:05.388270"], ["updated_at", "2023-02-17 19:22:05.388270"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:05.389727"], ["updated_at", "2023-02-17 19:22:05.389727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:05.391002"], ["updated_at", "2023-02-17 19:22:05.391002"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:05.392389"], ["updated_at", "2023-02-17 19:22:05.392389"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:05.393833"], ["updated_at", "2023-02-17 19:22:05.393833"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:05.395493"], ["updated_at", "2023-02-17 19:22:05.395493"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:05.396949"], ["updated_at", "2023-02-17 19:22:05.396949"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:05.398814"], ["updated_at", "2023-02-17 19:22:05.398814"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:05.400153"], ["updated_at", "2023-02-17 19:22:05.400153"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:05.401707"], ["updated_at", "2023-02-17 19:22:05.401707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:05.402940"], ["updated_at", "2023-02-17 19:22:05.402940"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:05.404444"], ["updated_at", "2023-02-17 19:22:05.404444"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:05.406224"], ["updated_at", "2023-02-17 19:22:05.406224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:05.408099"], ["updated_at", "2023-02-17 19:22:05.408099"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:05.409449"], ["updated_at", "2023-02-17 19:22:05.409449"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:05.411067"], ["updated_at", "2023-02-17 19:22:05.411067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:05.412671"], ["updated_at", "2023-02-17 19:22:05.412671"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:05.414179"], ["updated_at", "2023-02-17 19:22:05.414179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:05.415764"], ["updated_at", "2023-02-17 19:22:05.415764"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:05.417547"], ["updated_at", "2023-02-17 19:22:05.417547"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:05.418870"], ["updated_at", "2023-02-17 19:22:05.418870"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:05.420277"], ["updated_at", "2023-02-17 19:22:05.420277"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.421513"], ["updated_at", "2023-02-17 19:22:05.421513"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:05.422950"], ["updated_at", "2023-02-17 19:22:05.422950"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:05.424224"], ["updated_at", "2023-02-17 19:22:05.424224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:05.425693"], ["updated_at", "2023-02-17 19:22:05.425693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:05.426926"], ["updated_at", "2023-02-17 19:22:05.426926"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:05.428328"], ["updated_at", "2023-02-17 19:22:05.428328"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:05.429611"], ["updated_at", "2023-02-17 19:22:05.429611"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:05.431072"], ["updated_at", "2023-02-17 19:22:05.431072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:05.432345"], ["updated_at", "2023-02-17 19:22:05.432345"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:05.434144"], ["updated_at", "2023-02-17 19:22:05.434144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:05.435695"], ["updated_at", "2023-02-17 19:22:05.435695"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:05.437189"], ["updated_at", "2023-02-17 19:22:05.437189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:05.438419"], ["updated_at", "2023-02-17 19:22:05.438419"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:05.439906"], ["updated_at", "2023-02-17 19:22:05.439906"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:05.441241"], ["updated_at", "2023-02-17 19:22:05.441241"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:05.442657"], ["updated_at", "2023-02-17 19:22:05.442657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:05.443909"], ["updated_at", "2023-02-17 19:22:05.443909"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:05.445411"], ["updated_at", "2023-02-17 19:22:05.445411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:05.446716"], ["updated_at", "2023-02-17 19:22:05.446716"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:05.448253"], ["updated_at", "2023-02-17 19:22:05.448253"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.450001"], ["updated_at", "2023-02-17 19:22:05.450001"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:05.451753"], ["updated_at", "2023-02-17 19:22:05.451753"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:05.453005"], ["updated_at", "2023-02-17 19:22:05.453005"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:05.454440"], ["updated_at", "2023-02-17 19:22:05.454440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:05.455672"], ["updated_at", "2023-02-17 19:22:05.455672"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:05.457352"], ["updated_at", "2023-02-17 19:22:05.457352"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.458615"], ["updated_at", "2023-02-17 19:22:05.458615"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:05.460114"], ["updated_at", "2023-02-17 19:22:05.460114"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:05.461408"], ["updated_at", "2023-02-17 19:22:05.461408"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:05.462893"], ["updated_at", "2023-02-17 19:22:05.462893"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:05.464252"], ["updated_at", "2023-02-17 19:22:05.464252"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:05.466172"], ["updated_at", "2023-02-17 19:22:05.466172"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:05.467679"], ["updated_at", "2023-02-17 19:22:05.467679"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:05.469088"], ["updated_at", "2023-02-17 19:22:05.469088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:05.470358"], ["updated_at", "2023-02-17 19:22:05.470358"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:05.471780"], ["updated_at", "2023-02-17 19:22:05.471780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:05.472997"], ["updated_at", "2023-02-17 19:22:05.472997"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:05.474466"], ["updated_at", "2023-02-17 19:22:05.474466"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.475673"], ["updated_at", "2023-02-17 19:22:05.475673"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:05.477117"], ["updated_at", "2023-02-17 19:22:05.477117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:05.478364"], ["updated_at", "2023-02-17 19:22:05.478364"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:05.479828"], ["updated_at", "2023-02-17 19:22:05.479828"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:05.481086"], ["updated_at", "2023-02-17 19:22:05.481086"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:05.482902"], ["updated_at", "2023-02-17 19:22:05.482902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:05.484448"], ["updated_at", "2023-02-17 19:22:05.484448"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:05.485979"], ["updated_at", "2023-02-17 19:22:05.485979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:05.487191"], ["updated_at", "2023-02-17 19:22:05.487191"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:05.488605"], ["updated_at", "2023-02-17 19:22:05.488605"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:05.489876"], ["updated_at", "2023-02-17 19:22:05.489876"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:05.491410"], ["updated_at", "2023-02-17 19:22:05.491410"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:05.492838"], ["updated_at", "2023-02-17 19:22:05.492838"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:05.494433"], ["updated_at", "2023-02-17 19:22:05.494433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:05.495594"], ["updated_at", "2023-02-17 19:22:05.495594"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:05.496846"], ["updated_at", "2023-02-17 19:22:05.496846"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:05.498245"], ["updated_at", "2023-02-17 19:22:05.498245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:05.499775"], ["updated_at", "2023-02-17 19:22:05.499775"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:05.501002"], ["updated_at", "2023-02-17 19:22:05.501002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:05.502019"], ["updated_at", "2023-02-17 19:22:05.502019"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:05.513158"], ["updated_at", "2023-02-17 19:22:05.513158"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:05.514430"], ["updated_at", "2023-02-17 19:22:05.514430"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:05.515463"], ["updated_at", "2023-02-17 19:22:05.515463"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.516343"], ["updated_at", "2023-02-17 19:22:05.516343"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.517176"], ["updated_at", "2023-02-17 19:22:05.517176"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.517885"], ["updated_at", "2023-02-17 19:22:05.517885"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.518557"], ["updated_at", "2023-02-17 19:22:05.518557"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.519253"], ["updated_at", "2023-02-17 19:22:05.519253"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:05.520010"], ["updated_at", "2023-02-17 19:22:05.520010"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.520867"], ["updated_at", "2023-02-17 19:22:05.520867"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.521679"], ["updated_at", "2023-02-17 19:22:05.521679"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.522470"], ["updated_at", "2023-02-17 19:22:05.522470"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.523247"], ["updated_at", "2023-02-17 19:22:05.523247"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.523989"], ["updated_at", "2023-02-17 19:22:05.523989"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.524802"], ["updated_at", "2023-02-17 19:22:05.524802"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.525588"], ["updated_at", "2023-02-17 19:22:05.525588"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.526360"], ["updated_at", "2023-02-17 19:22:05.526360"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.527121"], ["updated_at", "2023-02-17 19:22:05.527121"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.527855"], ["updated_at", "2023-02-17 19:22:05.527855"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.528591"], ["updated_at", "2023-02-17 19:22:05.528591"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.529389"], ["updated_at", "2023-02-17 19:22:05.529389"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:05.540582"], ["updated_at", "2023-02-17 19:22:05.540582"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:05.541836"], ["updated_at", "2023-02-17 19:22:05.541836"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:05.542747"], ["updated_at", "2023-02-17 19:22:05.542747"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.543583"], ["updated_at", "2023-02-17 19:22:05.543583"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.544388"], ["updated_at", "2023-02-17 19:22:05.544388"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.545112"], ["updated_at", "2023-02-17 19:22:05.545112"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.545827"], ["updated_at", "2023-02-17 19:22:05.545827"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.546506"], ["updated_at", "2023-02-17 19:22:05.546506"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:05.547266"], ["updated_at", "2023-02-17 19:22:05.547266"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.548096"], ["updated_at", "2023-02-17 19:22:05.548096"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.548896"], ["updated_at", "2023-02-17 19:22:05.548896"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.549661"], ["updated_at", "2023-02-17 19:22:05.549661"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.550430"], ["updated_at", "2023-02-17 19:22:05.550430"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.551205"], ["updated_at", "2023-02-17 19:22:05.551205"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.551955"], ["updated_at", "2023-02-17 19:22:05.551955"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.552682"], ["updated_at", "2023-02-17 19:22:05.552682"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.553471"], ["updated_at", "2023-02-17 19:22:05.553471"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.554249"], ["updated_at", "2023-02-17 19:22:05.554249"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.555007"], ["updated_at", "2023-02-17 19:22:05.555007"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.555745"], ["updated_at", "2023-02-17 19:22:05.555745"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.556476"], ["updated_at", "2023-02-17 19:22:05.556476"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.572256"], ["updated_at", "2023-02-17 19:22:05.572256"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.573383"], ["updated_at", "2023-02-17 19:22:05.573383"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.574270"], ["updated_at", "2023-02-17 19:22:05.574270"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.575027"], ["updated_at", "2023-02-17 19:22:05.575027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.575819"], ["updated_at", "2023-02-17 19:22:05.575819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.576608"], ["updated_at", "2023-02-17 19:22:05.576608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.577349"], ["updated_at", "2023-02-17 19:22:05.577349"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.578058"], ["updated_at", "2023-02-17 19:22:05.578058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.578762"], ["updated_at", "2023-02-17 19:22:05.578762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.579453"], ["updated_at", "2023-02-17 19:22:05.579453"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.580186"], ["updated_at", "2023-02-17 19:22:05.580186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.580888"], ["updated_at", "2023-02-17 19:22:05.580888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.581615"], ["updated_at", "2023-02-17 19:22:05.581615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.582346"], ["updated_at", "2023-02-17 19:22:05.582346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.583045"], ["updated_at", "2023-02-17 19:22:05.583045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.583787"], ["updated_at", "2023-02-17 19:22:05.583787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.601600"], ["updated_at", "2023-02-17 19:22:05.601600"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.602763"], ["updated_at", "2023-02-17 19:22:05.602763"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.603841"], ["updated_at", "2023-02-17 19:22:05.603841"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.604917"], ["updated_at", "2023-02-17 19:22:05.604917"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.606035"], ["updated_at", "2023-02-17 19:22:05.606035"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.607160"], ["updated_at", "2023-02-17 19:22:05.607160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.608246"], ["updated_at", "2023-02-17 19:22:05.608246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.609378"], ["updated_at", "2023-02-17 19:22:05.609378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.610509"], ["updated_at", "2023-02-17 19:22:05.610509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.611475"], ["updated_at", "2023-02-17 19:22:05.611475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.612400"], ["updated_at", "2023-02-17 19:22:05.612400"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.613476"], ["updated_at", "2023-02-17 19:22:05.613476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.614597"], ["updated_at", "2023-02-17 19:22:05.614597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.615651"], ["updated_at", "2023-02-17 19:22:05.615651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.616754"], ["updated_at", "2023-02-17 19:22:05.616754"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:05.617679"], ["updated_at", "2023-02-17 19:22:05.617679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.634439"], ["updated_at", "2023-02-17 19:22:05.634439"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.635401"], ["updated_at", "2023-02-17 19:22:05.635401"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.636164"], ["updated_at", "2023-02-17 19:22:05.636164"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.636859"], ["updated_at", "2023-02-17 19:22:05.636859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.637614"], ["updated_at", "2023-02-17 19:22:05.637614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.638341"], ["updated_at", "2023-02-17 19:22:05.638341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.639033"], ["updated_at", "2023-02-17 19:22:05.639033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.639721"], ["updated_at", "2023-02-17 19:22:05.639721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.640425"], ["updated_at", "2023-02-17 19:22:05.640425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.641156"], ["updated_at", "2023-02-17 19:22:05.641156"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.641967"], ["updated_at", "2023-02-17 19:22:05.641967"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.642817"], ["updated_at", "2023-02-17 19:22:05.642817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.643626"], ["updated_at", "2023-02-17 19:22:05.643626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.644396"], ["updated_at", "2023-02-17 19:22:05.644396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.645980"], ["updated_at", "2023-02-17 19:22:05.645980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:05.647096"], ["updated_at", "2023-02-17 19:22:05.647096"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.664895"], ["updated_at", "2023-02-17 19:22:05.664895"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.666070"], ["updated_at", "2023-02-17 19:22:05.666070"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.667045"], ["updated_at", "2023-02-17 19:22:05.667045"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.668106"], ["updated_at", "2023-02-17 19:22:05.668106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.669008"], ["updated_at", "2023-02-17 19:22:05.669008"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.669813"], ["updated_at", "2023-02-17 19:22:05.669813"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.670553"], ["updated_at", "2023-02-17 19:22:05.670553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.671269"], ["updated_at", "2023-02-17 19:22:05.671269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.672026"], ["updated_at", "2023-02-17 19:22:05.672026"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.672744"], ["updated_at", "2023-02-17 19:22:05.672744"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.673492"], ["updated_at", "2023-02-17 19:22:05.673492"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.674221"], ["updated_at", "2023-02-17 19:22:05.674221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.674950"], ["updated_at", "2023-02-17 19:22:05.674950"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.675659"], ["updated_at", "2023-02-17 19:22:05.675659"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.676376"], ["updated_at", "2023-02-17 19:22:05.676376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:05.677108"], ["updated_at", "2023-02-17 19:22:05.677108"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.693280"], ["updated_at", "2023-02-17 19:22:05.693280"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.694297"], ["updated_at", "2023-02-17 19:22:05.694297"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.695252"], ["updated_at", "2023-02-17 19:22:05.695252"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.696148"], ["updated_at", "2023-02-17 19:22:05.696148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.696995"], ["updated_at", "2023-02-17 19:22:05.696995"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.697769"], ["updated_at", "2023-02-17 19:22:05.697769"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.698506"], ["updated_at", "2023-02-17 19:22:05.698506"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.699294"], ["updated_at", "2023-02-17 19:22:05.699294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.700051"], ["updated_at", "2023-02-17 19:22:05.700051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.700792"], ["updated_at", "2023-02-17 19:22:05.700792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.701528"], ["updated_at", "2023-02-17 19:22:05.701528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.702283"], ["updated_at", "2023-02-17 19:22:05.702283"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.703040"], ["updated_at", "2023-02-17 19:22:05.703040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.703794"], ["updated_at", "2023-02-17 19:22:05.703794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.704504"], ["updated_at", "2023-02-17 19:22:05.704504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:05.705235"], ["updated_at", "2023-02-17 19:22:05.705235"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.727762"], ["updated_at", "2023-02-17 19:22:05.727762"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.728874"], ["updated_at", "2023-02-17 19:22:05.728874"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.729706"], ["updated_at", "2023-02-17 19:22:05.729706"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.730449"], ["updated_at", "2023-02-17 19:22:05.730449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.731233"], ["updated_at", "2023-02-17 19:22:05.731233"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.731975"], ["updated_at", "2023-02-17 19:22:05.731975"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.732678"], ["updated_at", "2023-02-17 19:22:05.732678"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.733415"], ["updated_at", "2023-02-17 19:22:05.733415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.734143"], ["updated_at", "2023-02-17 19:22:05.734143"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.734873"], ["updated_at", "2023-02-17 19:22:05.734873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.735556"], ["updated_at", "2023-02-17 19:22:05.735556"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.736265"], ["updated_at", "2023-02-17 19:22:05.736265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.736983"], ["updated_at", "2023-02-17 19:22:05.736983"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.737668"], ["updated_at", "2023-02-17 19:22:05.737668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.738379"], ["updated_at", "2023-02-17 19:22:05.738379"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:05.739090"], ["updated_at", "2023-02-17 19:22:05.739090"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:22:05 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:05.747980"], ["updated_at", "2023-02-17 19:22:05.747980"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:05.749447"], ["updated_at", "2023-02-17 19:22:05.749447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:05.752261"], ["updated_at", "2023-02-17 19:22:05.752261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:05.753482"], ["updated_at", "2023-02-17 19:22:05.753482"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:05.756221"], ["updated_at", "2023-02-17 19:22:05.756221"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:05.757385"], ["updated_at", "2023-02-17 19:22:05.757385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:05.759449"], ["updated_at", "2023-02-17 19:22:05.759449"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:05.760913"], ["updated_at", "2023-02-17 19:22:05.760913"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:05.762444"], ["updated_at", "2023-02-17 19:22:05.762444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:05.763745"], ["updated_at", "2023-02-17 19:22:05.763745"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:05.765113"], ["updated_at", "2023-02-17 19:22:05.765113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:05.766328"], ["updated_at", "2023-02-17 19:22:05.766328"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:05.767717"], ["updated_at", "2023-02-17 19:22:05.767717"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:05.768891"], ["updated_at", "2023-02-17 19:22:05.768891"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:05.770287"], ["updated_at", "2023-02-17 19:22:05.770287"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:05.771449"], ["updated_at", "2023-02-17 19:22:05.771449"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:05.772837"], ["updated_at", "2023-02-17 19:22:05.772837"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:05.774067"], ["updated_at", "2023-02-17 19:22:05.774067"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:05.775462"], ["updated_at", "2023-02-17 19:22:05.775462"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:05.776871"], ["updated_at", "2023-02-17 19:22:05.776871"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:05.778857"], ["updated_at", "2023-02-17 19:22:05.778857"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:05.780646"], ["updated_at", "2023-02-17 19:22:05.780646"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:05.782530"], ["updated_at", "2023-02-17 19:22:05.782530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:05.783984"], ["updated_at", "2023-02-17 19:22:05.783984"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:05.785531"], ["updated_at", "2023-02-17 19:22:05.785531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:05.786901"], ["updated_at", "2023-02-17 19:22:05.786901"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:05.788497"], ["updated_at", "2023-02-17 19:22:05.788497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:05.789981"], ["updated_at", "2023-02-17 19:22:05.789981"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:05.791563"], ["updated_at", "2023-02-17 19:22:05.791563"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:05.793143"], ["updated_at", "2023-02-17 19:22:05.793143"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:05.794651"], ["updated_at", "2023-02-17 19:22:05.794651"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:05.796079"], ["updated_at", "2023-02-17 19:22:05.796079"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:05.797552"], ["updated_at", "2023-02-17 19:22:05.797552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:05.798970"], ["updated_at", "2023-02-17 19:22:05.798970"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:05.800601"], ["updated_at", "2023-02-17 19:22:05.800601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:05.801874"], ["updated_at", "2023-02-17 19:22:05.801874"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:05.803245"], ["updated_at", "2023-02-17 19:22:05.803245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:05.804417"], ["updated_at", "2023-02-17 19:22:05.804417"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:05.805804"], ["updated_at", "2023-02-17 19:22:05.805804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:05.807041"], ["updated_at", "2023-02-17 19:22:05.807041"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:05.808383"], ["updated_at", "2023-02-17 19:22:05.808383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:05.809555"], ["updated_at", "2023-02-17 19:22:05.809555"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:05.810931"], ["updated_at", "2023-02-17 19:22:05.810931"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.812389"], ["updated_at", "2023-02-17 19:22:05.812389"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:05.814282"], ["updated_at", "2023-02-17 19:22:05.814282"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:05.815717"], ["updated_at", "2023-02-17 19:22:05.815717"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:05.817154"], ["updated_at", "2023-02-17 19:22:05.817154"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:05.818412"], ["updated_at", "2023-02-17 19:22:05.818412"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:05.819785"], ["updated_at", "2023-02-17 19:22:05.819785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:05.820971"], ["updated_at", "2023-02-17 19:22:05.820971"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:05.822493"], ["updated_at", "2023-02-17 19:22:05.822493"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:05.823834"], ["updated_at", "2023-02-17 19:22:05.823834"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:05.825228"], ["updated_at", "2023-02-17 19:22:05.825228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:05.826413"], ["updated_at", "2023-02-17 19:22:05.826413"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:05.827853"], ["updated_at", "2023-02-17 19:22:05.827853"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:05.829503"], ["updated_at", "2023-02-17 19:22:05.829503"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:05.831100"], ["updated_at", "2023-02-17 19:22:05.831100"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:05.832518"], ["updated_at", "2023-02-17 19:22:05.832518"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:05.834453"], ["updated_at", "2023-02-17 19:22:05.834453"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:05.836091"], ["updated_at", "2023-02-17 19:22:05.836091"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:05.837984"], ["updated_at", "2023-02-17 19:22:05.837984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:05.839276"], ["updated_at", "2023-02-17 19:22:05.839276"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:05.840635"], ["updated_at", "2023-02-17 19:22:05.840635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.841820"], ["updated_at", "2023-02-17 19:22:05.841820"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:05.843184"], ["updated_at", "2023-02-17 19:22:05.843184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:05.844401"], ["updated_at", "2023-02-17 19:22:05.844401"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:05.845942"], ["updated_at", "2023-02-17 19:22:05.845942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:05.847580"], ["updated_at", "2023-02-17 19:22:05.847580"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:05.849361"], ["updated_at", "2023-02-17 19:22:05.849361"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.850780"], ["updated_at", "2023-02-17 19:22:05.850780"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:05.852216"], ["updated_at", "2023-02-17 19:22:05.852216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:05.853404"], ["updated_at", "2023-02-17 19:22:05.853404"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:05.854787"], ["updated_at", "2023-02-17 19:22:05.854787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:05.855968"], ["updated_at", "2023-02-17 19:22:05.855968"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:05.857321"], ["updated_at", "2023-02-17 19:22:05.857321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:05.858515"], ["updated_at", "2023-02-17 19:22:05.858515"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:05.859867"], ["updated_at", "2023-02-17 19:22:05.859867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:05.861178"], ["updated_at", "2023-02-17 19:22:05.861178"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:05.863134"], ["updated_at", "2023-02-17 19:22:05.863134"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:05.864793"], ["updated_at", "2023-02-17 19:22:05.864793"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:05.866632"], ["updated_at", "2023-02-17 19:22:05.866632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:05.867975"], ["updated_at", "2023-02-17 19:22:05.867975"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:05.869455"], ["updated_at", "2023-02-17 19:22:05.869455"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:05.870959"], ["updated_at", "2023-02-17 19:22:05.870959"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:05.872834"], ["updated_at", "2023-02-17 19:22:05.872834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:05.874134"], ["updated_at", "2023-02-17 19:22:05.874134"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:05.875545"], ["updated_at", "2023-02-17 19:22:05.875545"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:05.876712"], ["updated_at", "2023-02-17 19:22:05.876712"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:05.878169"], ["updated_at", "2023-02-17 19:22:05.878169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:05.879644"], ["updated_at", "2023-02-17 19:22:05.879644"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:05.881169"], ["updated_at", "2023-02-17 19:22:05.881169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:05.882465"], ["updated_at", "2023-02-17 19:22:05.882465"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:05.883915"], ["updated_at", "2023-02-17 19:22:05.883915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:05.885145"], ["updated_at", "2023-02-17 19:22:05.885145"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:05.886530"], ["updated_at", "2023-02-17 19:22:05.886530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:05.887630"], ["updated_at", "2023-02-17 19:22:05.887630"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:05.888871"], ["updated_at", "2023-02-17 19:22:05.888871"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:05.890283"], ["updated_at", "2023-02-17 19:22:05.890283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:05.891737"], ["updated_at", "2023-02-17 19:22:05.891737"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:05.892897"], ["updated_at", "2023-02-17 19:22:05.892897"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:05.893943"], ["updated_at", "2023-02-17 19:22:05.893943"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:05.905362"], ["updated_at", "2023-02-17 19:22:05.905362"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:05.906658"], ["updated_at", "2023-02-17 19:22:05.906658"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:05.907618"], ["updated_at", "2023-02-17 19:22:05.907618"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.908481"], ["updated_at", "2023-02-17 19:22:05.908481"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.909281"], ["updated_at", "2023-02-17 19:22:05.909281"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.910020"], ["updated_at", "2023-02-17 19:22:05.910020"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.910762"], ["updated_at", "2023-02-17 19:22:05.910762"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.911576"], ["updated_at", "2023-02-17 19:22:05.911576"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:05.912507"], ["updated_at", "2023-02-17 19:22:05.912507"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.913436"], ["updated_at", "2023-02-17 19:22:05.913436"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.914322"], ["updated_at", "2023-02-17 19:22:05.914322"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.915143"], ["updated_at", "2023-02-17 19:22:05.915143"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.915872"], ["updated_at", "2023-02-17 19:22:05.915872"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.916704"], ["updated_at", "2023-02-17 19:22:05.916704"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.917514"], ["updated_at", "2023-02-17 19:22:05.917514"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.918312"], ["updated_at", "2023-02-17 19:22:05.918312"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.919047"], ["updated_at", "2023-02-17 19:22:05.919047"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.919831"], ["updated_at", "2023-02-17 19:22:05.919831"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.920603"], ["updated_at", "2023-02-17 19:22:05.920603"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.921350"], ["updated_at", "2023-02-17 19:22:05.921350"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.922111"], ["updated_at", "2023-02-17 19:22:05.922111"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:05.933426"], ["updated_at", "2023-02-17 19:22:05.933426"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:05.934662"], ["updated_at", "2023-02-17 19:22:05.934662"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:05.935522"], ["updated_at", "2023-02-17 19:22:05.935522"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.936384"], ["updated_at", "2023-02-17 19:22:05.936384"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.937146"], ["updated_at", "2023-02-17 19:22:05.937146"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.937825"], ["updated_at", "2023-02-17 19:22:05.937825"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.938507"], ["updated_at", "2023-02-17 19:22:05.938507"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:05.939193"], ["updated_at", "2023-02-17 19:22:05.939193"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:05.939967"], ["updated_at", "2023-02-17 19:22:05.939967"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.940859"], ["updated_at", "2023-02-17 19:22:05.940859"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.941675"], ["updated_at", "2023-02-17 19:22:05.941675"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.942432"], ["updated_at", "2023-02-17 19:22:05.942432"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.943173"], ["updated_at", "2023-02-17 19:22:05.943173"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.943929"], ["updated_at", "2023-02-17 19:22:05.943929"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.944675"], ["updated_at", "2023-02-17 19:22:05.944675"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.945513"], ["updated_at", "2023-02-17 19:22:05.945513"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.946334"], ["updated_at", "2023-02-17 19:22:05.946334"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.947166"], ["updated_at", "2023-02-17 19:22:05.947166"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.947940"], ["updated_at", "2023-02-17 19:22:05.947940"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.948680"], ["updated_at", "2023-02-17 19:22:05.948680"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:05.949444"], ["updated_at", "2023-02-17 19:22:05.949444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:05.965598"], ["updated_at", "2023-02-17 19:22:05.965598"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:05.966649"], ["updated_at", "2023-02-17 19:22:05.966649"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:05.967480"], ["updated_at", "2023-02-17 19:22:05.967480"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:05.968199"], ["updated_at", "2023-02-17 19:22:05.968199"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.968990"], ["updated_at", "2023-02-17 19:22:05.968990"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.969819"], ["updated_at", "2023-02-17 19:22:05.969819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.970563"], ["updated_at", "2023-02-17 19:22:05.970563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.971282"], ["updated_at", "2023-02-17 19:22:05.971282"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.971968"], ["updated_at", "2023-02-17 19:22:05.971968"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.972654"], ["updated_at", "2023-02-17 19:22:05.972654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.973357"], ["updated_at", "2023-02-17 19:22:05.973357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.974128"], ["updated_at", "2023-02-17 19:22:05.974128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.974961"], ["updated_at", "2023-02-17 19:22:05.974961"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.976056"], ["updated_at", "2023-02-17 19:22:05.976056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.977169"], ["updated_at", "2023-02-17 19:22:05.977169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:05.978287"], ["updated_at", "2023-02-17 19:22:05.978287"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.000191"], ["updated_at", "2023-02-17 19:22:06.000191"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.001219"], ["updated_at", "2023-02-17 19:22:06.001219"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.002042"], ["updated_at", "2023-02-17 19:22:06.002042"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.002759"], ["updated_at", "2023-02-17 19:22:06.002759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.003495"], ["updated_at", "2023-02-17 19:22:06.003495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.004231"], ["updated_at", "2023-02-17 19:22:06.004231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.004954"], ["updated_at", "2023-02-17 19:22:06.004954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.005635"], ["updated_at", "2023-02-17 19:22:06.005635"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.006336"], ["updated_at", "2023-02-17 19:22:06.006336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.007040"], ["updated_at", "2023-02-17 19:22:06.007040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.007723"], ["updated_at", "2023-02-17 19:22:06.007723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.008424"], ["updated_at", "2023-02-17 19:22:06.008424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.009188"], ["updated_at", "2023-02-17 19:22:06.009188"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.009889"], ["updated_at", "2023-02-17 19:22:06.009889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.010606"], ["updated_at", "2023-02-17 19:22:06.010606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.011294"], ["updated_at", "2023-02-17 19:22:06.011294"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.027383"], ["updated_at", "2023-02-17 19:22:06.027383"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.028587"], ["updated_at", "2023-02-17 19:22:06.028587"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.029493"], ["updated_at", "2023-02-17 19:22:06.029493"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.030270"], ["updated_at", "2023-02-17 19:22:06.030270"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.031177"], ["updated_at", "2023-02-17 19:22:06.031177"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.032303"], ["updated_at", "2023-02-17 19:22:06.032303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.033444"], ["updated_at", "2023-02-17 19:22:06.033444"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.034571"], ["updated_at", "2023-02-17 19:22:06.034571"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.035633"], ["updated_at", "2023-02-17 19:22:06.035633"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.036743"], ["updated_at", "2023-02-17 19:22:06.036743"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.037823"], ["updated_at", "2023-02-17 19:22:06.037823"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.038652"], ["updated_at", "2023-02-17 19:22:06.038652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.039369"], ["updated_at", "2023-02-17 19:22:06.039369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.040083"], ["updated_at", "2023-02-17 19:22:06.040083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.040793"], ["updated_at", "2023-02-17 19:22:06.040793"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.041524"], ["updated_at", "2023-02-17 19:22:06.041524"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.057824"], ["updated_at", "2023-02-17 19:22:06.057824"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.058775"], ["updated_at", "2023-02-17 19:22:06.058775"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.059514"], ["updated_at", "2023-02-17 19:22:06.059514"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.060268"], ["updated_at", "2023-02-17 19:22:06.060268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.061099"], ["updated_at", "2023-02-17 19:22:06.061099"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.061844"], ["updated_at", "2023-02-17 19:22:06.061844"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.062851"], ["updated_at", "2023-02-17 19:22:06.062851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.063934"], ["updated_at", "2023-02-17 19:22:06.063934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.064977"], ["updated_at", "2023-02-17 19:22:06.064977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.065881"], ["updated_at", "2023-02-17 19:22:06.065881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.066620"], ["updated_at", "2023-02-17 19:22:06.066620"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.067342"], ["updated_at", "2023-02-17 19:22:06.067342"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.068094"], ["updated_at", "2023-02-17 19:22:06.068094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.068817"], ["updated_at", "2023-02-17 19:22:06.068817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.069509"], ["updated_at", "2023-02-17 19:22:06.069509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.070226"], ["updated_at", "2023-02-17 19:22:06.070226"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.086147"], ["updated_at", "2023-02-17 19:22:06.086147"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.087125"], ["updated_at", "2023-02-17 19:22:06.087125"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.087900"], ["updated_at", "2023-02-17 19:22:06.087900"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.088579"], ["updated_at", "2023-02-17 19:22:06.088579"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.089349"], ["updated_at", "2023-02-17 19:22:06.089349"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.090086"], ["updated_at", "2023-02-17 19:22:06.090086"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.090822"], ["updated_at", "2023-02-17 19:22:06.090822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.091536"], ["updated_at", "2023-02-17 19:22:06.091536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.092230"], ["updated_at", "2023-02-17 19:22:06.092230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.092951"], ["updated_at", "2023-02-17 19:22:06.092951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.093664"], ["updated_at", "2023-02-17 19:22:06.093664"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.094392"], ["updated_at", "2023-02-17 19:22:06.094392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.095140"], ["updated_at", "2023-02-17 19:22:06.095140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.096064"], ["updated_at", "2023-02-17 19:22:06.096064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.096824"], ["updated_at", "2023-02-17 19:22:06.096824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.097555"], ["updated_at", "2023-02-17 19:22:06.097555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.113867"], ["updated_at", "2023-02-17 19:22:06.113867"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.114902"], ["updated_at", "2023-02-17 19:22:06.114902"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.115651"], ["updated_at", "2023-02-17 19:22:06.115651"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.116380"], ["updated_at", "2023-02-17 19:22:06.116380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.117154"], ["updated_at", "2023-02-17 19:22:06.117154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.117893"], ["updated_at", "2023-02-17 19:22:06.117893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.118608"], ["updated_at", "2023-02-17 19:22:06.118608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.119309"], ["updated_at", "2023-02-17 19:22:06.119309"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.120037"], ["updated_at", "2023-02-17 19:22:06.120037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.120794"], ["updated_at", "2023-02-17 19:22:06.120794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.121503"], ["updated_at", "2023-02-17 19:22:06.121503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.122200"], ["updated_at", "2023-02-17 19:22:06.122200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.122892"], ["updated_at", "2023-02-17 19:22:06.122892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.123572"], ["updated_at", "2023-02-17 19:22:06.123572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.124278"], ["updated_at", "2023-02-17 19:22:06.124278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.124980"], ["updated_at", "2023-02-17 19:22:06.124980"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:22:06 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:06.134239"], ["updated_at", "2023-02-17 19:22:06.134239"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:06.135740"], ["updated_at", "2023-02-17 19:22:06.135740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:06.138589"], ["updated_at", "2023-02-17 19:22:06.138589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:06.139778"], ["updated_at", "2023-02-17 19:22:06.139778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:06.142515"], ["updated_at", "2023-02-17 19:22:06.142515"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:06.143729"], ["updated_at", "2023-02-17 19:22:06.143729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:06.145825"], ["updated_at", "2023-02-17 19:22:06.145825"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:06.147268"], ["updated_at", "2023-02-17 19:22:06.147268"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:06.148860"], ["updated_at", "2023-02-17 19:22:06.148860"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:06.150263"], ["updated_at", "2023-02-17 19:22:06.150263"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:06.151734"], ["updated_at", "2023-02-17 19:22:06.151734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:06.152925"], ["updated_at", "2023-02-17 19:22:06.152925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:06.154312"], ["updated_at", "2023-02-17 19:22:06.154312"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:06.155490"], ["updated_at", "2023-02-17 19:22:06.155490"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:06.156889"], ["updated_at", "2023-02-17 19:22:06.156889"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:06.158100"], ["updated_at", "2023-02-17 19:22:06.158100"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:06.159454"], ["updated_at", "2023-02-17 19:22:06.159454"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:06.160638"], ["updated_at", "2023-02-17 19:22:06.160638"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:06.162043"], ["updated_at", "2023-02-17 19:22:06.162043"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:06.163236"], ["updated_at", "2023-02-17 19:22:06.163236"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:06.164664"], ["updated_at", "2023-02-17 19:22:06.164664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:06.165885"], ["updated_at", "2023-02-17 19:22:06.165885"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:06.167252"], ["updated_at", "2023-02-17 19:22:06.167252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:06.168423"], ["updated_at", "2023-02-17 19:22:06.168423"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:06.169791"], ["updated_at", "2023-02-17 19:22:06.169791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:06.171049"], ["updated_at", "2023-02-17 19:22:06.171049"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:06.172458"], ["updated_at", "2023-02-17 19:22:06.172458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:06.173664"], ["updated_at", "2023-02-17 19:22:06.173664"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:06.175038"], ["updated_at", "2023-02-17 19:22:06.175038"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:06.176199"], ["updated_at", "2023-02-17 19:22:06.176199"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:06.179570"], ["updated_at", "2023-02-17 19:22:06.179570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:06.181176"], ["updated_at", "2023-02-17 19:22:06.181176"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:06.182984"], ["updated_at", "2023-02-17 19:22:06.182984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:06.184461"], ["updated_at", "2023-02-17 19:22:06.184461"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:06.185996"], ["updated_at", "2023-02-17 19:22:06.185996"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:06.187247"], ["updated_at", "2023-02-17 19:22:06.187247"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:06.188588"], ["updated_at", "2023-02-17 19:22:06.188588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:06.189937"], ["updated_at", "2023-02-17 19:22:06.189937"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:06.191384"], ["updated_at", "2023-02-17 19:22:06.191384"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:06.192580"], ["updated_at", "2023-02-17 19:22:06.192580"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:06.193931"], ["updated_at", "2023-02-17 19:22:06.193931"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:06.195103"], ["updated_at", "2023-02-17 19:22:06.195103"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:06.196555"], ["updated_at", "2023-02-17 19:22:06.196555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:06.197800"], ["updated_at", "2023-02-17 19:22:06.197800"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:06.200279"], ["updated_at", "2023-02-17 19:22:06.200279"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:06.201673"], ["updated_at", "2023-02-17 19:22:06.201673"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:06.203184"], ["updated_at", "2023-02-17 19:22:06.203184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:06.204431"], ["updated_at", "2023-02-17 19:22:06.204431"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:06.205817"], ["updated_at", "2023-02-17 19:22:06.205817"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:06.207084"], ["updated_at", "2023-02-17 19:22:06.207084"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:06.208493"], ["updated_at", "2023-02-17 19:22:06.208493"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:06.210119"], ["updated_at", "2023-02-17 19:22:06.210119"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:06.211755"], ["updated_at", "2023-02-17 19:22:06.211755"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:06.212980"], ["updated_at", "2023-02-17 19:22:06.212980"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:06.214350"], ["updated_at", "2023-02-17 19:22:06.214350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:06.215512"], ["updated_at", "2023-02-17 19:22:06.215512"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:06.217039"], ["updated_at", "2023-02-17 19:22:06.217039"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:06.218284"], ["updated_at", "2023-02-17 19:22:06.218284"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:06.219800"], ["updated_at", "2023-02-17 19:22:06.219800"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:06.221017"], ["updated_at", "2023-02-17 19:22:06.221017"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:06.222358"], ["updated_at", "2023-02-17 19:22:06.222358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:06.223507"], ["updated_at", "2023-02-17 19:22:06.223507"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:06.224856"], ["updated_at", "2023-02-17 19:22:06.224856"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:06.226213"], ["updated_at", "2023-02-17 19:22:06.226213"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:06.227601"], ["updated_at", "2023-02-17 19:22:06.227601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:06.229057"], ["updated_at", "2023-02-17 19:22:06.229057"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:06.231040"], ["updated_at", "2023-02-17 19:22:06.231040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:06.232616"], ["updated_at", "2023-02-17 19:22:06.232616"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:06.234280"], ["updated_at", "2023-02-17 19:22:06.234280"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:06.235853"], ["updated_at", "2023-02-17 19:22:06.235853"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:06.237245"], ["updated_at", "2023-02-17 19:22:06.237245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:06.238520"], ["updated_at", "2023-02-17 19:22:06.238520"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:06.240339"], ["updated_at", "2023-02-17 19:22:06.240339"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:06.241599"], ["updated_at", "2023-02-17 19:22:06.241599"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:06.242942"], ["updated_at", "2023-02-17 19:22:06.242942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:06.244089"], ["updated_at", "2023-02-17 19:22:06.244089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:06.245427"], ["updated_at", "2023-02-17 19:22:06.245427"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:06.246689"], ["updated_at", "2023-02-17 19:22:06.246689"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:06.248074"], ["updated_at", "2023-02-17 19:22:06.248074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:06.249456"], ["updated_at", "2023-02-17 19:22:06.249456"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:06.251474"], ["updated_at", "2023-02-17 19:22:06.251474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:06.252938"], ["updated_at", "2023-02-17 19:22:06.252938"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:06.254571"], ["updated_at", "2023-02-17 19:22:06.254571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:06.255817"], ["updated_at", "2023-02-17 19:22:06.255817"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:06.257357"], ["updated_at", "2023-02-17 19:22:06.257357"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:06.258638"], ["updated_at", "2023-02-17 19:22:06.258638"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:06.260488"], ["updated_at", "2023-02-17 19:22:06.260488"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:06.261931"], ["updated_at", "2023-02-17 19:22:06.261931"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:06.263347"], ["updated_at", "2023-02-17 19:22:06.263347"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:06.264507"], ["updated_at", "2023-02-17 19:22:06.264507"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:06.265832"], ["updated_at", "2023-02-17 19:22:06.265832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:06.267100"], ["updated_at", "2023-02-17 19:22:06.267100"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:06.268465"], ["updated_at", "2023-02-17 19:22:06.268465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:06.270231"], ["updated_at", "2023-02-17 19:22:06.270231"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:06.271682"], ["updated_at", "2023-02-17 19:22:06.271682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:06.272748"], ["updated_at", "2023-02-17 19:22:06.272748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:06.274115"], ["updated_at", "2023-02-17 19:22:06.274115"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:06.275761"], ["updated_at", "2023-02-17 19:22:06.275761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:06.277339"], ["updated_at", "2023-02-17 19:22:06.277339"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:06.278524"], ["updated_at", "2023-02-17 19:22:06.278524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:06.279695"], ["updated_at", "2023-02-17 19:22:06.279695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:06.291766"], ["updated_at", "2023-02-17 19:22:06.291766"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:06.293122"], ["updated_at", "2023-02-17 19:22:06.293122"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:06.294130"], ["updated_at", "2023-02-17 19:22:06.294130"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.294987"], ["updated_at", "2023-02-17 19:22:06.294987"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.295748"], ["updated_at", "2023-02-17 19:22:06.295748"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.296431"], ["updated_at", "2023-02-17 19:22:06.296431"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.297143"], ["updated_at", "2023-02-17 19:22:06.297143"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.297831"], ["updated_at", "2023-02-17 19:22:06.297831"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:06.298565"], ["updated_at", "2023-02-17 19:22:06.298565"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.299977"], ["updated_at", "2023-02-17 19:22:06.299977"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.300985"], ["updated_at", "2023-02-17 19:22:06.300985"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.301748"], ["updated_at", "2023-02-17 19:22:06.301748"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.302465"], ["updated_at", "2023-02-17 19:22:06.302465"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.303181"], ["updated_at", "2023-02-17 19:22:06.303181"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.303905"], ["updated_at", "2023-02-17 19:22:06.303905"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.304648"], ["updated_at", "2023-02-17 19:22:06.304648"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.305404"], ["updated_at", "2023-02-17 19:22:06.305404"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.306186"], ["updated_at", "2023-02-17 19:22:06.306186"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.306961"], ["updated_at", "2023-02-17 19:22:06.306961"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.307734"], ["updated_at", "2023-02-17 19:22:06.307734"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.308462"], ["updated_at", "2023-02-17 19:22:06.308462"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:06.320125"], ["updated_at", "2023-02-17 19:22:06.320125"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:06.321598"], ["updated_at", "2023-02-17 19:22:06.321598"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:06.322565"], ["updated_at", "2023-02-17 19:22:06.322565"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:06.323415"], ["updated_at", "2023-02-17 19:22:06.323415"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:06.324143"], ["updated_at", "2023-02-17 19:22:06.324143"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:06.324809"], ["updated_at", "2023-02-17 19:22:06.324809"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:06.325493"], ["updated_at", "2023-02-17 19:22:06.325493"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:06.326174"], ["updated_at", "2023-02-17 19:22:06.326174"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:06.326908"], ["updated_at", "2023-02-17 19:22:06.326908"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.327722"], ["updated_at", "2023-02-17 19:22:06.327722"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.328485"], ["updated_at", "2023-02-17 19:22:06.328485"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.329674"], ["updated_at", "2023-02-17 19:22:06.329674"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.330672"], ["updated_at", "2023-02-17 19:22:06.330672"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.331475"], ["updated_at", "2023-02-17 19:22:06.331475"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.332231"], ["updated_at", "2023-02-17 19:22:06.332231"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.333064"], ["updated_at", "2023-02-17 19:22:06.333064"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.333820"], ["updated_at", "2023-02-17 19:22:06.333820"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.334544"], ["updated_at", "2023-02-17 19:22:06.334544"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.335317"], ["updated_at", "2023-02-17 19:22:06.335317"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.336181"], ["updated_at", "2023-02-17 19:22:06.336181"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.337042"], ["updated_at", "2023-02-17 19:22:06.337042"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.353763"], ["updated_at", "2023-02-17 19:22:06.353763"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.354795"], ["updated_at", "2023-02-17 19:22:06.354795"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.355607"], ["updated_at", "2023-02-17 19:22:06.355607"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.356307"], ["updated_at", "2023-02-17 19:22:06.356307"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.357061"], ["updated_at", "2023-02-17 19:22:06.357061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.357851"], ["updated_at", "2023-02-17 19:22:06.357851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.358763"], ["updated_at", "2023-02-17 19:22:06.358763"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.359756"], ["updated_at", "2023-02-17 19:22:06.359756"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.360729"], ["updated_at", "2023-02-17 19:22:06.360729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.361469"], ["updated_at", "2023-02-17 19:22:06.361469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.362200"], ["updated_at", "2023-02-17 19:22:06.362200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.362882"], ["updated_at", "2023-02-17 19:22:06.362882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.363566"], ["updated_at", "2023-02-17 19:22:06.363566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.364245"], ["updated_at", "2023-02-17 19:22:06.364245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.364932"], ["updated_at", "2023-02-17 19:22:06.364932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.365676"], ["updated_at", "2023-02-17 19:22:06.365676"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.381654"], ["updated_at", "2023-02-17 19:22:06.381654"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.382688"], ["updated_at", "2023-02-17 19:22:06.382688"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.383444"], ["updated_at", "2023-02-17 19:22:06.383444"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.384126"], ["updated_at", "2023-02-17 19:22:06.384126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.384873"], ["updated_at", "2023-02-17 19:22:06.384873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.385590"], ["updated_at", "2023-02-17 19:22:06.385590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.386265"], ["updated_at", "2023-02-17 19:22:06.386265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.386972"], ["updated_at", "2023-02-17 19:22:06.386972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.387649"], ["updated_at", "2023-02-17 19:22:06.387649"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.388382"], ["updated_at", "2023-02-17 19:22:06.388382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.389145"], ["updated_at", "2023-02-17 19:22:06.389145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.390236"], ["updated_at", "2023-02-17 19:22:06.390236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.391061"], ["updated_at", "2023-02-17 19:22:06.391061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.391757"], ["updated_at", "2023-02-17 19:22:06.391757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.392452"], ["updated_at", "2023-02-17 19:22:06.392452"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.393149"], ["updated_at", "2023-02-17 19:22:06.393149"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.408814"], ["updated_at", "2023-02-17 19:22:06.408814"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.409957"], ["updated_at", "2023-02-17 19:22:06.409957"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.410947"], ["updated_at", "2023-02-17 19:22:06.410947"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.411699"], ["updated_at", "2023-02-17 19:22:06.411699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.412469"], ["updated_at", "2023-02-17 19:22:06.412469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.413197"], ["updated_at", "2023-02-17 19:22:06.413197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.413947"], ["updated_at", "2023-02-17 19:22:06.413947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.414663"], ["updated_at", "2023-02-17 19:22:06.414663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.415341"], ["updated_at", "2023-02-17 19:22:06.415341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.416106"], ["updated_at", "2023-02-17 19:22:06.416106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.416819"], ["updated_at", "2023-02-17 19:22:06.416819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.417514"], ["updated_at", "2023-02-17 19:22:06.417514"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.418221"], ["updated_at", "2023-02-17 19:22:06.418221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.419061"], ["updated_at", "2023-02-17 19:22:06.419061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.420130"], ["updated_at", "2023-02-17 19:22:06.420130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.421129"], ["updated_at", "2023-02-17 19:22:06.421129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.436604"], ["updated_at", "2023-02-17 19:22:06.436604"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.437673"], ["updated_at", "2023-02-17 19:22:06.437673"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.438809"], ["updated_at", "2023-02-17 19:22:06.438809"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.439922"], ["updated_at", "2023-02-17 19:22:06.439922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.441022"], ["updated_at", "2023-02-17 19:22:06.441022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.441839"], ["updated_at", "2023-02-17 19:22:06.441839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.442574"], ["updated_at", "2023-02-17 19:22:06.442574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.443278"], ["updated_at", "2023-02-17 19:22:06.443278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.443952"], ["updated_at", "2023-02-17 19:22:06.443952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.444644"], ["updated_at", "2023-02-17 19:22:06.444644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.445409"], ["updated_at", "2023-02-17 19:22:06.445409"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.446145"], ["updated_at", "2023-02-17 19:22:06.446145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.446867"], ["updated_at", "2023-02-17 19:22:06.446867"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.447557"], ["updated_at", "2023-02-17 19:22:06.447557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.448225"], ["updated_at", "2023-02-17 19:22:06.448225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.448930"], ["updated_at", "2023-02-17 19:22:06.448930"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.465744"], ["updated_at", "2023-02-17 19:22:06.465744"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.466867"], ["updated_at", "2023-02-17 19:22:06.466867"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.467627"], ["updated_at", "2023-02-17 19:22:06.467627"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.468313"], ["updated_at", "2023-02-17 19:22:06.468313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.469057"], ["updated_at", "2023-02-17 19:22:06.469057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.469843"], ["updated_at", "2023-02-17 19:22:06.469843"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.470940"], ["updated_at", "2023-02-17 19:22:06.470940"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.471964"], ["updated_at", "2023-02-17 19:22:06.471964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.473208"], ["updated_at", "2023-02-17 19:22:06.473208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.474181"], ["updated_at", "2023-02-17 19:22:06.474181"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.475002"], ["updated_at", "2023-02-17 19:22:06.475002"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.475700"], ["updated_at", "2023-02-17 19:22:06.475700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.476386"], ["updated_at", "2023-02-17 19:22:06.476386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.477085"], ["updated_at", "2023-02-17 19:22:06.477085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.477773"], ["updated_at", "2023-02-17 19:22:06.477773"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.478520"], ["updated_at", "2023-02-17 19:22:06.478520"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.495311"], ["updated_at", "2023-02-17 19:22:06.495311"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.496307"], ["updated_at", "2023-02-17 19:22:06.496307"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.497240"], ["updated_at", "2023-02-17 19:22:06.497240"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.498007"], ["updated_at", "2023-02-17 19:22:06.498007"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.498815"], ["updated_at", "2023-02-17 19:22:06.498815"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.500091"], ["updated_at", "2023-02-17 19:22:06.500091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.501349"], ["updated_at", "2023-02-17 19:22:06.501349"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.502296"], ["updated_at", "2023-02-17 19:22:06.502296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.503084"], ["updated_at", "2023-02-17 19:22:06.503084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.503862"], ["updated_at", "2023-02-17 19:22:06.503862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.504583"], ["updated_at", "2023-02-17 19:22:06.504583"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.505305"], ["updated_at", "2023-02-17 19:22:06.505305"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.506027"], ["updated_at", "2023-02-17 19:22:06.506027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.506702"], ["updated_at", "2023-02-17 19:22:06.506702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.507464"], ["updated_at", "2023-02-17 19:22:06.507464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.508209"], ["updated_at", "2023-02-17 19:22:06.508209"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:22:06 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:06.518297"], ["updated_at", "2023-02-17 19:22:06.518297"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:06.519781"], ["updated_at", "2023-02-17 19:22:06.519781"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:06.523144"], ["updated_at", "2023-02-17 19:22:06.523144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:06.524443"], ["updated_at", "2023-02-17 19:22:06.524443"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:06.527325"], ["updated_at", "2023-02-17 19:22:06.527325"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:06.528478"], ["updated_at", "2023-02-17 19:22:06.528478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:06.530938"], ["updated_at", "2023-02-17 19:22:06.530938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:06.532789"], ["updated_at", "2023-02-17 19:22:06.532789"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:06.535282"], ["updated_at", "2023-02-17 19:22:06.535282"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:06.536972"], ["updated_at", "2023-02-17 19:22:06.536972"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:06.538537"], ["updated_at", "2023-02-17 19:22:06.538537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:06.539877"], ["updated_at", "2023-02-17 19:22:06.539877"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:06.541328"], ["updated_at", "2023-02-17 19:22:06.541328"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:06.542613"], ["updated_at", "2023-02-17 19:22:06.542613"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:06.543974"], ["updated_at", "2023-02-17 19:22:06.543974"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:06.545148"], ["updated_at", "2023-02-17 19:22:06.545148"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:06.546612"], ["updated_at", "2023-02-17 19:22:06.546612"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:06.547795"], ["updated_at", "2023-02-17 19:22:06.547795"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:06.549172"], ["updated_at", "2023-02-17 19:22:06.549172"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:06.550874"], ["updated_at", "2023-02-17 19:22:06.550874"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:06.552259"], ["updated_at", "2023-02-17 19:22:06.552259"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:06.553487"], ["updated_at", "2023-02-17 19:22:06.553487"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:06.554997"], ["updated_at", "2023-02-17 19:22:06.554997"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:06.556181"], ["updated_at", "2023-02-17 19:22:06.556181"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:06.557572"], ["updated_at", "2023-02-17 19:22:06.557572"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:06.558867"], ["updated_at", "2023-02-17 19:22:06.558867"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:06.560262"], ["updated_at", "2023-02-17 19:22:06.560262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:06.561547"], ["updated_at", "2023-02-17 19:22:06.561547"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:06.563043"], ["updated_at", "2023-02-17 19:22:06.563043"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:06.564248"], ["updated_at", "2023-02-17 19:22:06.564248"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:06.565620"], ["updated_at", "2023-02-17 19:22:06.565620"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:06.567022"], ["updated_at", "2023-02-17 19:22:06.567022"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:06.568474"], ["updated_at", "2023-02-17 19:22:06.568474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:06.569693"], ["updated_at", "2023-02-17 19:22:06.569693"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:06.571170"], ["updated_at", "2023-02-17 19:22:06.571170"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:06.572356"], ["updated_at", "2023-02-17 19:22:06.572356"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:06.573703"], ["updated_at", "2023-02-17 19:22:06.573703"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:06.574955"], ["updated_at", "2023-02-17 19:22:06.574955"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:06.576375"], ["updated_at", "2023-02-17 19:22:06.576375"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:06.577550"], ["updated_at", "2023-02-17 19:22:06.577550"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:06.578977"], ["updated_at", "2023-02-17 19:22:06.578977"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:06.580205"], ["updated_at", "2023-02-17 19:22:06.580205"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:06.581583"], ["updated_at", "2023-02-17 19:22:06.581583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:06.582919"], ["updated_at", "2023-02-17 19:22:06.582919"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:06.584406"], ["updated_at", "2023-02-17 19:22:06.584406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:06.585608"], ["updated_at", "2023-02-17 19:22:06.585608"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:06.587004"], ["updated_at", "2023-02-17 19:22:06.587004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:06.588249"], ["updated_at", "2023-02-17 19:22:06.588249"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:06.589675"], ["updated_at", "2023-02-17 19:22:06.589675"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:06.590947"], ["updated_at", "2023-02-17 19:22:06.590947"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:06.592418"], ["updated_at", "2023-02-17 19:22:06.592418"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:06.593602"], ["updated_at", "2023-02-17 19:22:06.593602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:06.594964"], ["updated_at", "2023-02-17 19:22:06.594964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:06.596413"], ["updated_at", "2023-02-17 19:22:06.596413"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:06.597857"], ["updated_at", "2023-02-17 19:22:06.597857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:06.599128"], ["updated_at", "2023-02-17 19:22:06.599128"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:06.601540"], ["updated_at", "2023-02-17 19:22:06.601540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:06.602770"], ["updated_at", "2023-02-17 19:22:06.602770"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:06.604250"], ["updated_at", "2023-02-17 19:22:06.604250"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:06.605906"], ["updated_at", "2023-02-17 19:22:06.605906"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:06.607392"], ["updated_at", "2023-02-17 19:22:06.607392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:06.608709"], ["updated_at", "2023-02-17 19:22:06.608709"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:06.610106"], ["updated_at", "2023-02-17 19:22:06.610106"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:06.611283"], ["updated_at", "2023-02-17 19:22:06.611283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:06.612758"], ["updated_at", "2023-02-17 19:22:06.612758"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:06.614164"], ["updated_at", "2023-02-17 19:22:06.614164"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:06.615584"], ["updated_at", "2023-02-17 19:22:06.615584"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:06.617802"], ["updated_at", "2023-02-17 19:22:06.617802"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:06.619292"], ["updated_at", "2023-02-17 19:22:06.619292"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:06.620622"], ["updated_at", "2023-02-17 19:22:06.620622"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:06.622311"], ["updated_at", "2023-02-17 19:22:06.622311"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:06.623615"], ["updated_at", "2023-02-17 19:22:06.623615"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:06.625138"], ["updated_at", "2023-02-17 19:22:06.625138"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:06.626371"], ["updated_at", "2023-02-17 19:22:06.626371"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:06.627702"], ["updated_at", "2023-02-17 19:22:06.627702"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:06.628984"], ["updated_at", "2023-02-17 19:22:06.628984"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:06.630586"], ["updated_at", "2023-02-17 19:22:06.630586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:06.631854"], ["updated_at", "2023-02-17 19:22:06.631854"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:06.634182"], ["updated_at", "2023-02-17 19:22:06.634182"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:06.635525"], ["updated_at", "2023-02-17 19:22:06.635525"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:06.636954"], ["updated_at", "2023-02-17 19:22:06.636954"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:06.638203"], ["updated_at", "2023-02-17 19:22:06.638203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:06.640047"], ["updated_at", "2023-02-17 19:22:06.640047"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:06.641377"], ["updated_at", "2023-02-17 19:22:06.641377"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:06.642794"], ["updated_at", "2023-02-17 19:22:06.642794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:06.643964"], ["updated_at", "2023-02-17 19:22:06.643964"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:06.645434"], ["updated_at", "2023-02-17 19:22:06.645434"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:06.646920"], ["updated_at", "2023-02-17 19:22:06.646920"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:06.648313"], ["updated_at", "2023-02-17 19:22:06.648313"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:06.650026"], ["updated_at", "2023-02-17 19:22:06.650026"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:06.652063"], ["updated_at", "2023-02-17 19:22:06.652063"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:06.653336"], ["updated_at", "2023-02-17 19:22:06.653336"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:06.654819"], ["updated_at", "2023-02-17 19:22:06.654819"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:06.656489"], ["updated_at", "2023-02-17 19:22:06.656489"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:06.658027"], ["updated_at", "2023-02-17 19:22:06.658027"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:06.659176"], ["updated_at", "2023-02-17 19:22:06.659176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:06.660435"], ["updated_at", "2023-02-17 19:22:06.660435"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:06.662204"], ["updated_at", "2023-02-17 19:22:06.662204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:06.663926"], ["updated_at", "2023-02-17 19:22:06.663926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:06.665174"], ["updated_at", "2023-02-17 19:22:06.665174"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:06.667485"], ["updated_at", "2023-02-17 19:22:06.667485"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:06.679524"], ["updated_at", "2023-02-17 19:22:06.679524"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:06.680868"], ["updated_at", "2023-02-17 19:22:06.680868"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:06.681862"], ["updated_at", "2023-02-17 19:22:06.681862"]]
QuestionOption Create (0.6ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.683404"], ["updated_at", "2023-02-17 19:22:06.683404"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.684750"], ["updated_at", "2023-02-17 19:22:06.684750"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.685516"], ["updated_at", "2023-02-17 19:22:06.685516"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.686352"], ["updated_at", "2023-02-17 19:22:06.686352"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.687125"], ["updated_at", "2023-02-17 19:22:06.687125"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:06.687917"], ["updated_at", "2023-02-17 19:22:06.687917"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.689217"], ["updated_at", "2023-02-17 19:22:06.689217"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.690170"], ["updated_at", "2023-02-17 19:22:06.690170"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.691063"], ["updated_at", "2023-02-17 19:22:06.691063"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.691860"], ["updated_at", "2023-02-17 19:22:06.691860"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.692594"], ["updated_at", "2023-02-17 19:22:06.692594"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.693348"], ["updated_at", "2023-02-17 19:22:06.693348"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.694135"], ["updated_at", "2023-02-17 19:22:06.694135"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.694944"], ["updated_at", "2023-02-17 19:22:06.694944"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.695748"], ["updated_at", "2023-02-17 19:22:06.695748"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.696619"], ["updated_at", "2023-02-17 19:22:06.696619"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.697510"], ["updated_at", "2023-02-17 19:22:06.697510"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.698462"], ["updated_at", "2023-02-17 19:22:06.698462"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:06.711289"], ["updated_at", "2023-02-17 19:22:06.711289"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:06.712612"], ["updated_at", "2023-02-17 19:22:06.712612"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:06.713583"], ["updated_at", "2023-02-17 19:22:06.713583"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:06.714648"], ["updated_at", "2023-02-17 19:22:06.714648"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:06.715560"], ["updated_at", "2023-02-17 19:22:06.715560"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:06.717523"], ["updated_at", "2023-02-17 19:22:06.717523"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:06.718468"], ["updated_at", "2023-02-17 19:22:06.718468"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:06.719338"], ["updated_at", "2023-02-17 19:22:06.719338"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:06.720163"], ["updated_at", "2023-02-17 19:22:06.720163"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.721115"], ["updated_at", "2023-02-17 19:22:06.721115"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.722228"], ["updated_at", "2023-02-17 19:22:06.722228"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.723023"], ["updated_at", "2023-02-17 19:22:06.723023"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.723801"], ["updated_at", "2023-02-17 19:22:06.723801"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.724589"], ["updated_at", "2023-02-17 19:22:06.724589"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.725367"], ["updated_at", "2023-02-17 19:22:06.725367"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.726105"], ["updated_at", "2023-02-17 19:22:06.726105"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.726849"], ["updated_at", "2023-02-17 19:22:06.726849"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.727576"], ["updated_at", "2023-02-17 19:22:06.727576"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.728378"], ["updated_at", "2023-02-17 19:22:06.728378"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.729328"], ["updated_at", "2023-02-17 19:22:06.729328"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:06.730114"], ["updated_at", "2023-02-17 19:22:06.730114"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.747604"], ["updated_at", "2023-02-17 19:22:06.747604"]]
QuestionAnswer Create (0.5ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.748695"], ["updated_at", "2023-02-17 19:22:06.748695"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.750034"], ["updated_at", "2023-02-17 19:22:06.750034"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.751279"], ["updated_at", "2023-02-17 19:22:06.751279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.752098"], ["updated_at", "2023-02-17 19:22:06.752098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.752928"], ["updated_at", "2023-02-17 19:22:06.752928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.753691"], ["updated_at", "2023-02-17 19:22:06.753691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.754404"], ["updated_at", "2023-02-17 19:22:06.754404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.755398"], ["updated_at", "2023-02-17 19:22:06.755398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.756164"], ["updated_at", "2023-02-17 19:22:06.756164"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.756930"], ["updated_at", "2023-02-17 19:22:06.756930"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.757715"], ["updated_at", "2023-02-17 19:22:06.757715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.758440"], ["updated_at", "2023-02-17 19:22:06.758440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.759134"], ["updated_at", "2023-02-17 19:22:06.759134"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.759822"], ["updated_at", "2023-02-17 19:22:06.759822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:06.760506"], ["updated_at", "2023-02-17 19:22:06.760506"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.777355"], ["updated_at", "2023-02-17 19:22:06.777355"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.778383"], ["updated_at", "2023-02-17 19:22:06.778383"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.779358"], ["updated_at", "2023-02-17 19:22:06.779358"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.780123"], ["updated_at", "2023-02-17 19:22:06.780123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.780889"], ["updated_at", "2023-02-17 19:22:06.780889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.781653"], ["updated_at", "2023-02-17 19:22:06.781653"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.782432"], ["updated_at", "2023-02-17 19:22:06.782432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.783597"], ["updated_at", "2023-02-17 19:22:06.783597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.784808"], ["updated_at", "2023-02-17 19:22:06.784808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.785551"], ["updated_at", "2023-02-17 19:22:06.785551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.786321"], ["updated_at", "2023-02-17 19:22:06.786321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.787058"], ["updated_at", "2023-02-17 19:22:06.787058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.787746"], ["updated_at", "2023-02-17 19:22:06.787746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.788716"], ["updated_at", "2023-02-17 19:22:06.788716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.789475"], ["updated_at", "2023-02-17 19:22:06.789475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:06.790240"], ["updated_at", "2023-02-17 19:22:06.790240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.807374"], ["updated_at", "2023-02-17 19:22:06.807374"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.808364"], ["updated_at", "2023-02-17 19:22:06.808364"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.809136"], ["updated_at", "2023-02-17 19:22:06.809136"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.809836"], ["updated_at", "2023-02-17 19:22:06.809836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.810596"], ["updated_at", "2023-02-17 19:22:06.810596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.811438"], ["updated_at", "2023-02-17 19:22:06.811438"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.812170"], ["updated_at", "2023-02-17 19:22:06.812170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.812856"], ["updated_at", "2023-02-17 19:22:06.812856"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.813550"], ["updated_at", "2023-02-17 19:22:06.813550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.814226"], ["updated_at", "2023-02-17 19:22:06.814226"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.814934"], ["updated_at", "2023-02-17 19:22:06.814934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.815692"], ["updated_at", "2023-02-17 19:22:06.815692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.816819"], ["updated_at", "2023-02-17 19:22:06.816819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.817564"], ["updated_at", "2023-02-17 19:22:06.817564"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.818261"], ["updated_at", "2023-02-17 19:22:06.818261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:06.818955"], ["updated_at", "2023-02-17 19:22:06.818955"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.834460"], ["updated_at", "2023-02-17 19:22:06.834460"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.835382"], ["updated_at", "2023-02-17 19:22:06.835382"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.836193"], ["updated_at", "2023-02-17 19:22:06.836193"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.836920"], ["updated_at", "2023-02-17 19:22:06.836920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.837677"], ["updated_at", "2023-02-17 19:22:06.837677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.838388"], ["updated_at", "2023-02-17 19:22:06.838388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.839082"], ["updated_at", "2023-02-17 19:22:06.839082"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.839797"], ["updated_at", "2023-02-17 19:22:06.839797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.840564"], ["updated_at", "2023-02-17 19:22:06.840564"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.841342"], ["updated_at", "2023-02-17 19:22:06.841342"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.842087"], ["updated_at", "2023-02-17 19:22:06.842087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.842828"], ["updated_at", "2023-02-17 19:22:06.842828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.843537"], ["updated_at", "2023-02-17 19:22:06.843537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.844297"], ["updated_at", "2023-02-17 19:22:06.844297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.845050"], ["updated_at", "2023-02-17 19:22:06.845050"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:06.845754"], ["updated_at", "2023-02-17 19:22:06.845754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.861542"], ["updated_at", "2023-02-17 19:22:06.861542"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.862691"], ["updated_at", "2023-02-17 19:22:06.862691"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.863782"], ["updated_at", "2023-02-17 19:22:06.863782"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.864818"], ["updated_at", "2023-02-17 19:22:06.864818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.866059"], ["updated_at", "2023-02-17 19:22:06.866059"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.867037"], ["updated_at", "2023-02-17 19:22:06.867037"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.867839"], ["updated_at", "2023-02-17 19:22:06.867839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.870044"], ["updated_at", "2023-02-17 19:22:06.870044"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.871010"], ["updated_at", "2023-02-17 19:22:06.871010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.871736"], ["updated_at", "2023-02-17 19:22:06.871736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.872457"], ["updated_at", "2023-02-17 19:22:06.872457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.873173"], ["updated_at", "2023-02-17 19:22:06.873173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.873939"], ["updated_at", "2023-02-17 19:22:06.873939"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.874770"], ["updated_at", "2023-02-17 19:22:06.874770"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.882248"], ["updated_at", "2023-02-17 19:22:06.882248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:06.883198"], ["updated_at", "2023-02-17 19:22:06.883198"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:06.899196"], ["updated_at", "2023-02-17 19:22:06.899196"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:06.900292"], ["updated_at", "2023-02-17 19:22:06.900292"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:06.901074"], ["updated_at", "2023-02-17 19:22:06.901074"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:06.901780"], ["updated_at", "2023-02-17 19:22:06.901780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.902526"], ["updated_at", "2023-02-17 19:22:06.902526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.903318"], ["updated_at", "2023-02-17 19:22:06.903318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.904049"], ["updated_at", "2023-02-17 19:22:06.904049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.904736"], ["updated_at", "2023-02-17 19:22:06.904736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.905446"], ["updated_at", "2023-02-17 19:22:06.905446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.906141"], ["updated_at", "2023-02-17 19:22:06.906141"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.906839"], ["updated_at", "2023-02-17 19:22:06.906839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.907579"], ["updated_at", "2023-02-17 19:22:06.907579"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.908295"], ["updated_at", "2023-02-17 19:22:06.908295"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.909002"], ["updated_at", "2023-02-17 19:22:06.909002"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.909676"], ["updated_at", "2023-02-17 19:22:06.909676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:06.910376"], ["updated_at", "2023-02-17 19:22:06.910376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:22:06 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:22:06 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:22:06 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
 (1.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
ActiveRecord::InternalMetadata Pluck (1.1ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (3.3ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:18.476631"], ["updated_at", "2023-02-17 19:22:18.476631"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:18.492431"], ["updated_at", "2023-02-17 19:22:18.492431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:22:18.499234"], ["updated_at", "2023-02-17 19:22:18.499234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:18.510517"], ["updated_at", "2023-02-17 19:22:18.510517"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:18.518162"], ["updated_at", "2023-02-17 19:22:18.518162"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:22:18.521632"], ["updated_at", "2023-02-17 19:22:18.521632"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:18.524063"], ["updated_at", "2023-02-17 19:22:18.524063"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction

Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 5.3ms | Allocations: 28615) Processing by ScrapperController#show as HTML

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:22:18.542455"], ["updated_at", "2023-02-17 19:22:18.542455"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:18.544000"], ["updated_at", "2023-02-17 19:22:18.544000"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.4ms | Allocations: 6170)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.9ms | Allocations: 4603)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055b230773cf0>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149) Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 226)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:22:18.569085"], ["updated_at", "2023-02-17 19:22:18.569085"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 19ms (Views: 5.8ms | ActiveRecord: 1.2ms | Allocations: 8926)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762) Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  rollback transaction

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055685e8d0330>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms | Allocations: 226)

Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:18.594080"], ["updated_at", "2023-02-17 19:22:18.594080"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:18.595905"], ["updated_at", "2023-02-17 19:22:18.595905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:18.599414"], ["updated_at", "2023-02-17 19:22:18.599414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:18.600689"], ["updated_at", "2023-02-17 19:22:18.600689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:18.603660"], ["updated_at", "2023-02-17 19:22:18.603660"]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:18.604927"], ["updated_at", "2023-02-17 19:22:18.604927"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:18.607199"], ["updated_at", "2023-02-17 19:22:18.607199"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:18.608923"], ["updated_at", "2023-02-17 19:22:18.608923"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:18.610821"], ["updated_at", "2023-02-17 19:22:18.610821"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:18.612380"], ["updated_at", "2023-02-17 19:22:18.612380"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:18.614188"], ["updated_at", "2023-02-17 19:22:18.614188"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 6053)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:18.615554"], ["updated_at", "2023-02-17 19:22:18.615554"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:18.617378"], ["updated_at", "2023-02-17 19:22:18.617378"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:18.619243"], ["updated_at", "2023-02-17 19:22:18.619243"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:18.621276"], ["updated_at", "2023-02-17 19:22:18.621276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:18.622713"], ["updated_at", "2023-02-17 19:22:18.622713"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:18.624242"], ["updated_at", "2023-02-17 19:22:18.624242"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:18.625584"], ["updated_at", "2023-02-17 19:22:18.625584"], ["role_id", 34]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:18.627048"], ["updated_at", "2023-02-17 19:22:18.627048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:18.628425"], ["updated_at", "2023-02-17 19:22:18.628425"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:18.629864"], ["updated_at", "2023-02-17 19:22:18.629864"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:18.630310"], ["updated_at", "2023-02-17 19:22:18.630310"]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:18.632107"], ["updated_at", "2023-02-17 19:22:18.632107"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:18.633990"], ["updated_at", "2023-02-17 19:22:18.633990"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:18.635422"], ["updated_at", "2023-02-17 19:22:18.635422"], ["role_id", 34]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:18.635515"], ["updated_at", "2023-02-17 19:22:18.635515"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:18.636997"], ["updated_at", "2023-02-17 19:22:18.636997"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:18.638294"], ["updated_at", "2023-02-17 19:22:18.638294"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:18.639948"], ["updated_at", "2023-02-17 19:22:18.639948"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:18.640314"], ["updated_at", "2023-02-17 19:22:18.640314"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:18.641785"], ["updated_at", "2023-02-17 19:22:18.641785"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:18.643387"], ["updated_at", "2023-02-17 19:22:18.643387"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:18.644622"], ["updated_at", "2023-02-17 19:22:18.644622"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:18.645700"], ["updated_at", "2023-02-17 19:22:18.645700"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:18.646486"], ["updated_at", "2023-02-17 19:22:18.646486"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:18.647875"], ["updated_at", "2023-02-17 19:22:18.647875"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:18.649738"], ["updated_at", "2023-02-17 19:22:18.649738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:18.650599"], ["updated_at", "2023-02-17 19:22:18.650599"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:18.651225"], ["updated_at", "2023-02-17 19:22:18.651225"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:18.652705"], ["updated_at", "2023-02-17 19:22:18.652705"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:18.654070"], ["updated_at", "2023-02-17 19:22:18.654070"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:18.655231"], ["updated_at", "2023-02-17 19:22:18.655231"]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:18.655481"], ["updated_at", "2023-02-17 19:22:18.655481"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:18.656719"], ["updated_at", "2023-02-17 19:22:18.656719"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:18.658365"], ["updated_at", "2023-02-17 19:22:18.658365"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:18.660106"], ["updated_at", "2023-02-17 19:22:18.660106"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:18.660847"], ["updated_at", "2023-02-17 19:22:18.660847"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:18.661740"], ["updated_at", "2023-02-17 19:22:18.661740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:18.663211"], ["updated_at", "2023-02-17 19:22:18.663211"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:18.664712"], ["updated_at", "2023-02-17 19:22:18.664712"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:18.666013"], ["updated_at", "2023-02-17 19:22:18.666013"]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:18.666018"], ["updated_at", "2023-02-17 19:22:18.666018"], ["role_id", 34]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:18.667525"], ["updated_at", "2023-02-17 19:22:18.667525"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:18.668878"], ["updated_at", "2023-02-17 19:22:18.668878"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:18.670505"], ["updated_at", "2023-02-17 19:22:18.670505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:18.671787"], ["updated_at", "2023-02-17 19:22:18.671787"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:18.673331"], ["updated_at", "2023-02-17 19:22:18.673331"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:18.674744"], ["updated_at", "2023-02-17 19:22:18.674744"], ["role_id", 34]]

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:22:18 -0300

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:18.676278"], ["updated_at", "2023-02-17 19:22:18.676278"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:18.677982"], ["updated_at", "2023-02-17 19:22:18.677982"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:18.679876"], ["updated_at", "2023-02-17 19:22:18.679876"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:18.681253"], ["updated_at", "2023-02-17 19:22:18.681253"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:18.682864"], ["updated_at", "2023-02-17 19:22:18.682864"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:18.684311"], ["updated_at", "2023-02-17 19:22:18.684311"], ["role_id", 34]]

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 232)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:18.685860"], ["updated_at", "2023-02-17 19:22:18.685860"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:18.687232"], ["updated_at", "2023-02-17 19:22:18.687232"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:18.688676"], ["updated_at", "2023-02-17 19:22:18.688676"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:18.690363"], ["updated_at", "2023-02-17 19:22:18.690363"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:18.691943"], ["updated_at", "2023-02-17 19:22:18.691943"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:18.693344"], ["updated_at", "2023-02-17 19:22:18.693344"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:22:18 -0300

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:18.695341"], ["updated_at", "2023-02-17 19:22:18.695341"]]

Processing by SurveysController#open as JSON

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 180)

Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:18.696715"], ["updated_at", "2023-02-17 19:22:18.696715"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:18.698509"], ["updated_at", "2023-02-17 19:22:18.698509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:18.700231"], ["updated_at", "2023-02-17 19:22:18.700231"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:18.702173"], ["updated_at", "2023-02-17 19:22:18.702173"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:18.703540"], ["updated_at", "2023-02-17 19:22:18.703540"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:18.705046"], ["updated_at", "2023-02-17 19:22:18.705046"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:18.706322"], ["updated_at", "2023-02-17 19:22:18.706322"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:18.707760"], ["updated_at", "2023-02-17 19:22:18.707760"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:18.709177"], ["updated_at", "2023-02-17 19:22:18.709177"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:18.710912"], ["updated_at", "2023-02-17 19:22:18.710912"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:18.712475"], ["updated_at", "2023-02-17 19:22:18.712475"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:18.714396"], ["updated_at", "2023-02-17 19:22:18.714396"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:18.716110"], ["updated_at", "2023-02-17 19:22:18.716110"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:18.718025"], ["updated_at", "2023-02-17 19:22:18.718025"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:18.719748"], ["updated_at", "2023-02-17 19:22:18.719748"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:18.721625"], ["updated_at", "2023-02-17 19:22:18.721625"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:18.723022"], ["updated_at", "2023-02-17 19:22:18.723022"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:18.724583"], ["updated_at", "2023-02-17 19:22:18.724583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:18.725927"], ["updated_at", "2023-02-17 19:22:18.725927"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:18.727394"], ["updated_at", "2023-02-17 19:22:18.727394"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:18.729042"], ["updated_at", "2023-02-17 19:22:18.729042"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:18.730756"], ["updated_at", "2023-02-17 19:22:18.730756"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:18.732093"], ["updated_at", "2023-02-17 19:22:18.732093"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:18.733631"], ["updated_at", "2023-02-17 19:22:18.733631"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:18.735140"], ["updated_at", "2023-02-17 19:22:18.735140"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:18.736597"], ["updated_at", "2023-02-17 19:22:18.736597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:18.737919"], ["updated_at", "2023-02-17 19:22:18.737919"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:18.739598"], ["updated_at", "2023-02-17 19:22:18.739598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:18.741176"], ["updated_at", "2023-02-17 19:22:18.741176"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:18.743790"], ["updated_at", "2023-02-17 19:22:18.743790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:18.745299"], ["updated_at", "2023-02-17 19:22:18.745299"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:18.747665"], ["updated_at", "2023-02-17 19:22:18.747665"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:18.748826"], ["updated_at", "2023-02-17 19:22:18.748826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:18.750601"], ["updated_at", "2023-02-17 19:22:18.750601"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:18.752279"], ["updated_at", "2023-02-17 19:22:18.752279"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:18.756524"], ["updated_at", "2023-02-17 19:22:18.756524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:18.757898"], ["updated_at", "2023-02-17 19:22:18.757898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:18.759061"], ["updated_at", "2023-02-17 19:22:18.759061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:18.788953"], ["updated_at", "2023-02-17 19:22:18.788953"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:18.790628"], ["updated_at", "2023-02-17 19:22:18.790628"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:18.791759"], ["updated_at", "2023-02-17 19:22:18.791759"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:18.792732"], ["updated_at", "2023-02-17 19:22:18.792732"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:18.793653"], ["updated_at", "2023-02-17 19:22:18.793653"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:18.794384"], ["updated_at", "2023-02-17 19:22:18.794384"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:18.795173"], ["updated_at", "2023-02-17 19:22:18.795173"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:18.795951"], ["updated_at", "2023-02-17 19:22:18.795951"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:18.796786"], ["updated_at", "2023-02-17 19:22:18.796786"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.797722"], ["updated_at", "2023-02-17 19:22:18.797722"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.798697"], ["updated_at", "2023-02-17 19:22:18.798697"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.799546"], ["updated_at", "2023-02-17 19:22:18.799546"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.800355"], ["updated_at", "2023-02-17 19:22:18.800355"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.801311"], ["updated_at", "2023-02-17 19:22:18.801311"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.802111"], ["updated_at", "2023-02-17 19:22:18.802111"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.802907"], ["updated_at", "2023-02-17 19:22:18.802907"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.803653"], ["updated_at", "2023-02-17 19:22:18.803653"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.804389"], ["updated_at", "2023-02-17 19:22:18.804389"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.805236"], ["updated_at", "2023-02-17 19:22:18.805236"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.806040"], ["updated_at", "2023-02-17 19:22:18.806040"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.806861"], ["updated_at", "2023-02-17 19:22:18.806861"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:18.818998"], ["updated_at", "2023-02-17 19:22:18.818998"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:18.820255"], ["updated_at", "2023-02-17 19:22:18.820255"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:18.821317"], ["updated_at", "2023-02-17 19:22:18.821317"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:18.822345"], ["updated_at", "2023-02-17 19:22:18.822345"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:18.823259"], ["updated_at", "2023-02-17 19:22:18.823259"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:18.824014"], ["updated_at", "2023-02-17 19:22:18.824014"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:18.824705"], ["updated_at", "2023-02-17 19:22:18.824705"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:18.825454"], ["updated_at", "2023-02-17 19:22:18.825454"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:18.826329"], ["updated_at", "2023-02-17 19:22:18.826329"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.827219"], ["updated_at", "2023-02-17 19:22:18.827219"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.828105"], ["updated_at", "2023-02-17 19:22:18.828105"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.828954"], ["updated_at", "2023-02-17 19:22:18.828954"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.829787"], ["updated_at", "2023-02-17 19:22:18.829787"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.830656"], ["updated_at", "2023-02-17 19:22:18.830656"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.831427"], ["updated_at", "2023-02-17 19:22:18.831427"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.832166"], ["updated_at", "2023-02-17 19:22:18.832166"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.832960"], ["updated_at", "2023-02-17 19:22:18.832960"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.833747"], ["updated_at", "2023-02-17 19:22:18.833747"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.834635"], ["updated_at", "2023-02-17 19:22:18.834635"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.835414"], ["updated_at", "2023-02-17 19:22:18.835414"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:18.836153"], ["updated_at", "2023-02-17 19:22:18.836153"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:18.873272"], ["updated_at", "2023-02-17 19:22:18.873272"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:18.874450"], ["updated_at", "2023-02-17 19:22:18.874450"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:18.875346"], ["updated_at", "2023-02-17 19:22:18.875346"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.876151"], ["updated_at", "2023-02-17 19:22:18.876151"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.877034"], ["updated_at", "2023-02-17 19:22:18.877034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.878293"], ["updated_at", "2023-02-17 19:22:18.878293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.879183"], ["updated_at", "2023-02-17 19:22:18.879183"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.879922"], ["updated_at", "2023-02-17 19:22:18.879922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.880634"], ["updated_at", "2023-02-17 19:22:18.880634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.881529"], ["updated_at", "2023-02-17 19:22:18.881529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.882329"], ["updated_at", "2023-02-17 19:22:18.882329"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.883044"], ["updated_at", "2023-02-17 19:22:18.883044"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.883921"], ["updated_at", "2023-02-17 19:22:18.883921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.885051"], ["updated_at", "2023-02-17 19:22:18.885051"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.886190"], ["updated_at", "2023-02-17 19:22:18.886190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:18.887281"], ["updated_at", "2023-02-17 19:22:18.887281"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:18.904064"], ["updated_at", "2023-02-17 19:22:18.904064"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:18.905076"], ["updated_at", "2023-02-17 19:22:18.905076"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:18.905870"], ["updated_at", "2023-02-17 19:22:18.905870"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.906590"], ["updated_at", "2023-02-17 19:22:18.906590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.907379"], ["updated_at", "2023-02-17 19:22:18.907379"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.908188"], ["updated_at", "2023-02-17 19:22:18.908188"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.909069"], ["updated_at", "2023-02-17 19:22:18.909069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.909872"], ["updated_at", "2023-02-17 19:22:18.909872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.910660"], ["updated_at", "2023-02-17 19:22:18.910660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.911488"], ["updated_at", "2023-02-17 19:22:18.911488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.912284"], ["updated_at", "2023-02-17 19:22:18.912284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.913059"], ["updated_at", "2023-02-17 19:22:18.913059"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.913787"], ["updated_at", "2023-02-17 19:22:18.913787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.914733"], ["updated_at", "2023-02-17 19:22:18.914733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.915924"], ["updated_at", "2023-02-17 19:22:18.915924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:18.916897"], ["updated_at", "2023-02-17 19:22:18.916897"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:18.933391"], ["updated_at", "2023-02-17 19:22:18.933391"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:18.934438"], ["updated_at", "2023-02-17 19:22:18.934438"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:18.935258"], ["updated_at", "2023-02-17 19:22:18.935258"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.936021"], ["updated_at", "2023-02-17 19:22:18.936021"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.936776"], ["updated_at", "2023-02-17 19:22:18.936776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.937623"], ["updated_at", "2023-02-17 19:22:18.937623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.938384"], ["updated_at", "2023-02-17 19:22:18.938384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.939121"], ["updated_at", "2023-02-17 19:22:18.939121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.939818"], ["updated_at", "2023-02-17 19:22:18.939818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.940544"], ["updated_at", "2023-02-17 19:22:18.940544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.941391"], ["updated_at", "2023-02-17 19:22:18.941391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.942167"], ["updated_at", "2023-02-17 19:22:18.942167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.942924"], ["updated_at", "2023-02-17 19:22:18.942924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.943730"], ["updated_at", "2023-02-17 19:22:18.943730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.945398"], ["updated_at", "2023-02-17 19:22:18.945398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:18.946576"], ["updated_at", "2023-02-17 19:22:18.946576"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:18.963429"], ["updated_at", "2023-02-17 19:22:18.963429"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:18.964442"], ["updated_at", "2023-02-17 19:22:18.964442"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:18.965254"], ["updated_at", "2023-02-17 19:22:18.965254"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.966024"], ["updated_at", "2023-02-17 19:22:18.966024"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.966889"], ["updated_at", "2023-02-17 19:22:18.966889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.967658"], ["updated_at", "2023-02-17 19:22:18.967658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.968424"], ["updated_at", "2023-02-17 19:22:18.968424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.969137"], ["updated_at", "2023-02-17 19:22:18.969137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.969838"], ["updated_at", "2023-02-17 19:22:18.969838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.970679"], ["updated_at", "2023-02-17 19:22:18.970679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.971421"], ["updated_at", "2023-02-17 19:22:18.971421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.972166"], ["updated_at", "2023-02-17 19:22:18.972166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.972947"], ["updated_at", "2023-02-17 19:22:18.972947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.973703"], ["updated_at", "2023-02-17 19:22:18.973703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.974490"], ["updated_at", "2023-02-17 19:22:18.974490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:18.975283"], ["updated_at", "2023-02-17 19:22:18.975283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:18.991857"], ["updated_at", "2023-02-17 19:22:18.991857"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:18.992872"], ["updated_at", "2023-02-17 19:22:18.992872"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:18.993749"], ["updated_at", "2023-02-17 19:22:18.993749"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:18.994771"], ["updated_at", "2023-02-17 19:22:18.994771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:18.995779"], ["updated_at", "2023-02-17 19:22:18.995779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:18.996589"], ["updated_at", "2023-02-17 19:22:18.996589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:18.997350"], ["updated_at", "2023-02-17 19:22:18.997350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:18.998070"], ["updated_at", "2023-02-17 19:22:18.998070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:18.998765"], ["updated_at", "2023-02-17 19:22:18.998765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:18.999475"], ["updated_at", "2023-02-17 19:22:18.999475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.000191"], ["updated_at", "2023-02-17 19:22:19.000191"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.000971"], ["updated_at", "2023-02-17 19:22:19.000971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.001709"], ["updated_at", "2023-02-17 19:22:19.001709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.002419"], ["updated_at", "2023-02-17 19:22:19.002419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.003142"], ["updated_at", "2023-02-17 19:22:19.003142"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.003835"], ["updated_at", "2023-02-17 19:22:19.003835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.019647"], ["updated_at", "2023-02-17 19:22:19.019647"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.020653"], ["updated_at", "2023-02-17 19:22:19.020653"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.021461"], ["updated_at", "2023-02-17 19:22:19.021461"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.022197"], ["updated_at", "2023-02-17 19:22:19.022197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.022963"], ["updated_at", "2023-02-17 19:22:19.022963"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.023687"], ["updated_at", "2023-02-17 19:22:19.023687"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.024413"], ["updated_at", "2023-02-17 19:22:19.024413"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.025155"], ["updated_at", "2023-02-17 19:22:19.025155"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.025886"], ["updated_at", "2023-02-17 19:22:19.025886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.026593"], ["updated_at", "2023-02-17 19:22:19.026593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.027294"], ["updated_at", "2023-02-17 19:22:19.027294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.028042"], ["updated_at", "2023-02-17 19:22:19.028042"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.028808"], ["updated_at", "2023-02-17 19:22:19.028808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.029562"], ["updated_at", "2023-02-17 19:22:19.029562"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.030287"], ["updated_at", "2023-02-17 19:22:19.030287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.031018"], ["updated_at", "2023-02-17 19:22:19.031018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:22:19 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms | Allocations: 3127)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:19.055389"], ["updated_at", "2023-02-17 19:22:19.055389"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:19.056855"], ["updated_at", "2023-02-17 19:22:19.056855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:19.059677"], ["updated_at", "2023-02-17 19:22:19.059677"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:19.060942"], ["updated_at", "2023-02-17 19:22:19.060942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:19.063877"], ["updated_at", "2023-02-17 19:22:19.063877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:19.065108"], ["updated_at", "2023-02-17 19:22:19.065108"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:19.067186"], ["updated_at", "2023-02-17 19:22:19.067186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:19.068657"], ["updated_at", "2023-02-17 19:22:19.068657"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:19.070250"], ["updated_at", "2023-02-17 19:22:19.070250"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:19.071588"], ["updated_at", "2023-02-17 19:22:19.071588"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:19.073098"], ["updated_at", "2023-02-17 19:22:19.073098"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:19.074805"], ["updated_at", "2023-02-17 19:22:19.074805"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:19.076538"], ["updated_at", "2023-02-17 19:22:19.076538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:19.077892"], ["updated_at", "2023-02-17 19:22:19.077892"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:19.079439"], ["updated_at", "2023-02-17 19:22:19.079439"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:19.080742"], ["updated_at", "2023-02-17 19:22:19.080742"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:19.082248"], ["updated_at", "2023-02-17 19:22:19.082248"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:19.083518"], ["updated_at", "2023-02-17 19:22:19.083518"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:19.085015"], ["updated_at", "2023-02-17 19:22:19.085015"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:19.086258"], ["updated_at", "2023-02-17 19:22:19.086258"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:19.087648"], ["updated_at", "2023-02-17 19:22:19.087648"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:19.088827"], ["updated_at", "2023-02-17 19:22:19.088827"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:19.090241"], ["updated_at", "2023-02-17 19:22:19.090241"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:19.091496"], ["updated_at", "2023-02-17 19:22:19.091496"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:19.092986"], ["updated_at", "2023-02-17 19:22:19.092986"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:19.094274"], ["updated_at", "2023-02-17 19:22:19.094274"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:19.095783"], ["updated_at", "2023-02-17 19:22:19.095783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:19.097019"], ["updated_at", "2023-02-17 19:22:19.097019"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:19.098440"], ["updated_at", "2023-02-17 19:22:19.098440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:19.099697"], ["updated_at", "2023-02-17 19:22:19.099697"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:19.101173"], ["updated_at", "2023-02-17 19:22:19.101173"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:19.102480"], ["updated_at", "2023-02-17 19:22:19.102480"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:19.103905"], ["updated_at", "2023-02-17 19:22:19.103905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:19.105135"], ["updated_at", "2023-02-17 19:22:19.105135"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:19.106544"], ["updated_at", "2023-02-17 19:22:19.106544"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:19.107787"], ["updated_at", "2023-02-17 19:22:19.107787"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:19.109206"], ["updated_at", "2023-02-17 19:22:19.109206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:19.110486"], ["updated_at", "2023-02-17 19:22:19.110486"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:19.111955"], ["updated_at", "2023-02-17 19:22:19.111955"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:19.113264"], ["updated_at", "2023-02-17 19:22:19.113264"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:19.114712"], ["updated_at", "2023-02-17 19:22:19.114712"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:19.115935"], ["updated_at", "2023-02-17 19:22:19.115935"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:19.117335"], ["updated_at", "2023-02-17 19:22:19.117335"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.118581"], ["updated_at", "2023-02-17 19:22:19.118581"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:19.120002"], ["updated_at", "2023-02-17 19:22:19.120002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:19.121360"], ["updated_at", "2023-02-17 19:22:19.121360"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:19.122966"], ["updated_at", "2023-02-17 19:22:19.122966"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:19.124266"], ["updated_at", "2023-02-17 19:22:19.124266"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:19.125695"], ["updated_at", "2023-02-17 19:22:19.125695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:19.126946"], ["updated_at", "2023-02-17 19:22:19.126946"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:19.128412"], ["updated_at", "2023-02-17 19:22:19.128412"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:19.129964"], ["updated_at", "2023-02-17 19:22:19.129964"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:19.131524"], ["updated_at", "2023-02-17 19:22:19.131524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:19.132762"], ["updated_at", "2023-02-17 19:22:19.132762"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:19.134298"], ["updated_at", "2023-02-17 19:22:19.134298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:19.135611"], ["updated_at", "2023-02-17 19:22:19.135611"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:19.137080"], ["updated_at", "2023-02-17 19:22:19.137080"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:19.138365"], ["updated_at", "2023-02-17 19:22:19.138365"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:19.139782"], ["updated_at", "2023-02-17 19:22:19.139782"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:19.141079"], ["updated_at", "2023-02-17 19:22:19.141079"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:19.142584"], ["updated_at", "2023-02-17 19:22:19.142584"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:19.143833"], ["updated_at", "2023-02-17 19:22:19.143833"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:19.145472"], ["updated_at", "2023-02-17 19:22:19.145472"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.146930"], ["updated_at", "2023-02-17 19:22:19.146930"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:19.148436"], ["updated_at", "2023-02-17 19:22:19.148436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:19.149708"], ["updated_at", "2023-02-17 19:22:19.149708"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:19.151257"], ["updated_at", "2023-02-17 19:22:19.151257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:19.152557"], ["updated_at", "2023-02-17 19:22:19.152557"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:19.153954"], ["updated_at", "2023-02-17 19:22:19.153954"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.155195"], ["updated_at", "2023-02-17 19:22:19.155195"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:19.156635"], ["updated_at", "2023-02-17 19:22:19.156635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:19.157864"], ["updated_at", "2023-02-17 19:22:19.157864"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:19.159310"], ["updated_at", "2023-02-17 19:22:19.159310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:19.160622"], ["updated_at", "2023-02-17 19:22:19.160622"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:19.162388"], ["updated_at", "2023-02-17 19:22:19.162388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:19.163820"], ["updated_at", "2023-02-17 19:22:19.163820"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:19.165391"], ["updated_at", "2023-02-17 19:22:19.165391"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:19.166720"], ["updated_at", "2023-02-17 19:22:19.166720"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:19.168276"], ["updated_at", "2023-02-17 19:22:19.168276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:19.169581"], ["updated_at", "2023-02-17 19:22:19.169581"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:19.181445"], ["updated_at", "2023-02-17 19:22:19.181445"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.182828"], ["updated_at", "2023-02-17 19:22:19.182828"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:19.184309"], ["updated_at", "2023-02-17 19:22:19.184309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:19.185604"], ["updated_at", "2023-02-17 19:22:19.185604"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:19.187399"], ["updated_at", "2023-02-17 19:22:19.187399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:19.188730"], ["updated_at", "2023-02-17 19:22:19.188730"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:19.190463"], ["updated_at", "2023-02-17 19:22:19.190463"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:19.191944"], ["updated_at", "2023-02-17 19:22:19.191944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:19.193441"], ["updated_at", "2023-02-17 19:22:19.193441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:19.194690"], ["updated_at", "2023-02-17 19:22:19.194690"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:19.196323"], ["updated_at", "2023-02-17 19:22:19.196323"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:19.197596"], ["updated_at", "2023-02-17 19:22:19.197596"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:19.199051"], ["updated_at", "2023-02-17 19:22:19.199051"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:19.200325"], ["updated_at", "2023-02-17 19:22:19.200325"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:19.201770"], ["updated_at", "2023-02-17 19:22:19.201770"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:19.202878"], ["updated_at", "2023-02-17 19:22:19.202878"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:19.204082"], ["updated_at", "2023-02-17 19:22:19.204082"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:19.205500"], ["updated_at", "2023-02-17 19:22:19.205500"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:19.207029"], ["updated_at", "2023-02-17 19:22:19.207029"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:19.208181"], ["updated_at", "2023-02-17 19:22:19.208181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:19.209230"], ["updated_at", "2023-02-17 19:22:19.209230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:19.220723"], ["updated_at", "2023-02-17 19:22:19.220723"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:19.222040"], ["updated_at", "2023-02-17 19:22:19.222040"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:19.223022"], ["updated_at", "2023-02-17 19:22:19.223022"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.223878"], ["updated_at", "2023-02-17 19:22:19.223878"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.224630"], ["updated_at", "2023-02-17 19:22:19.224630"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.225349"], ["updated_at", "2023-02-17 19:22:19.225349"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.226035"], ["updated_at", "2023-02-17 19:22:19.226035"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.226695"], ["updated_at", "2023-02-17 19:22:19.226695"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:19.227497"], ["updated_at", "2023-02-17 19:22:19.227497"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.228578"], ["updated_at", "2023-02-17 19:22:19.228578"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.229525"], ["updated_at", "2023-02-17 19:22:19.229525"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.230313"], ["updated_at", "2023-02-17 19:22:19.230313"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.231082"], ["updated_at", "2023-02-17 19:22:19.231082"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.231801"], ["updated_at", "2023-02-17 19:22:19.231801"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.232566"], ["updated_at", "2023-02-17 19:22:19.232566"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.233333"], ["updated_at", "2023-02-17 19:22:19.233333"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.234107"], ["updated_at", "2023-02-17 19:22:19.234107"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.234882"], ["updated_at", "2023-02-17 19:22:19.234882"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.235634"], ["updated_at", "2023-02-17 19:22:19.235634"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.236369"], ["updated_at", "2023-02-17 19:22:19.236369"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.237133"], ["updated_at", "2023-02-17 19:22:19.237133"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:19.248922"], ["updated_at", "2023-02-17 19:22:19.248922"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:19.250242"], ["updated_at", "2023-02-17 19:22:19.250242"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:19.251223"], ["updated_at", "2023-02-17 19:22:19.251223"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:19.252064"], ["updated_at", "2023-02-17 19:22:19.252064"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:19.252818"], ["updated_at", "2023-02-17 19:22:19.252818"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:19.253594"], ["updated_at", "2023-02-17 19:22:19.253594"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:19.254293"], ["updated_at", "2023-02-17 19:22:19.254293"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:19.255003"], ["updated_at", "2023-02-17 19:22:19.255003"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:19.255769"], ["updated_at", "2023-02-17 19:22:19.255769"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.256607"], ["updated_at", "2023-02-17 19:22:19.256607"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.257422"], ["updated_at", "2023-02-17 19:22:19.257422"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.258184"], ["updated_at", "2023-02-17 19:22:19.258184"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.258915"], ["updated_at", "2023-02-17 19:22:19.258915"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.259646"], ["updated_at", "2023-02-17 19:22:19.259646"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.260395"], ["updated_at", "2023-02-17 19:22:19.260395"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.261130"], ["updated_at", "2023-02-17 19:22:19.261130"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.261913"], ["updated_at", "2023-02-17 19:22:19.261913"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.262678"], ["updated_at", "2023-02-17 19:22:19.262678"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.263429"], ["updated_at", "2023-02-17 19:22:19.263429"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.264167"], ["updated_at", "2023-02-17 19:22:19.264167"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.264910"], ["updated_at", "2023-02-17 19:22:19.264910"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.280871"], ["updated_at", "2023-02-17 19:22:19.280871"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.281950"], ["updated_at", "2023-02-17 19:22:19.281950"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.282795"], ["updated_at", "2023-02-17 19:22:19.282795"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.283540"], ["updated_at", "2023-02-17 19:22:19.283540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.284336"], ["updated_at", "2023-02-17 19:22:19.284336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.285173"], ["updated_at", "2023-02-17 19:22:19.285173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.285935"], ["updated_at", "2023-02-17 19:22:19.285935"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.286630"], ["updated_at", "2023-02-17 19:22:19.286630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.287329"], ["updated_at", "2023-02-17 19:22:19.287329"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.288027"], ["updated_at", "2023-02-17 19:22:19.288027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.288703"], ["updated_at", "2023-02-17 19:22:19.288703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.289411"], ["updated_at", "2023-02-17 19:22:19.289411"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.290111"], ["updated_at", "2023-02-17 19:22:19.290111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.290788"], ["updated_at", "2023-02-17 19:22:19.290788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.291495"], ["updated_at", "2023-02-17 19:22:19.291495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.292190"], ["updated_at", "2023-02-17 19:22:19.292190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.307793"], ["updated_at", "2023-02-17 19:22:19.307793"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.308818"], ["updated_at", "2023-02-17 19:22:19.308818"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.309669"], ["updated_at", "2023-02-17 19:22:19.309669"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.310401"], ["updated_at", "2023-02-17 19:22:19.310401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.311179"], ["updated_at", "2023-02-17 19:22:19.311179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.311931"], ["updated_at", "2023-02-17 19:22:19.311931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.312638"], ["updated_at", "2023-02-17 19:22:19.312638"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.313365"], ["updated_at", "2023-02-17 19:22:19.313365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.314063"], ["updated_at", "2023-02-17 19:22:19.314063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.314734"], ["updated_at", "2023-02-17 19:22:19.314734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.315442"], ["updated_at", "2023-02-17 19:22:19.315442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.316134"], ["updated_at", "2023-02-17 19:22:19.316134"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.316809"], ["updated_at", "2023-02-17 19:22:19.316809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.317553"], ["updated_at", "2023-02-17 19:22:19.317553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.318244"], ["updated_at", "2023-02-17 19:22:19.318244"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.318952"], ["updated_at", "2023-02-17 19:22:19.318952"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.334987"], ["updated_at", "2023-02-17 19:22:19.334987"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.335978"], ["updated_at", "2023-02-17 19:22:19.335978"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.336665"], ["updated_at", "2023-02-17 19:22:19.336665"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.337369"], ["updated_at", "2023-02-17 19:22:19.337369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.338125"], ["updated_at", "2023-02-17 19:22:19.338125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.338877"], ["updated_at", "2023-02-17 19:22:19.338877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.339560"], ["updated_at", "2023-02-17 19:22:19.339560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.340290"], ["updated_at", "2023-02-17 19:22:19.340290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.341046"], ["updated_at", "2023-02-17 19:22:19.341046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.341743"], ["updated_at", "2023-02-17 19:22:19.341743"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.342472"], ["updated_at", "2023-02-17 19:22:19.342472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.343176"], ["updated_at", "2023-02-17 19:22:19.343176"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.343911"], ["updated_at", "2023-02-17 19:22:19.343911"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.344602"], ["updated_at", "2023-02-17 19:22:19.344602"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.345317"], ["updated_at", "2023-02-17 19:22:19.345317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.346039"], ["updated_at", "2023-02-17 19:22:19.346039"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.361764"], ["updated_at", "2023-02-17 19:22:19.361764"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.362824"], ["updated_at", "2023-02-17 19:22:19.362824"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.363673"], ["updated_at", "2023-02-17 19:22:19.363673"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.364412"], ["updated_at", "2023-02-17 19:22:19.364412"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.365184"], ["updated_at", "2023-02-17 19:22:19.365184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.365940"], ["updated_at", "2023-02-17 19:22:19.365940"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.366673"], ["updated_at", "2023-02-17 19:22:19.366673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.367378"], ["updated_at", "2023-02-17 19:22:19.367378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.368081"], ["updated_at", "2023-02-17 19:22:19.368081"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.368715"], ["updated_at", "2023-02-17 19:22:19.368715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.369402"], ["updated_at", "2023-02-17 19:22:19.369402"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.370116"], ["updated_at", "2023-02-17 19:22:19.370116"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.370835"], ["updated_at", "2023-02-17 19:22:19.370835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.371522"], ["updated_at", "2023-02-17 19:22:19.371522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.372216"], ["updated_at", "2023-02-17 19:22:19.372216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.372859"], ["updated_at", "2023-02-17 19:22:19.372859"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.388839"], ["updated_at", "2023-02-17 19:22:19.388839"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.389894"], ["updated_at", "2023-02-17 19:22:19.389894"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.390757"], ["updated_at", "2023-02-17 19:22:19.390757"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.391656"], ["updated_at", "2023-02-17 19:22:19.391656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.392483"], ["updated_at", "2023-02-17 19:22:19.392483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.393256"], ["updated_at", "2023-02-17 19:22:19.393256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.393966"], ["updated_at", "2023-02-17 19:22:19.393966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.394669"], ["updated_at", "2023-02-17 19:22:19.394669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.395456"], ["updated_at", "2023-02-17 19:22:19.395456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.396201"], ["updated_at", "2023-02-17 19:22:19.396201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.396899"], ["updated_at", "2023-02-17 19:22:19.396899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.397833"], ["updated_at", "2023-02-17 19:22:19.397833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.398564"], ["updated_at", "2023-02-17 19:22:19.398564"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.399263"], ["updated_at", "2023-02-17 19:22:19.399263"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.399972"], ["updated_at", "2023-02-17 19:22:19.399972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.400689"], ["updated_at", "2023-02-17 19:22:19.400689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.416315"], ["updated_at", "2023-02-17 19:22:19.416315"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.417323"], ["updated_at", "2023-02-17 19:22:19.417323"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.418158"], ["updated_at", "2023-02-17 19:22:19.418158"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.418909"], ["updated_at", "2023-02-17 19:22:19.418909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.419620"], ["updated_at", "2023-02-17 19:22:19.419620"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.420370"], ["updated_at", "2023-02-17 19:22:19.420370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.421157"], ["updated_at", "2023-02-17 19:22:19.421157"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.421880"], ["updated_at", "2023-02-17 19:22:19.421880"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.422586"], ["updated_at", "2023-02-17 19:22:19.422586"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.423295"], ["updated_at", "2023-02-17 19:22:19.423295"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.423993"], ["updated_at", "2023-02-17 19:22:19.423993"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.424698"], ["updated_at", "2023-02-17 19:22:19.424698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.425427"], ["updated_at", "2023-02-17 19:22:19.425427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.426122"], ["updated_at", "2023-02-17 19:22:19.426122"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.426822"], ["updated_at", "2023-02-17 19:22:19.426822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.427521"], ["updated_at", "2023-02-17 19:22:19.427521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:22:19 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:19.436569"], ["updated_at", "2023-02-17 19:22:19.436569"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:19.438040"], ["updated_at", "2023-02-17 19:22:19.438040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:19.440914"], ["updated_at", "2023-02-17 19:22:19.440914"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:19.442143"], ["updated_at", "2023-02-17 19:22:19.442143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:19.444824"], ["updated_at", "2023-02-17 19:22:19.444824"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:19.445920"], ["updated_at", "2023-02-17 19:22:19.445920"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:19.447979"], ["updated_at", "2023-02-17 19:22:19.447979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:19.449342"], ["updated_at", "2023-02-17 19:22:19.449342"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:19.450933"], ["updated_at", "2023-02-17 19:22:19.450933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:19.452283"], ["updated_at", "2023-02-17 19:22:19.452283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:19.453778"], ["updated_at", "2023-02-17 19:22:19.453778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:19.455024"], ["updated_at", "2023-02-17 19:22:19.455024"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:19.456364"], ["updated_at", "2023-02-17 19:22:19.456364"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:19.457563"], ["updated_at", "2023-02-17 19:22:19.457563"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:19.458942"], ["updated_at", "2023-02-17 19:22:19.458942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:19.460130"], ["updated_at", "2023-02-17 19:22:19.460130"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:19.461574"], ["updated_at", "2023-02-17 19:22:19.461574"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:19.462806"], ["updated_at", "2023-02-17 19:22:19.462806"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:19.464211"], ["updated_at", "2023-02-17 19:22:19.464211"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:19.465475"], ["updated_at", "2023-02-17 19:22:19.465475"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:19.466902"], ["updated_at", "2023-02-17 19:22:19.466902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:19.468132"], ["updated_at", "2023-02-17 19:22:19.468132"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:19.469456"], ["updated_at", "2023-02-17 19:22:19.469456"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:19.470640"], ["updated_at", "2023-02-17 19:22:19.470640"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:19.472034"], ["updated_at", "2023-02-17 19:22:19.472034"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:19.473258"], ["updated_at", "2023-02-17 19:22:19.473258"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:19.474675"], ["updated_at", "2023-02-17 19:22:19.474675"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:19.475870"], ["updated_at", "2023-02-17 19:22:19.475870"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:19.477227"], ["updated_at", "2023-02-17 19:22:19.477227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:19.478457"], ["updated_at", "2023-02-17 19:22:19.478457"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:19.479798"], ["updated_at", "2023-02-17 19:22:19.479798"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:19.481050"], ["updated_at", "2023-02-17 19:22:19.481050"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:19.482492"], ["updated_at", "2023-02-17 19:22:19.482492"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:19.483705"], ["updated_at", "2023-02-17 19:22:19.483705"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:19.485102"], ["updated_at", "2023-02-17 19:22:19.485102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:19.486279"], ["updated_at", "2023-02-17 19:22:19.486279"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:19.487683"], ["updated_at", "2023-02-17 19:22:19.487683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:19.488869"], ["updated_at", "2023-02-17 19:22:19.488869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:19.490232"], ["updated_at", "2023-02-17 19:22:19.490232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:19.491395"], ["updated_at", "2023-02-17 19:22:19.491395"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:19.492777"], ["updated_at", "2023-02-17 19:22:19.492777"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:19.493970"], ["updated_at", "2023-02-17 19:22:19.493970"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:19.495361"], ["updated_at", "2023-02-17 19:22:19.495361"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.496537"], ["updated_at", "2023-02-17 19:22:19.496537"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:19.497915"], ["updated_at", "2023-02-17 19:22:19.497915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:19.499080"], ["updated_at", "2023-02-17 19:22:19.499080"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:19.500457"], ["updated_at", "2023-02-17 19:22:19.500457"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:19.501671"], ["updated_at", "2023-02-17 19:22:19.501671"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:19.503107"], ["updated_at", "2023-02-17 19:22:19.503107"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:19.504283"], ["updated_at", "2023-02-17 19:22:19.504283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:19.505646"], ["updated_at", "2023-02-17 19:22:19.505646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:19.506872"], ["updated_at", "2023-02-17 19:22:19.506872"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:19.508240"], ["updated_at", "2023-02-17 19:22:19.508240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:19.509449"], ["updated_at", "2023-02-17 19:22:19.509449"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:19.510907"], ["updated_at", "2023-02-17 19:22:19.510907"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:19.512112"], ["updated_at", "2023-02-17 19:22:19.512112"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:19.513486"], ["updated_at", "2023-02-17 19:22:19.513486"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:19.514661"], ["updated_at", "2023-02-17 19:22:19.514661"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:19.516054"], ["updated_at", "2023-02-17 19:22:19.516054"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:19.517243"], ["updated_at", "2023-02-17 19:22:19.517243"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:19.518616"], ["updated_at", "2023-02-17 19:22:19.518616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:19.519792"], ["updated_at", "2023-02-17 19:22:19.519792"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:19.521194"], ["updated_at", "2023-02-17 19:22:19.521194"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.522419"], ["updated_at", "2023-02-17 19:22:19.522419"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:19.523799"], ["updated_at", "2023-02-17 19:22:19.523799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:19.524991"], ["updated_at", "2023-02-17 19:22:19.524991"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:19.526356"], ["updated_at", "2023-02-17 19:22:19.526356"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:19.527512"], ["updated_at", "2023-02-17 19:22:19.527512"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:19.528873"], ["updated_at", "2023-02-17 19:22:19.528873"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.530063"], ["updated_at", "2023-02-17 19:22:19.530063"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:19.531439"], ["updated_at", "2023-02-17 19:22:19.531439"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:19.532605"], ["updated_at", "2023-02-17 19:22:19.532605"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:19.534013"], ["updated_at", "2023-02-17 19:22:19.534013"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:19.535211"], ["updated_at", "2023-02-17 19:22:19.535211"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:19.536586"], ["updated_at", "2023-02-17 19:22:19.536586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:19.537806"], ["updated_at", "2023-02-17 19:22:19.537806"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:19.539190"], ["updated_at", "2023-02-17 19:22:19.539190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:19.540360"], ["updated_at", "2023-02-17 19:22:19.540360"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:19.541793"], ["updated_at", "2023-02-17 19:22:19.541793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:19.543010"], ["updated_at", "2023-02-17 19:22:19.543010"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:19.544392"], ["updated_at", "2023-02-17 19:22:19.544392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.545595"], ["updated_at", "2023-02-17 19:22:19.545595"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:19.546994"], ["updated_at", "2023-02-17 19:22:19.546994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:19.548159"], ["updated_at", "2023-02-17 19:22:19.548159"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:19.549557"], ["updated_at", "2023-02-17 19:22:19.549557"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:19.550760"], ["updated_at", "2023-02-17 19:22:19.550760"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:19.552174"], ["updated_at", "2023-02-17 19:22:19.552174"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:19.553469"], ["updated_at", "2023-02-17 19:22:19.553469"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:19.554953"], ["updated_at", "2023-02-17 19:22:19.554953"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:19.556153"], ["updated_at", "2023-02-17 19:22:19.556153"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:19.557530"], ["updated_at", "2023-02-17 19:22:19.557530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:19.558754"], ["updated_at", "2023-02-17 19:22:19.558754"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:19.560103"], ["updated_at", "2023-02-17 19:22:19.560103"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:19.561314"], ["updated_at", "2023-02-17 19:22:19.561314"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:19.562742"], ["updated_at", "2023-02-17 19:22:19.562742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:19.563896"], ["updated_at", "2023-02-17 19:22:19.563896"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:19.565110"], ["updated_at", "2023-02-17 19:22:19.565110"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:19.566512"], ["updated_at", "2023-02-17 19:22:19.566512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:19.568022"], ["updated_at", "2023-02-17 19:22:19.568022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:19.569178"], ["updated_at", "2023-02-17 19:22:19.569178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:19.570200"], ["updated_at", "2023-02-17 19:22:19.570200"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:19.581535"], ["updated_at", "2023-02-17 19:22:19.581535"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:19.582829"], ["updated_at", "2023-02-17 19:22:19.582829"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:19.583843"], ["updated_at", "2023-02-17 19:22:19.583843"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.584712"], ["updated_at", "2023-02-17 19:22:19.584712"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.585504"], ["updated_at", "2023-02-17 19:22:19.585504"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.586201"], ["updated_at", "2023-02-17 19:22:19.586201"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.586898"], ["updated_at", "2023-02-17 19:22:19.586898"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.587597"], ["updated_at", "2023-02-17 19:22:19.587597"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:19.588366"], ["updated_at", "2023-02-17 19:22:19.588366"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.589246"], ["updated_at", "2023-02-17 19:22:19.589246"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.590097"], ["updated_at", "2023-02-17 19:22:19.590097"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.590889"], ["updated_at", "2023-02-17 19:22:19.590889"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.591638"], ["updated_at", "2023-02-17 19:22:19.591638"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.592389"], ["updated_at", "2023-02-17 19:22:19.592389"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.593158"], ["updated_at", "2023-02-17 19:22:19.593158"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.593888"], ["updated_at", "2023-02-17 19:22:19.593888"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.594630"], ["updated_at", "2023-02-17 19:22:19.594630"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.595379"], ["updated_at", "2023-02-17 19:22:19.595379"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.596191"], ["updated_at", "2023-02-17 19:22:19.596191"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.596997"], ["updated_at", "2023-02-17 19:22:19.596997"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.597760"], ["updated_at", "2023-02-17 19:22:19.597760"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:19.609218"], ["updated_at", "2023-02-17 19:22:19.609218"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:19.610474"], ["updated_at", "2023-02-17 19:22:19.610474"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:19.611418"], ["updated_at", "2023-02-17 19:22:19.611418"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:19.612373"], ["updated_at", "2023-02-17 19:22:19.612373"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:19.613218"], ["updated_at", "2023-02-17 19:22:19.613218"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:19.613931"], ["updated_at", "2023-02-17 19:22:19.613931"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:19.614628"], ["updated_at", "2023-02-17 19:22:19.614628"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:19.615334"], ["updated_at", "2023-02-17 19:22:19.615334"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:19.616086"], ["updated_at", "2023-02-17 19:22:19.616086"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.617112"], ["updated_at", "2023-02-17 19:22:19.617112"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.618011"], ["updated_at", "2023-02-17 19:22:19.618011"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.618790"], ["updated_at", "2023-02-17 19:22:19.618790"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.619537"], ["updated_at", "2023-02-17 19:22:19.619537"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.620294"], ["updated_at", "2023-02-17 19:22:19.620294"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.621197"], ["updated_at", "2023-02-17 19:22:19.621197"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.621995"], ["updated_at", "2023-02-17 19:22:19.621995"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.622761"], ["updated_at", "2023-02-17 19:22:19.622761"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.623548"], ["updated_at", "2023-02-17 19:22:19.623548"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.624317"], ["updated_at", "2023-02-17 19:22:19.624317"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.625146"], ["updated_at", "2023-02-17 19:22:19.625146"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:19.625921"], ["updated_at", "2023-02-17 19:22:19.625921"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.642550"], ["updated_at", "2023-02-17 19:22:19.642550"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.643677"], ["updated_at", "2023-02-17 19:22:19.643677"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.644540"], ["updated_at", "2023-02-17 19:22:19.644540"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.645326"], ["updated_at", "2023-02-17 19:22:19.645326"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.646221"], ["updated_at", "2023-02-17 19:22:19.646221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.647096"], ["updated_at", "2023-02-17 19:22:19.647096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.647885"], ["updated_at", "2023-02-17 19:22:19.647885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.648621"], ["updated_at", "2023-02-17 19:22:19.648621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.649341"], ["updated_at", "2023-02-17 19:22:19.649341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.650111"], ["updated_at", "2023-02-17 19:22:19.650111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.650860"], ["updated_at", "2023-02-17 19:22:19.650860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.651582"], ["updated_at", "2023-02-17 19:22:19.651582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.652271"], ["updated_at", "2023-02-17 19:22:19.652271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.652988"], ["updated_at", "2023-02-17 19:22:19.652988"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.653737"], ["updated_at", "2023-02-17 19:22:19.653737"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:19.654664"], ["updated_at", "2023-02-17 19:22:19.654664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.671307"], ["updated_at", "2023-02-17 19:22:19.671307"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.672296"], ["updated_at", "2023-02-17 19:22:19.672296"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.673057"], ["updated_at", "2023-02-17 19:22:19.673057"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.673775"], ["updated_at", "2023-02-17 19:22:19.673775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.674562"], ["updated_at", "2023-02-17 19:22:19.674562"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.675372"], ["updated_at", "2023-02-17 19:22:19.675372"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.676125"], ["updated_at", "2023-02-17 19:22:19.676125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.676863"], ["updated_at", "2023-02-17 19:22:19.676863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.677578"], ["updated_at", "2023-02-17 19:22:19.677578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.678320"], ["updated_at", "2023-02-17 19:22:19.678320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.679164"], ["updated_at", "2023-02-17 19:22:19.679164"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.679949"], ["updated_at", "2023-02-17 19:22:19.679949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.680684"], ["updated_at", "2023-02-17 19:22:19.680684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.681416"], ["updated_at", "2023-02-17 19:22:19.681416"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.682133"], ["updated_at", "2023-02-17 19:22:19.682133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:19.682871"], ["updated_at", "2023-02-17 19:22:19.682871"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.699448"], ["updated_at", "2023-02-17 19:22:19.699448"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.700507"], ["updated_at", "2023-02-17 19:22:19.700507"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.701307"], ["updated_at", "2023-02-17 19:22:19.701307"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.702004"], ["updated_at", "2023-02-17 19:22:19.702004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.702761"], ["updated_at", "2023-02-17 19:22:19.702761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.703501"], ["updated_at", "2023-02-17 19:22:19.703501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.704343"], ["updated_at", "2023-02-17 19:22:19.704343"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.705125"], ["updated_at", "2023-02-17 19:22:19.705125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.705922"], ["updated_at", "2023-02-17 19:22:19.705922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.706675"], ["updated_at", "2023-02-17 19:22:19.706675"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.707387"], ["updated_at", "2023-02-17 19:22:19.707387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.708186"], ["updated_at", "2023-02-17 19:22:19.708186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.709010"], ["updated_at", "2023-02-17 19:22:19.709010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.709877"], ["updated_at", "2023-02-17 19:22:19.709877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.710665"], ["updated_at", "2023-02-17 19:22:19.710665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:19.711389"], ["updated_at", "2023-02-17 19:22:19.711389"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.727745"], ["updated_at", "2023-02-17 19:22:19.727745"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.728997"], ["updated_at", "2023-02-17 19:22:19.728997"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.730114"], ["updated_at", "2023-02-17 19:22:19.730114"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.730964"], ["updated_at", "2023-02-17 19:22:19.730964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.731739"], ["updated_at", "2023-02-17 19:22:19.731739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.732535"], ["updated_at", "2023-02-17 19:22:19.732535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.733343"], ["updated_at", "2023-02-17 19:22:19.733343"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.734171"], ["updated_at", "2023-02-17 19:22:19.734171"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.735048"], ["updated_at", "2023-02-17 19:22:19.735048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.735984"], ["updated_at", "2023-02-17 19:22:19.735984"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.736841"], ["updated_at", "2023-02-17 19:22:19.736841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.737808"], ["updated_at", "2023-02-17 19:22:19.737808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.738602"], ["updated_at", "2023-02-17 19:22:19.738602"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.739337"], ["updated_at", "2023-02-17 19:22:19.739337"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.740048"], ["updated_at", "2023-02-17 19:22:19.740048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:19.740750"], ["updated_at", "2023-02-17 19:22:19.740750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.757890"], ["updated_at", "2023-02-17 19:22:19.757890"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.759061"], ["updated_at", "2023-02-17 19:22:19.759061"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.759902"], ["updated_at", "2023-02-17 19:22:19.759902"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.760605"], ["updated_at", "2023-02-17 19:22:19.760605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.761436"], ["updated_at", "2023-02-17 19:22:19.761436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.762329"], ["updated_at", "2023-02-17 19:22:19.762329"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.763275"], ["updated_at", "2023-02-17 19:22:19.763275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.764237"], ["updated_at", "2023-02-17 19:22:19.764237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.765207"], ["updated_at", "2023-02-17 19:22:19.765207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.766034"], ["updated_at", "2023-02-17 19:22:19.766034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.766787"], ["updated_at", "2023-02-17 19:22:19.766787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.767688"], ["updated_at", "2023-02-17 19:22:19.767688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.768488"], ["updated_at", "2023-02-17 19:22:19.768488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.769262"], ["updated_at", "2023-02-17 19:22:19.769262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.770036"], ["updated_at", "2023-02-17 19:22:19.770036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:19.770754"], ["updated_at", "2023-02-17 19:22:19.770754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:19.788364"], ["updated_at", "2023-02-17 19:22:19.788364"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:19.789474"], ["updated_at", "2023-02-17 19:22:19.789474"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.790279"], ["updated_at", "2023-02-17 19:22:19.790279"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.790984"], ["updated_at", "2023-02-17 19:22:19.790984"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.791756"], ["updated_at", "2023-02-17 19:22:19.791756"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.792555"], ["updated_at", "2023-02-17 19:22:19.792555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.793336"], ["updated_at", "2023-02-17 19:22:19.793336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.794060"], ["updated_at", "2023-02-17 19:22:19.794060"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.794802"], ["updated_at", "2023-02-17 19:22:19.794802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.795585"], ["updated_at", "2023-02-17 19:22:19.795585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.796381"], ["updated_at", "2023-02-17 19:22:19.796381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.797171"], ["updated_at", "2023-02-17 19:22:19.797171"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.797916"], ["updated_at", "2023-02-17 19:22:19.797916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.798600"], ["updated_at", "2023-02-17 19:22:19.798600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.799319"], ["updated_at", "2023-02-17 19:22:19.799319"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:19.800031"], ["updated_at", "2023-02-17 19:22:19.800031"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:22:19 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 15ms (Views: 11.2ms | ActiveRecord: 0.5ms | Allocations: 9578)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:19.824627"], ["updated_at", "2023-02-17 19:22:19.824627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:19.826145"], ["updated_at", "2023-02-17 19:22:19.826145"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:19.829240"], ["updated_at", "2023-02-17 19:22:19.829240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:19.830495"], ["updated_at", "2023-02-17 19:22:19.830495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:19.833245"], ["updated_at", "2023-02-17 19:22:19.833245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:19.834511"], ["updated_at", "2023-02-17 19:22:19.834511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:19.836673"], ["updated_at", "2023-02-17 19:22:19.836673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:19.838159"], ["updated_at", "2023-02-17 19:22:19.838159"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:19.839792"], ["updated_at", "2023-02-17 19:22:19.839792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:19.841098"], ["updated_at", "2023-02-17 19:22:19.841098"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:19.842536"], ["updated_at", "2023-02-17 19:22:19.842536"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:19.843830"], ["updated_at", "2023-02-17 19:22:19.843830"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:19.845415"], ["updated_at", "2023-02-17 19:22:19.845415"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:19.846700"], ["updated_at", "2023-02-17 19:22:19.846700"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:19.848164"], ["updated_at", "2023-02-17 19:22:19.848164"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:19.849364"], ["updated_at", "2023-02-17 19:22:19.849364"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:19.850839"], ["updated_at", "2023-02-17 19:22:19.850839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:19.852153"], ["updated_at", "2023-02-17 19:22:19.852153"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:19.853538"], ["updated_at", "2023-02-17 19:22:19.853538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:19.854781"], ["updated_at", "2023-02-17 19:22:19.854781"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:19.856274"], ["updated_at", "2023-02-17 19:22:19.856274"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:19.857511"], ["updated_at", "2023-02-17 19:22:19.857511"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:19.858961"], ["updated_at", "2023-02-17 19:22:19.858961"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:19.860268"], ["updated_at", "2023-02-17 19:22:19.860268"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:19.861743"], ["updated_at", "2023-02-17 19:22:19.861743"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:19.863433"], ["updated_at", "2023-02-17 19:22:19.863433"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:19.865329"], ["updated_at", "2023-02-17 19:22:19.865329"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:19.866963"], ["updated_at", "2023-02-17 19:22:19.866963"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:19.868598"], ["updated_at", "2023-02-17 19:22:19.868598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:19.870472"], ["updated_at", "2023-02-17 19:22:19.870472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:19.872179"], ["updated_at", "2023-02-17 19:22:19.872179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:19.873435"], ["updated_at", "2023-02-17 19:22:19.873435"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:19.874938"], ["updated_at", "2023-02-17 19:22:19.874938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:19.876166"], ["updated_at", "2023-02-17 19:22:19.876166"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:19.877592"], ["updated_at", "2023-02-17 19:22:19.877592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:19.879244"], ["updated_at", "2023-02-17 19:22:19.879244"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:19.880773"], ["updated_at", "2023-02-17 19:22:19.880773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:19.882057"], ["updated_at", "2023-02-17 19:22:19.882057"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:19.883527"], ["updated_at", "2023-02-17 19:22:19.883527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:19.884757"], ["updated_at", "2023-02-17 19:22:19.884757"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:19.886225"], ["updated_at", "2023-02-17 19:22:19.886225"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:19.887508"], ["updated_at", "2023-02-17 19:22:19.887508"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:19.888941"], ["updated_at", "2023-02-17 19:22:19.888941"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.890186"], ["updated_at", "2023-02-17 19:22:19.890186"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:19.891640"], ["updated_at", "2023-02-17 19:22:19.891640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:19.892838"], ["updated_at", "2023-02-17 19:22:19.892838"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:19.894362"], ["updated_at", "2023-02-17 19:22:19.894362"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:19.895866"], ["updated_at", "2023-02-17 19:22:19.895866"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:19.897323"], ["updated_at", "2023-02-17 19:22:19.897323"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:19.898573"], ["updated_at", "2023-02-17 19:22:19.898573"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:19.900040"], ["updated_at", "2023-02-17 19:22:19.900040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:19.901276"], ["updated_at", "2023-02-17 19:22:19.901276"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:19.902717"], ["updated_at", "2023-02-17 19:22:19.902717"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:19.904003"], ["updated_at", "2023-02-17 19:22:19.904003"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:19.905451"], ["updated_at", "2023-02-17 19:22:19.905451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:19.906665"], ["updated_at", "2023-02-17 19:22:19.906665"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:19.908169"], ["updated_at", "2023-02-17 19:22:19.908169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:19.909409"], ["updated_at", "2023-02-17 19:22:19.909409"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:19.910943"], ["updated_at", "2023-02-17 19:22:19.910943"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:19.912390"], ["updated_at", "2023-02-17 19:22:19.912390"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:19.913824"], ["updated_at", "2023-02-17 19:22:19.913824"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:19.915049"], ["updated_at", "2023-02-17 19:22:19.915049"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:19.916487"], ["updated_at", "2023-02-17 19:22:19.916487"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.917747"], ["updated_at", "2023-02-17 19:22:19.917747"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:19.919167"], ["updated_at", "2023-02-17 19:22:19.919167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:19.920422"], ["updated_at", "2023-02-17 19:22:19.920422"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:19.921816"], ["updated_at", "2023-02-17 19:22:19.921816"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:19.923036"], ["updated_at", "2023-02-17 19:22:19.923036"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:19.924517"], ["updated_at", "2023-02-17 19:22:19.924517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.925755"], ["updated_at", "2023-02-17 19:22:19.925755"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:19.927144"], ["updated_at", "2023-02-17 19:22:19.927144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:19.928477"], ["updated_at", "2023-02-17 19:22:19.928477"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:19.930024"], ["updated_at", "2023-02-17 19:22:19.930024"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:19.931247"], ["updated_at", "2023-02-17 19:22:19.931247"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:19.932709"], ["updated_at", "2023-02-17 19:22:19.932709"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:19.933945"], ["updated_at", "2023-02-17 19:22:19.933945"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:19.935368"], ["updated_at", "2023-02-17 19:22:19.935368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:19.936637"], ["updated_at", "2023-02-17 19:22:19.936637"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:19.938154"], ["updated_at", "2023-02-17 19:22:19.938154"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:19.939418"], ["updated_at", "2023-02-17 19:22:19.939418"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:19.940851"], ["updated_at", "2023-02-17 19:22:19.940851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:19.942134"], ["updated_at", "2023-02-17 19:22:19.942134"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:19.943519"], ["updated_at", "2023-02-17 19:22:19.943519"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:19.944791"], ["updated_at", "2023-02-17 19:22:19.944791"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:19.946362"], ["updated_at", "2023-02-17 19:22:19.946362"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:19.947615"], ["updated_at", "2023-02-17 19:22:19.947615"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:19.949038"], ["updated_at", "2023-02-17 19:22:19.949038"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:19.950309"], ["updated_at", "2023-02-17 19:22:19.950309"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:19.951708"], ["updated_at", "2023-02-17 19:22:19.951708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:19.952941"], ["updated_at", "2023-02-17 19:22:19.952941"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:19.954436"], ["updated_at", "2023-02-17 19:22:19.954436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:19.955647"], ["updated_at", "2023-02-17 19:22:19.955647"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:19.957132"], ["updated_at", "2023-02-17 19:22:19.957132"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:19.958386"], ["updated_at", "2023-02-17 19:22:19.958386"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:19.959773"], ["updated_at", "2023-02-17 19:22:19.959773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:19.961004"], ["updated_at", "2023-02-17 19:22:19.961004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:19.962524"], ["updated_at", "2023-02-17 19:22:19.962524"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:19.963983"], ["updated_at", "2023-02-17 19:22:19.963983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:19.965455"], ["updated_at", "2023-02-17 19:22:19.965455"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:19.966659"], ["updated_at", "2023-02-17 19:22:19.966659"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:19.967689"], ["updated_at", "2023-02-17 19:22:19.967689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:19.979520"], ["updated_at", "2023-02-17 19:22:19.979520"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:19.980734"], ["updated_at", "2023-02-17 19:22:19.980734"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:19.981704"], ["updated_at", "2023-02-17 19:22:19.981704"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.982624"], ["updated_at", "2023-02-17 19:22:19.982624"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.983488"], ["updated_at", "2023-02-17 19:22:19.983488"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.984211"], ["updated_at", "2023-02-17 19:22:19.984211"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.984898"], ["updated_at", "2023-02-17 19:22:19.984898"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:19.985602"], ["updated_at", "2023-02-17 19:22:19.985602"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:19.986376"], ["updated_at", "2023-02-17 19:22:19.986376"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.987287"], ["updated_at", "2023-02-17 19:22:19.987287"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.988125"], ["updated_at", "2023-02-17 19:22:19.988125"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.988898"], ["updated_at", "2023-02-17 19:22:19.988898"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.989629"], ["updated_at", "2023-02-17 19:22:19.989629"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.990391"], ["updated_at", "2023-02-17 19:22:19.990391"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.991178"], ["updated_at", "2023-02-17 19:22:19.991178"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.991942"], ["updated_at", "2023-02-17 19:22:19.991942"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.992678"], ["updated_at", "2023-02-17 19:22:19.992678"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.993431"], ["updated_at", "2023-02-17 19:22:19.993431"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.994331"], ["updated_at", "2023-02-17 19:22:19.994331"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.995356"], ["updated_at", "2023-02-17 19:22:19.995356"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:19.996346"], ["updated_at", "2023-02-17 19:22:19.996346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:20.007958"], ["updated_at", "2023-02-17 19:22:20.007958"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:20.009258"], ["updated_at", "2023-02-17 19:22:20.009258"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:20.010176"], ["updated_at", "2023-02-17 19:22:20.010176"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.011006"], ["updated_at", "2023-02-17 19:22:20.011006"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.011818"], ["updated_at", "2023-02-17 19:22:20.011818"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.012676"], ["updated_at", "2023-02-17 19:22:20.012676"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.013415"], ["updated_at", "2023-02-17 19:22:20.013415"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.014104"], ["updated_at", "2023-02-17 19:22:20.014104"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:20.014838"], ["updated_at", "2023-02-17 19:22:20.014838"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.015675"], ["updated_at", "2023-02-17 19:22:20.015675"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.016492"], ["updated_at", "2023-02-17 19:22:20.016492"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.017290"], ["updated_at", "2023-02-17 19:22:20.017290"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.018069"], ["updated_at", "2023-02-17 19:22:20.018069"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.018798"], ["updated_at", "2023-02-17 19:22:20.018798"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.019529"], ["updated_at", "2023-02-17 19:22:20.019529"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.020288"], ["updated_at", "2023-02-17 19:22:20.020288"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.021081"], ["updated_at", "2023-02-17 19:22:20.021081"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.021900"], ["updated_at", "2023-02-17 19:22:20.021900"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.022671"], ["updated_at", "2023-02-17 19:22:20.022671"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.023427"], ["updated_at", "2023-02-17 19:22:20.023427"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.024206"], ["updated_at", "2023-02-17 19:22:20.024206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.040593"], ["updated_at", "2023-02-17 19:22:20.040593"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.041722"], ["updated_at", "2023-02-17 19:22:20.041722"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.042602"], ["updated_at", "2023-02-17 19:22:20.042602"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.043329"], ["updated_at", "2023-02-17 19:22:20.043329"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.044123"], ["updated_at", "2023-02-17 19:22:20.044123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.045091"], ["updated_at", "2023-02-17 19:22:20.045091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.045955"], ["updated_at", "2023-02-17 19:22:20.045955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.046721"], ["updated_at", "2023-02-17 19:22:20.046721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.047430"], ["updated_at", "2023-02-17 19:22:20.047430"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.048149"], ["updated_at", "2023-02-17 19:22:20.048149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.048841"], ["updated_at", "2023-02-17 19:22:20.048841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.049612"], ["updated_at", "2023-02-17 19:22:20.049612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.050381"], ["updated_at", "2023-02-17 19:22:20.050381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.051119"], ["updated_at", "2023-02-17 19:22:20.051119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.051823"], ["updated_at", "2023-02-17 19:22:20.051823"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.052515"], ["updated_at", "2023-02-17 19:22:20.052515"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.068845"], ["updated_at", "2023-02-17 19:22:20.068845"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.069874"], ["updated_at", "2023-02-17 19:22:20.069874"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.070692"], ["updated_at", "2023-02-17 19:22:20.070692"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.071444"], ["updated_at", "2023-02-17 19:22:20.071444"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.072223"], ["updated_at", "2023-02-17 19:22:20.072223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.072959"], ["updated_at", "2023-02-17 19:22:20.072959"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.073668"], ["updated_at", "2023-02-17 19:22:20.073668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.074391"], ["updated_at", "2023-02-17 19:22:20.074391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.075186"], ["updated_at", "2023-02-17 19:22:20.075186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.075948"], ["updated_at", "2023-02-17 19:22:20.075948"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.076628"], ["updated_at", "2023-02-17 19:22:20.076628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.077354"], ["updated_at", "2023-02-17 19:22:20.077354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.078067"], ["updated_at", "2023-02-17 19:22:20.078067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.078985"], ["updated_at", "2023-02-17 19:22:20.078985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.079771"], ["updated_at", "2023-02-17 19:22:20.079771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.080508"], ["updated_at", "2023-02-17 19:22:20.080508"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.096842"], ["updated_at", "2023-02-17 19:22:20.096842"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.097870"], ["updated_at", "2023-02-17 19:22:20.097870"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.098634"], ["updated_at", "2023-02-17 19:22:20.098634"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.099376"], ["updated_at", "2023-02-17 19:22:20.099376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.100220"], ["updated_at", "2023-02-17 19:22:20.100220"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.101033"], ["updated_at", "2023-02-17 19:22:20.101033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.101759"], ["updated_at", "2023-02-17 19:22:20.101759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.102505"], ["updated_at", "2023-02-17 19:22:20.102505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.103234"], ["updated_at", "2023-02-17 19:22:20.103234"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.103992"], ["updated_at", "2023-02-17 19:22:20.103992"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.104737"], ["updated_at", "2023-02-17 19:22:20.104737"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.105470"], ["updated_at", "2023-02-17 19:22:20.105470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.106187"], ["updated_at", "2023-02-17 19:22:20.106187"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.106919"], ["updated_at", "2023-02-17 19:22:20.106919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.107641"], ["updated_at", "2023-02-17 19:22:20.107641"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.108423"], ["updated_at", "2023-02-17 19:22:20.108423"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.131604"], ["updated_at", "2023-02-17 19:22:20.131604"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.132668"], ["updated_at", "2023-02-17 19:22:20.132668"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.133511"], ["updated_at", "2023-02-17 19:22:20.133511"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.134315"], ["updated_at", "2023-02-17 19:22:20.134315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.135105"], ["updated_at", "2023-02-17 19:22:20.135105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.135834"], ["updated_at", "2023-02-17 19:22:20.135834"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.136541"], ["updated_at", "2023-02-17 19:22:20.136541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.137245"], ["updated_at", "2023-02-17 19:22:20.137245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.137999"], ["updated_at", "2023-02-17 19:22:20.137999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.138722"], ["updated_at", "2023-02-17 19:22:20.138722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.139412"], ["updated_at", "2023-02-17 19:22:20.139412"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.140130"], ["updated_at", "2023-02-17 19:22:20.140130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.140826"], ["updated_at", "2023-02-17 19:22:20.140826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.141530"], ["updated_at", "2023-02-17 19:22:20.141530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.142304"], ["updated_at", "2023-02-17 19:22:20.142304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.143046"], ["updated_at", "2023-02-17 19:22:20.143046"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.159061"], ["updated_at", "2023-02-17 19:22:20.159061"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.160062"], ["updated_at", "2023-02-17 19:22:20.160062"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.160846"], ["updated_at", "2023-02-17 19:22:20.160846"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.161776"], ["updated_at", "2023-02-17 19:22:20.161776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.162691"], ["updated_at", "2023-02-17 19:22:20.162691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.163531"], ["updated_at", "2023-02-17 19:22:20.163531"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.164279"], ["updated_at", "2023-02-17 19:22:20.164279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.165005"], ["updated_at", "2023-02-17 19:22:20.165005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.165741"], ["updated_at", "2023-02-17 19:22:20.165741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.166463"], ["updated_at", "2023-02-17 19:22:20.166463"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.167226"], ["updated_at", "2023-02-17 19:22:20.167226"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.167960"], ["updated_at", "2023-02-17 19:22:20.167960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.168664"], ["updated_at", "2023-02-17 19:22:20.168664"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.169361"], ["updated_at", "2023-02-17 19:22:20.169361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.170064"], ["updated_at", "2023-02-17 19:22:20.170064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.170787"], ["updated_at", "2023-02-17 19:22:20.170787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.186987"], ["updated_at", "2023-02-17 19:22:20.186987"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.188022"], ["updated_at", "2023-02-17 19:22:20.188022"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.188792"], ["updated_at", "2023-02-17 19:22:20.188792"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.189730"], ["updated_at", "2023-02-17 19:22:20.189730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.190808"], ["updated_at", "2023-02-17 19:22:20.190808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.191649"], ["updated_at", "2023-02-17 19:22:20.191649"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.192446"], ["updated_at", "2023-02-17 19:22:20.192446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.193235"], ["updated_at", "2023-02-17 19:22:20.193235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.193979"], ["updated_at", "2023-02-17 19:22:20.193979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.194806"], ["updated_at", "2023-02-17 19:22:20.194806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.195734"], ["updated_at", "2023-02-17 19:22:20.195734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.196612"], ["updated_at", "2023-02-17 19:22:20.196612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.197348"], ["updated_at", "2023-02-17 19:22:20.197348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.198055"], ["updated_at", "2023-02-17 19:22:20.198055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.198763"], ["updated_at", "2023-02-17 19:22:20.198763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.199605"], ["updated_at", "2023-02-17 19:22:20.199605"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:22:20 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:20.217829"], ["updated_at", "2023-02-17 19:22:20.217829"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:20.219403"], ["updated_at", "2023-02-17 19:22:20.219403"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:20.222538"], ["updated_at", "2023-02-17 19:22:20.222538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:20.223726"], ["updated_at", "2023-02-17 19:22:20.223726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:20.226607"], ["updated_at", "2023-02-17 19:22:20.226607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:20.227812"], ["updated_at", "2023-02-17 19:22:20.227812"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:20.230400"], ["updated_at", "2023-02-17 19:22:20.230400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:20.231894"], ["updated_at", "2023-02-17 19:22:20.231894"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:20.233435"], ["updated_at", "2023-02-17 19:22:20.233435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:20.234796"], ["updated_at", "2023-02-17 19:22:20.234796"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:20.236225"], ["updated_at", "2023-02-17 19:22:20.236225"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:20.237444"], ["updated_at", "2023-02-17 19:22:20.237444"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:20.238801"], ["updated_at", "2023-02-17 19:22:20.238801"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:20.240436"], ["updated_at", "2023-02-17 19:22:20.240436"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:20.241910"], ["updated_at", "2023-02-17 19:22:20.241910"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:20.243179"], ["updated_at", "2023-02-17 19:22:20.243179"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:20.244583"], ["updated_at", "2023-02-17 19:22:20.244583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:20.245893"], ["updated_at", "2023-02-17 19:22:20.245893"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:20.247640"], ["updated_at", "2023-02-17 19:22:20.247640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:20.249033"], ["updated_at", "2023-02-17 19:22:20.249033"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:20.250854"], ["updated_at", "2023-02-17 19:22:20.250854"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:20.252139"], ["updated_at", "2023-02-17 19:22:20.252139"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:20.253511"], ["updated_at", "2023-02-17 19:22:20.253511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:20.254678"], ["updated_at", "2023-02-17 19:22:20.254678"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:20.256047"], ["updated_at", "2023-02-17 19:22:20.256047"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:20.257223"], ["updated_at", "2023-02-17 19:22:20.257223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:20.258599"], ["updated_at", "2023-02-17 19:22:20.258599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:20.260007"], ["updated_at", "2023-02-17 19:22:20.260007"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:20.261492"], ["updated_at", "2023-02-17 19:22:20.261492"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:20.263058"], ["updated_at", "2023-02-17 19:22:20.263058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:20.264633"], ["updated_at", "2023-02-17 19:22:20.264633"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:20.265883"], ["updated_at", "2023-02-17 19:22:20.265883"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:20.267296"], ["updated_at", "2023-02-17 19:22:20.267296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:20.268569"], ["updated_at", "2023-02-17 19:22:20.268569"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:20.270345"], ["updated_at", "2023-02-17 19:22:20.270345"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:20.271656"], ["updated_at", "2023-02-17 19:22:20.271656"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:20.273033"], ["updated_at", "2023-02-17 19:22:20.273033"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:20.274208"], ["updated_at", "2023-02-17 19:22:20.274208"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:20.275561"], ["updated_at", "2023-02-17 19:22:20.275561"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:20.276788"], ["updated_at", "2023-02-17 19:22:20.276788"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:20.278223"], ["updated_at", "2023-02-17 19:22:20.278223"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:20.279830"], ["updated_at", "2023-02-17 19:22:20.279830"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:20.281621"], ["updated_at", "2023-02-17 19:22:20.281621"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:20.282868"], ["updated_at", "2023-02-17 19:22:20.282868"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:20.284295"], ["updated_at", "2023-02-17 19:22:20.284295"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:20.285519"], ["updated_at", "2023-02-17 19:22:20.285519"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:20.286905"], ["updated_at", "2023-02-17 19:22:20.286905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:20.288080"], ["updated_at", "2023-02-17 19:22:20.288080"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:20.289496"], ["updated_at", "2023-02-17 19:22:20.289496"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:20.290810"], ["updated_at", "2023-02-17 19:22:20.290810"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:20.292231"], ["updated_at", "2023-02-17 19:22:20.292231"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:20.293483"], ["updated_at", "2023-02-17 19:22:20.293483"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:20.294914"], ["updated_at", "2023-02-17 19:22:20.294914"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:20.296464"], ["updated_at", "2023-02-17 19:22:20.296464"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:20.298078"], ["updated_at", "2023-02-17 19:22:20.298078"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:20.299370"], ["updated_at", "2023-02-17 19:22:20.299370"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:20.301185"], ["updated_at", "2023-02-17 19:22:20.301185"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:20.302459"], ["updated_at", "2023-02-17 19:22:20.302459"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:20.303857"], ["updated_at", "2023-02-17 19:22:20.303857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:20.305050"], ["updated_at", "2023-02-17 19:22:20.305050"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:20.306394"], ["updated_at", "2023-02-17 19:22:20.306394"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:20.307552"], ["updated_at", "2023-02-17 19:22:20.307552"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:20.308951"], ["updated_at", "2023-02-17 19:22:20.308951"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:20.310631"], ["updated_at", "2023-02-17 19:22:20.310631"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:20.312234"], ["updated_at", "2023-02-17 19:22:20.312234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:20.313827"], ["updated_at", "2023-02-17 19:22:20.313827"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:20.315298"], ["updated_at", "2023-02-17 19:22:20.315298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:20.316504"], ["updated_at", "2023-02-17 19:22:20.316504"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:20.317957"], ["updated_at", "2023-02-17 19:22:20.317957"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:20.319182"], ["updated_at", "2023-02-17 19:22:20.319182"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:20.320726"], ["updated_at", "2023-02-17 19:22:20.320726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:20.321939"], ["updated_at", "2023-02-17 19:22:20.321939"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:20.323307"], ["updated_at", "2023-02-17 19:22:20.323307"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:20.324473"], ["updated_at", "2023-02-17 19:22:20.324473"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:20.325905"], ["updated_at", "2023-02-17 19:22:20.325905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:20.327128"], ["updated_at", "2023-02-17 19:22:20.327128"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:20.328611"], ["updated_at", "2023-02-17 19:22:20.328611"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:20.330390"], ["updated_at", "2023-02-17 19:22:20.330390"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:20.332009"], ["updated_at", "2023-02-17 19:22:20.332009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:20.333219"], ["updated_at", "2023-02-17 19:22:20.333219"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:20.334654"], ["updated_at", "2023-02-17 19:22:20.334654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:20.335889"], ["updated_at", "2023-02-17 19:22:20.335889"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:20.337262"], ["updated_at", "2023-02-17 19:22:20.337262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:20.338430"], ["updated_at", "2023-02-17 19:22:20.338430"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:20.340146"], ["updated_at", "2023-02-17 19:22:20.340146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:20.341543"], ["updated_at", "2023-02-17 19:22:20.341543"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:20.342991"], ["updated_at", "2023-02-17 19:22:20.342991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:20.344191"], ["updated_at", "2023-02-17 19:22:20.344191"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:20.345684"], ["updated_at", "2023-02-17 19:22:20.345684"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:20.346930"], ["updated_at", "2023-02-17 19:22:20.346930"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:20.348291"], ["updated_at", "2023-02-17 19:22:20.348291"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:20.349515"], ["updated_at", "2023-02-17 19:22:20.349515"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:20.351080"], ["updated_at", "2023-02-17 19:22:20.351080"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:20.352300"], ["updated_at", "2023-02-17 19:22:20.352300"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:20.353671"], ["updated_at", "2023-02-17 19:22:20.353671"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:20.354760"], ["updated_at", "2023-02-17 19:22:20.354760"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:20.355958"], ["updated_at", "2023-02-17 19:22:20.355958"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:20.357367"], ["updated_at", "2023-02-17 19:22:20.357367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:20.358844"], ["updated_at", "2023-02-17 19:22:20.358844"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:20.360305"], ["updated_at", "2023-02-17 19:22:20.360305"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:20.361559"], ["updated_at", "2023-02-17 19:22:20.361559"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:20.373273"], ["updated_at", "2023-02-17 19:22:20.373273"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:20.374550"], ["updated_at", "2023-02-17 19:22:20.374550"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:20.375510"], ["updated_at", "2023-02-17 19:22:20.375510"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.376368"], ["updated_at", "2023-02-17 19:22:20.376368"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.377156"], ["updated_at", "2023-02-17 19:22:20.377156"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.377939"], ["updated_at", "2023-02-17 19:22:20.377939"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.378894"], ["updated_at", "2023-02-17 19:22:20.378894"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.379882"], ["updated_at", "2023-02-17 19:22:20.379882"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:20.380834"], ["updated_at", "2023-02-17 19:22:20.380834"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.381743"], ["updated_at", "2023-02-17 19:22:20.381743"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.382647"], ["updated_at", "2023-02-17 19:22:20.382647"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.383432"], ["updated_at", "2023-02-17 19:22:20.383432"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.384177"], ["updated_at", "2023-02-17 19:22:20.384177"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.384927"], ["updated_at", "2023-02-17 19:22:20.384927"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.385671"], ["updated_at", "2023-02-17 19:22:20.385671"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.386489"], ["updated_at", "2023-02-17 19:22:20.386489"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.387280"], ["updated_at", "2023-02-17 19:22:20.387280"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.388012"], ["updated_at", "2023-02-17 19:22:20.388012"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.388749"], ["updated_at", "2023-02-17 19:22:20.388749"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.389611"], ["updated_at", "2023-02-17 19:22:20.389611"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.390736"], ["updated_at", "2023-02-17 19:22:20.390736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:20.403155"], ["updated_at", "2023-02-17 19:22:20.403155"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:20.404469"], ["updated_at", "2023-02-17 19:22:20.404469"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:20.405377"], ["updated_at", "2023-02-17 19:22:20.405377"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.406232"], ["updated_at", "2023-02-17 19:22:20.406232"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.407044"], ["updated_at", "2023-02-17 19:22:20.407044"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.407748"], ["updated_at", "2023-02-17 19:22:20.407748"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.408474"], ["updated_at", "2023-02-17 19:22:20.408474"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.409186"], ["updated_at", "2023-02-17 19:22:20.409186"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:20.410054"], ["updated_at", "2023-02-17 19:22:20.410054"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.411070"], ["updated_at", "2023-02-17 19:22:20.411070"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.412165"], ["updated_at", "2023-02-17 19:22:20.412165"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.413054"], ["updated_at", "2023-02-17 19:22:20.413054"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.413820"], ["updated_at", "2023-02-17 19:22:20.413820"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.414581"], ["updated_at", "2023-02-17 19:22:20.414581"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.415355"], ["updated_at", "2023-02-17 19:22:20.415355"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.416124"], ["updated_at", "2023-02-17 19:22:20.416124"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.416907"], ["updated_at", "2023-02-17 19:22:20.416907"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.417653"], ["updated_at", "2023-02-17 19:22:20.417653"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.418398"], ["updated_at", "2023-02-17 19:22:20.418398"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.419190"], ["updated_at", "2023-02-17 19:22:20.419190"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.420319"], ["updated_at", "2023-02-17 19:22:20.420319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.440068"], ["updated_at", "2023-02-17 19:22:20.440068"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.441287"], ["updated_at", "2023-02-17 19:22:20.441287"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.442185"], ["updated_at", "2023-02-17 19:22:20.442185"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.442924"], ["updated_at", "2023-02-17 19:22:20.442924"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.443699"], ["updated_at", "2023-02-17 19:22:20.443699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.444683"], ["updated_at", "2023-02-17 19:22:20.444683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.445626"], ["updated_at", "2023-02-17 19:22:20.445626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.446392"], ["updated_at", "2023-02-17 19:22:20.446392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.447083"], ["updated_at", "2023-02-17 19:22:20.447083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.447797"], ["updated_at", "2023-02-17 19:22:20.447797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.448511"], ["updated_at", "2023-02-17 19:22:20.448511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.449248"], ["updated_at", "2023-02-17 19:22:20.449248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.450277"], ["updated_at", "2023-02-17 19:22:20.450277"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.451273"], ["updated_at", "2023-02-17 19:22:20.451273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.452010"], ["updated_at", "2023-02-17 19:22:20.452010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.452704"], ["updated_at", "2023-02-17 19:22:20.452704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.469388"], ["updated_at", "2023-02-17 19:22:20.469388"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.470560"], ["updated_at", "2023-02-17 19:22:20.470560"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.471398"], ["updated_at", "2023-02-17 19:22:20.471398"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.472090"], ["updated_at", "2023-02-17 19:22:20.472090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.472839"], ["updated_at", "2023-02-17 19:22:20.472839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.473634"], ["updated_at", "2023-02-17 19:22:20.473634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.474407"], ["updated_at", "2023-02-17 19:22:20.474407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.475157"], ["updated_at", "2023-02-17 19:22:20.475157"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.475872"], ["updated_at", "2023-02-17 19:22:20.475872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.476564"], ["updated_at", "2023-02-17 19:22:20.476564"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.477268"], ["updated_at", "2023-02-17 19:22:20.477268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.478043"], ["updated_at", "2023-02-17 19:22:20.478043"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.478805"], ["updated_at", "2023-02-17 19:22:20.478805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.479519"], ["updated_at", "2023-02-17 19:22:20.479519"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.480530"], ["updated_at", "2023-02-17 19:22:20.480530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.481497"], ["updated_at", "2023-02-17 19:22:20.481497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.498028"], ["updated_at", "2023-02-17 19:22:20.498028"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.499072"], ["updated_at", "2023-02-17 19:22:20.499072"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.499923"], ["updated_at", "2023-02-17 19:22:20.499923"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.500823"], ["updated_at", "2023-02-17 19:22:20.500823"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.501663"], ["updated_at", "2023-02-17 19:22:20.501663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.502426"], ["updated_at", "2023-02-17 19:22:20.502426"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.503159"], ["updated_at", "2023-02-17 19:22:20.503159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.503912"], ["updated_at", "2023-02-17 19:22:20.503912"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.504644"], ["updated_at", "2023-02-17 19:22:20.504644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.505364"], ["updated_at", "2023-02-17 19:22:20.505364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.506068"], ["updated_at", "2023-02-17 19:22:20.506068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.506746"], ["updated_at", "2023-02-17 19:22:20.506746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.507493"], ["updated_at", "2023-02-17 19:22:20.507493"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.508240"], ["updated_at", "2023-02-17 19:22:20.508240"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.508947"], ["updated_at", "2023-02-17 19:22:20.508947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.509675"], ["updated_at", "2023-02-17 19:22:20.509675"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.526587"], ["updated_at", "2023-02-17 19:22:20.526587"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.527594"], ["updated_at", "2023-02-17 19:22:20.527594"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.528408"], ["updated_at", "2023-02-17 19:22:20.528408"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.529176"], ["updated_at", "2023-02-17 19:22:20.529176"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.529956"], ["updated_at", "2023-02-17 19:22:20.529956"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.530839"], ["updated_at", "2023-02-17 19:22:20.530839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.531597"], ["updated_at", "2023-02-17 19:22:20.531597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.532355"], ["updated_at", "2023-02-17 19:22:20.532355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.533085"], ["updated_at", "2023-02-17 19:22:20.533085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.533800"], ["updated_at", "2023-02-17 19:22:20.533800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.534522"], ["updated_at", "2023-02-17 19:22:20.534522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.535225"], ["updated_at", "2023-02-17 19:22:20.535225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.535932"], ["updated_at", "2023-02-17 19:22:20.535932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.536652"], ["updated_at", "2023-02-17 19:22:20.536652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.537396"], ["updated_at", "2023-02-17 19:22:20.537396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.538103"], ["updated_at", "2023-02-17 19:22:20.538103"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.554693"], ["updated_at", "2023-02-17 19:22:20.554693"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.555669"], ["updated_at", "2023-02-17 19:22:20.555669"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.556421"], ["updated_at", "2023-02-17 19:22:20.556421"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.557158"], ["updated_at", "2023-02-17 19:22:20.557158"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.557947"], ["updated_at", "2023-02-17 19:22:20.557947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.558675"], ["updated_at", "2023-02-17 19:22:20.558675"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.559398"], ["updated_at", "2023-02-17 19:22:20.559398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.560149"], ["updated_at", "2023-02-17 19:22:20.560149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.561041"], ["updated_at", "2023-02-17 19:22:20.561041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.561850"], ["updated_at", "2023-02-17 19:22:20.561850"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.562584"], ["updated_at", "2023-02-17 19:22:20.562584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.563294"], ["updated_at", "2023-02-17 19:22:20.563294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.563979"], ["updated_at", "2023-02-17 19:22:20.563979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.564667"], ["updated_at", "2023-02-17 19:22:20.564667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.565424"], ["updated_at", "2023-02-17 19:22:20.565424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.566170"], ["updated_at", "2023-02-17 19:22:20.566170"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.582940"], ["updated_at", "2023-02-17 19:22:20.582940"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.583917"], ["updated_at", "2023-02-17 19:22:20.583917"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.584698"], ["updated_at", "2023-02-17 19:22:20.584698"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.585411"], ["updated_at", "2023-02-17 19:22:20.585411"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.586211"], ["updated_at", "2023-02-17 19:22:20.586211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.586994"], ["updated_at", "2023-02-17 19:22:20.586994"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.587677"], ["updated_at", "2023-02-17 19:22:20.587677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.588403"], ["updated_at", "2023-02-17 19:22:20.588403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.589125"], ["updated_at", "2023-02-17 19:22:20.589125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.589811"], ["updated_at", "2023-02-17 19:22:20.589811"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.590715"], ["updated_at", "2023-02-17 19:22:20.590715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.591506"], ["updated_at", "2023-02-17 19:22:20.591506"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.592219"], ["updated_at", "2023-02-17 19:22:20.592219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.592944"], ["updated_at", "2023-02-17 19:22:20.592944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.593632"], ["updated_at", "2023-02-17 19:22:20.593632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:20.594366"], ["updated_at", "2023-02-17 19:22:20.594366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:22:20 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:20.603228"], ["updated_at", "2023-02-17 19:22:20.603228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:20.604689"], ["updated_at", "2023-02-17 19:22:20.604689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:20.607582"], ["updated_at", "2023-02-17 19:22:20.607582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:20.608784"], ["updated_at", "2023-02-17 19:22:20.608784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:20.612497"], ["updated_at", "2023-02-17 19:22:20.612497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:20.613841"], ["updated_at", "2023-02-17 19:22:20.613841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:20.616022"], ["updated_at", "2023-02-17 19:22:20.616022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:20.617463"], ["updated_at", "2023-02-17 19:22:20.617463"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:20.619201"], ["updated_at", "2023-02-17 19:22:20.619201"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:20.620717"], ["updated_at", "2023-02-17 19:22:20.620717"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:20.622321"], ["updated_at", "2023-02-17 19:22:20.622321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:20.623709"], ["updated_at", "2023-02-17 19:22:20.623709"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:20.625188"], ["updated_at", "2023-02-17 19:22:20.625188"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:20.626474"], ["updated_at", "2023-02-17 19:22:20.626474"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:20.628026"], ["updated_at", "2023-02-17 19:22:20.628026"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:20.629625"], ["updated_at", "2023-02-17 19:22:20.629625"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:20.631566"], ["updated_at", "2023-02-17 19:22:20.631566"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:20.633151"], ["updated_at", "2023-02-17 19:22:20.633151"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:20.634615"], ["updated_at", "2023-02-17 19:22:20.634615"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:20.635826"], ["updated_at", "2023-02-17 19:22:20.635826"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:20.637326"], ["updated_at", "2023-02-17 19:22:20.637326"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:20.638754"], ["updated_at", "2023-02-17 19:22:20.638754"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:20.640292"], ["updated_at", "2023-02-17 19:22:20.640292"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:20.642003"], ["updated_at", "2023-02-17 19:22:20.642003"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:20.643589"], ["updated_at", "2023-02-17 19:22:20.643589"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:20.644999"], ["updated_at", "2023-02-17 19:22:20.644999"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:20.646878"], ["updated_at", "2023-02-17 19:22:20.646878"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:20.648198"], ["updated_at", "2023-02-17 19:22:20.648198"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:20.649764"], ["updated_at", "2023-02-17 19:22:20.649764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:20.651324"], ["updated_at", "2023-02-17 19:22:20.651324"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:20.652943"], ["updated_at", "2023-02-17 19:22:20.652943"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:20.654267"], ["updated_at", "2023-02-17 19:22:20.654267"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:20.655802"], ["updated_at", "2023-02-17 19:22:20.655802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:20.657148"], ["updated_at", "2023-02-17 19:22:20.657148"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:20.658693"], ["updated_at", "2023-02-17 19:22:20.658693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:20.660150"], ["updated_at", "2023-02-17 19:22:20.660150"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:20.662146"], ["updated_at", "2023-02-17 19:22:20.662146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:20.663814"], ["updated_at", "2023-02-17 19:22:20.663814"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:20.665393"], ["updated_at", "2023-02-17 19:22:20.665393"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:20.666772"], ["updated_at", "2023-02-17 19:22:20.666772"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:20.668315"], ["updated_at", "2023-02-17 19:22:20.668315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:20.669780"], ["updated_at", "2023-02-17 19:22:20.669780"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:20.671749"], ["updated_at", "2023-02-17 19:22:20.671749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:20.673164"], ["updated_at", "2023-02-17 19:22:20.673164"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:20.674797"], ["updated_at", "2023-02-17 19:22:20.674797"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:20.676230"], ["updated_at", "2023-02-17 19:22:20.676230"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:20.677986"], ["updated_at", "2023-02-17 19:22:20.677986"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:20.679730"], ["updated_at", "2023-02-17 19:22:20.679730"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:20.681570"], ["updated_at", "2023-02-17 19:22:20.681570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:20.683108"], ["updated_at", "2023-02-17 19:22:20.683108"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:20.684667"], ["updated_at", "2023-02-17 19:22:20.684667"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:20.686093"], ["updated_at", "2023-02-17 19:22:20.686093"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:20.687769"], ["updated_at", "2023-02-17 19:22:20.687769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:20.689253"], ["updated_at", "2023-02-17 19:22:20.689253"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:20.691256"], ["updated_at", "2023-02-17 19:22:20.691256"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:20.692832"], ["updated_at", "2023-02-17 19:22:20.692832"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:20.694448"], ["updated_at", "2023-02-17 19:22:20.694448"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:20.696233"], ["updated_at", "2023-02-17 19:22:20.696233"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:20.697980"], ["updated_at", "2023-02-17 19:22:20.697980"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:20.699433"], ["updated_at", "2023-02-17 19:22:20.699433"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:20.701467"], ["updated_at", "2023-02-17 19:22:20.701467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:20.703083"], ["updated_at", "2023-02-17 19:22:20.703083"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:20.704792"], ["updated_at", "2023-02-17 19:22:20.704792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:20.706275"], ["updated_at", "2023-02-17 19:22:20.706275"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:20.707957"], ["updated_at", "2023-02-17 19:22:20.707957"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:20.709465"], ["updated_at", "2023-02-17 19:22:20.709465"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:20.711304"], ["updated_at", "2023-02-17 19:22:20.711304"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:20.713097"], ["updated_at", "2023-02-17 19:22:20.713097"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:20.714786"], ["updated_at", "2023-02-17 19:22:20.714786"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:20.716260"], ["updated_at", "2023-02-17 19:22:20.716260"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:20.718076"], ["updated_at", "2023-02-17 19:22:20.718076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:20.719560"], ["updated_at", "2023-02-17 19:22:20.719560"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:20.721596"], ["updated_at", "2023-02-17 19:22:20.721596"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:20.723125"], ["updated_at", "2023-02-17 19:22:20.723125"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:20.724793"], ["updated_at", "2023-02-17 19:22:20.724793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:20.726360"], ["updated_at", "2023-02-17 19:22:20.726360"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:20.728146"], ["updated_at", "2023-02-17 19:22:20.728146"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:20.729989"], ["updated_at", "2023-02-17 19:22:20.729989"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:20.731876"], ["updated_at", "2023-02-17 19:22:20.731876"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:20.733427"], ["updated_at", "2023-02-17 19:22:20.733427"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:20.735203"], ["updated_at", "2023-02-17 19:22:20.735203"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:20.736667"], ["updated_at", "2023-02-17 19:22:20.736667"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:20.738411"], ["updated_at", "2023-02-17 19:22:20.738411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:20.739966"], ["updated_at", "2023-02-17 19:22:20.739966"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:20.741755"], ["updated_at", "2023-02-17 19:22:20.741755"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:20.743274"], ["updated_at", "2023-02-17 19:22:20.743274"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:20.745086"], ["updated_at", "2023-02-17 19:22:20.745086"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:20.746622"], ["updated_at", "2023-02-17 19:22:20.746622"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:20.748183"], ["updated_at", "2023-02-17 19:22:20.748183"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:20.749560"], ["updated_at", "2023-02-17 19:22:20.749560"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:20.751440"], ["updated_at", "2023-02-17 19:22:20.751440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:20.752785"], ["updated_at", "2023-02-17 19:22:20.752785"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:20.754348"], ["updated_at", "2023-02-17 19:22:20.754348"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:20.755715"], ["updated_at", "2023-02-17 19:22:20.755715"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:20.757226"], ["updated_at", "2023-02-17 19:22:20.757226"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:20.758480"], ["updated_at", "2023-02-17 19:22:20.758480"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:20.760044"], ["updated_at", "2023-02-17 19:22:20.760044"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:20.761900"], ["updated_at", "2023-02-17 19:22:20.761900"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:20.763805"], ["updated_at", "2023-02-17 19:22:20.763805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:20.765145"], ["updated_at", "2023-02-17 19:22:20.765145"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:20.766340"], ["updated_at", "2023-02-17 19:22:20.766340"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:20.778667"], ["updated_at", "2023-02-17 19:22:20.778667"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:20.780405"], ["updated_at", "2023-02-17 19:22:20.780405"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:20.781669"], ["updated_at", "2023-02-17 19:22:20.781669"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.782675"], ["updated_at", "2023-02-17 19:22:20.782675"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.783587"], ["updated_at", "2023-02-17 19:22:20.783587"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.784464"], ["updated_at", "2023-02-17 19:22:20.784464"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.785232"], ["updated_at", "2023-02-17 19:22:20.785232"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.785987"], ["updated_at", "2023-02-17 19:22:20.785987"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:20.786790"], ["updated_at", "2023-02-17 19:22:20.786790"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.787752"], ["updated_at", "2023-02-17 19:22:20.787752"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.788777"], ["updated_at", "2023-02-17 19:22:20.788777"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.789837"], ["updated_at", "2023-02-17 19:22:20.789837"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.791016"], ["updated_at", "2023-02-17 19:22:20.791016"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.791945"], ["updated_at", "2023-02-17 19:22:20.791945"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.792839"], ["updated_at", "2023-02-17 19:22:20.792839"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.793684"], ["updated_at", "2023-02-17 19:22:20.793684"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.794536"], ["updated_at", "2023-02-17 19:22:20.794536"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.795681"], ["updated_at", "2023-02-17 19:22:20.795681"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.796750"], ["updated_at", "2023-02-17 19:22:20.796750"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.797627"], ["updated_at", "2023-02-17 19:22:20.797627"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.798467"], ["updated_at", "2023-02-17 19:22:20.798467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:20.811656"], ["updated_at", "2023-02-17 19:22:20.811656"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:20.813262"], ["updated_at", "2023-02-17 19:22:20.813262"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:20.814395"], ["updated_at", "2023-02-17 19:22:20.814395"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.815423"], ["updated_at", "2023-02-17 19:22:20.815423"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.816336"], ["updated_at", "2023-02-17 19:22:20.816336"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.817262"], ["updated_at", "2023-02-17 19:22:20.817262"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.818138"], ["updated_at", "2023-02-17 19:22:20.818138"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:20.818971"], ["updated_at", "2023-02-17 19:22:20.818971"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:20.820109"], ["updated_at", "2023-02-17 19:22:20.820109"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.821405"], ["updated_at", "2023-02-17 19:22:20.821405"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.822503"], ["updated_at", "2023-02-17 19:22:20.822503"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.823431"], ["updated_at", "2023-02-17 19:22:20.823431"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.824286"], ["updated_at", "2023-02-17 19:22:20.824286"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.825195"], ["updated_at", "2023-02-17 19:22:20.825195"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.826202"], ["updated_at", "2023-02-17 19:22:20.826202"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.827120"], ["updated_at", "2023-02-17 19:22:20.827120"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.828219"], ["updated_at", "2023-02-17 19:22:20.828219"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.829364"], ["updated_at", "2023-02-17 19:22:20.829364"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.830491"], ["updated_at", "2023-02-17 19:22:20.830491"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.831430"], ["updated_at", "2023-02-17 19:22:20.831430"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:20.832284"], ["updated_at", "2023-02-17 19:22:20.832284"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.853310"], ["updated_at", "2023-02-17 19:22:20.853310"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.854584"], ["updated_at", "2023-02-17 19:22:20.854584"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.855800"], ["updated_at", "2023-02-17 19:22:20.855800"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.856757"], ["updated_at", "2023-02-17 19:22:20.856757"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.857748"], ["updated_at", "2023-02-17 19:22:20.857748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.858728"], ["updated_at", "2023-02-17 19:22:20.858728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.859704"], ["updated_at", "2023-02-17 19:22:20.859704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.860748"], ["updated_at", "2023-02-17 19:22:20.860748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.861786"], ["updated_at", "2023-02-17 19:22:20.861786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.862961"], ["updated_at", "2023-02-17 19:22:20.862961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.864146"], ["updated_at", "2023-02-17 19:22:20.864146"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.865325"], ["updated_at", "2023-02-17 19:22:20.865325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.866449"], ["updated_at", "2023-02-17 19:22:20.866449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.867608"], ["updated_at", "2023-02-17 19:22:20.867608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.868728"], ["updated_at", "2023-02-17 19:22:20.868728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:20.869800"], ["updated_at", "2023-02-17 19:22:20.869800"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.890557"], ["updated_at", "2023-02-17 19:22:20.890557"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.891723"], ["updated_at", "2023-02-17 19:22:20.891723"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.892641"], ["updated_at", "2023-02-17 19:22:20.892641"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.893543"], ["updated_at", "2023-02-17 19:22:20.893543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.894568"], ["updated_at", "2023-02-17 19:22:20.894568"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.895706"], ["updated_at", "2023-02-17 19:22:20.895706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.896821"], ["updated_at", "2023-02-17 19:22:20.896821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.897759"], ["updated_at", "2023-02-17 19:22:20.897759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.898633"], ["updated_at", "2023-02-17 19:22:20.898633"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.899550"], ["updated_at", "2023-02-17 19:22:20.899550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.900680"], ["updated_at", "2023-02-17 19:22:20.900680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.901775"], ["updated_at", "2023-02-17 19:22:20.901775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.902710"], ["updated_at", "2023-02-17 19:22:20.902710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.903647"], ["updated_at", "2023-02-17 19:22:20.903647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.904527"], ["updated_at", "2023-02-17 19:22:20.904527"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:20.905392"], ["updated_at", "2023-02-17 19:22:20.905392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.923544"], ["updated_at", "2023-02-17 19:22:20.923544"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.924671"], ["updated_at", "2023-02-17 19:22:20.924671"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.925474"], ["updated_at", "2023-02-17 19:22:20.925474"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.926268"], ["updated_at", "2023-02-17 19:22:20.926268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.927125"], ["updated_at", "2023-02-17 19:22:20.927125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.927974"], ["updated_at", "2023-02-17 19:22:20.927974"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.929072"], ["updated_at", "2023-02-17 19:22:20.929072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.930037"], ["updated_at", "2023-02-17 19:22:20.930037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.931137"], ["updated_at", "2023-02-17 19:22:20.931137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.931939"], ["updated_at", "2023-02-17 19:22:20.931939"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.932661"], ["updated_at", "2023-02-17 19:22:20.932661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.933442"], ["updated_at", "2023-02-17 19:22:20.933442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.934201"], ["updated_at", "2023-02-17 19:22:20.934201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.934930"], ["updated_at", "2023-02-17 19:22:20.934930"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.935615"], ["updated_at", "2023-02-17 19:22:20.935615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:20.936345"], ["updated_at", "2023-02-17 19:22:20.936345"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.953041"], ["updated_at", "2023-02-17 19:22:20.953041"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.954091"], ["updated_at", "2023-02-17 19:22:20.954091"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.954949"], ["updated_at", "2023-02-17 19:22:20.954949"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.955655"], ["updated_at", "2023-02-17 19:22:20.955655"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.956441"], ["updated_at", "2023-02-17 19:22:20.956441"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.957192"], ["updated_at", "2023-02-17 19:22:20.957192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.957896"], ["updated_at", "2023-02-17 19:22:20.957896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.958655"], ["updated_at", "2023-02-17 19:22:20.958655"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.959421"], ["updated_at", "2023-02-17 19:22:20.959421"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.960261"], ["updated_at", "2023-02-17 19:22:20.960261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.961348"], ["updated_at", "2023-02-17 19:22:20.961348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.962206"], ["updated_at", "2023-02-17 19:22:20.962206"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.962977"], ["updated_at", "2023-02-17 19:22:20.962977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.963709"], ["updated_at", "2023-02-17 19:22:20.963709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.964432"], ["updated_at", "2023-02-17 19:22:20.964432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:20.965172"], ["updated_at", "2023-02-17 19:22:20.965172"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:20.981534"], ["updated_at", "2023-02-17 19:22:20.981534"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:20.982579"], ["updated_at", "2023-02-17 19:22:20.982579"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:20.983366"], ["updated_at", "2023-02-17 19:22:20.983366"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:20.984151"], ["updated_at", "2023-02-17 19:22:20.984151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.984950"], ["updated_at", "2023-02-17 19:22:20.984950"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.985692"], ["updated_at", "2023-02-17 19:22:20.985692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.986394"], ["updated_at", "2023-02-17 19:22:20.986394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.987110"], ["updated_at", "2023-02-17 19:22:20.987110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.987853"], ["updated_at", "2023-02-17 19:22:20.987853"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.988596"], ["updated_at", "2023-02-17 19:22:20.988596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.989310"], ["updated_at", "2023-02-17 19:22:20.989310"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.990024"], ["updated_at", "2023-02-17 19:22:20.990024"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.991122"], ["updated_at", "2023-02-17 19:22:20.991122"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.991999"], ["updated_at", "2023-02-17 19:22:20.991999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.992766"], ["updated_at", "2023-02-17 19:22:20.992766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:20.993496"], ["updated_at", "2023-02-17 19:22:20.993496"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.009965"], ["updated_at", "2023-02-17 19:22:21.009965"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.011059"], ["updated_at", "2023-02-17 19:22:21.011059"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.011907"], ["updated_at", "2023-02-17 19:22:21.011907"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.012677"], ["updated_at", "2023-02-17 19:22:21.012677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.013500"], ["updated_at", "2023-02-17 19:22:21.013500"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.014260"], ["updated_at", "2023-02-17 19:22:21.014260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.014971"], ["updated_at", "2023-02-17 19:22:21.014971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.015699"], ["updated_at", "2023-02-17 19:22:21.015699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.016444"], ["updated_at", "2023-02-17 19:22:21.016444"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.017219"], ["updated_at", "2023-02-17 19:22:21.017219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.017976"], ["updated_at", "2023-02-17 19:22:21.017976"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.018701"], ["updated_at", "2023-02-17 19:22:21.018701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.019423"], ["updated_at", "2023-02-17 19:22:21.019423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.020169"], ["updated_at", "2023-02-17 19:22:21.020169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.021269"], ["updated_at", "2023-02-17 19:22:21.021269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.022207"], ["updated_at", "2023-02-17 19:22:21.022207"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:22:21 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:21.032130"], ["updated_at", "2023-02-17 19:22:21.032130"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:21.033755"], ["updated_at", "2023-02-17 19:22:21.033755"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:21.036670"], ["updated_at", "2023-02-17 19:22:21.036670"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:21.037938"], ["updated_at", "2023-02-17 19:22:21.037938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:21.040732"], ["updated_at", "2023-02-17 19:22:21.040732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:21.042056"], ["updated_at", "2023-02-17 19:22:21.042056"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:21.044193"], ["updated_at", "2023-02-17 19:22:21.044193"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:21.045763"], ["updated_at", "2023-02-17 19:22:21.045763"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:21.047421"], ["updated_at", "2023-02-17 19:22:21.047421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:21.048729"], ["updated_at", "2023-02-17 19:22:21.048729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:21.050151"], ["updated_at", "2023-02-17 19:22:21.050151"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:21.051834"], ["updated_at", "2023-02-17 19:22:21.051834"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:21.053413"], ["updated_at", "2023-02-17 19:22:21.053413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:21.054655"], ["updated_at", "2023-02-17 19:22:21.054655"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:21.056216"], ["updated_at", "2023-02-17 19:22:21.056216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:21.057510"], ["updated_at", "2023-02-17 19:22:21.057510"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:21.059075"], ["updated_at", "2023-02-17 19:22:21.059075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:21.060517"], ["updated_at", "2023-02-17 19:22:21.060517"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:21.062494"], ["updated_at", "2023-02-17 19:22:21.062494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:21.063944"], ["updated_at", "2023-02-17 19:22:21.063944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:21.065464"], ["updated_at", "2023-02-17 19:22:21.065464"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:21.066811"], ["updated_at", "2023-02-17 19:22:21.066811"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:21.068319"], ["updated_at", "2023-02-17 19:22:21.068319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:21.069704"], ["updated_at", "2023-02-17 19:22:21.069704"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:21.071400"], ["updated_at", "2023-02-17 19:22:21.071400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:21.072814"], ["updated_at", "2023-02-17 19:22:21.072814"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:21.074402"], ["updated_at", "2023-02-17 19:22:21.074402"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:21.075774"], ["updated_at", "2023-02-17 19:22:21.075774"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:21.077249"], ["updated_at", "2023-02-17 19:22:21.077249"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:21.078724"], ["updated_at", "2023-02-17 19:22:21.078724"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:21.080397"], ["updated_at", "2023-02-17 19:22:21.080397"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:21.082197"], ["updated_at", "2023-02-17 19:22:21.082197"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:21.083946"], ["updated_at", "2023-02-17 19:22:21.083946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:21.085330"], ["updated_at", "2023-02-17 19:22:21.085330"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:21.086917"], ["updated_at", "2023-02-17 19:22:21.086917"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:21.088204"], ["updated_at", "2023-02-17 19:22:21.088204"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:21.089772"], ["updated_at", "2023-02-17 19:22:21.089772"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:21.091421"], ["updated_at", "2023-02-17 19:22:21.091421"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:21.093151"], ["updated_at", "2023-02-17 19:22:21.093151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:21.094555"], ["updated_at", "2023-02-17 19:22:21.094555"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:21.096231"], ["updated_at", "2023-02-17 19:22:21.096231"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:21.097658"], ["updated_at", "2023-02-17 19:22:21.097658"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:21.099138"], ["updated_at", "2023-02-17 19:22:21.099138"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:21.100535"], ["updated_at", "2023-02-17 19:22:21.100535"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:21.102235"], ["updated_at", "2023-02-17 19:22:21.102235"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:21.103649"], ["updated_at", "2023-02-17 19:22:21.103649"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:21.105233"], ["updated_at", "2023-02-17 19:22:21.105233"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:21.106517"], ["updated_at", "2023-02-17 19:22:21.106517"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:21.108061"], ["updated_at", "2023-02-17 19:22:21.108061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:21.109345"], ["updated_at", "2023-02-17 19:22:21.109345"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:21.110965"], ["updated_at", "2023-02-17 19:22:21.110965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:21.112633"], ["updated_at", "2023-02-17 19:22:21.112633"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:21.114187"], ["updated_at", "2023-02-17 19:22:21.114187"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:21.115590"], ["updated_at", "2023-02-17 19:22:21.115590"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:21.117101"], ["updated_at", "2023-02-17 19:22:21.117101"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:21.118533"], ["updated_at", "2023-02-17 19:22:21.118533"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:21.119984"], ["updated_at", "2023-02-17 19:22:21.119984"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:21.121638"], ["updated_at", "2023-02-17 19:22:21.121638"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:21.123431"], ["updated_at", "2023-02-17 19:22:21.123431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:21.124889"], ["updated_at", "2023-02-17 19:22:21.124889"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:21.126601"], ["updated_at", "2023-02-17 19:22:21.126601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:21.128025"], ["updated_at", "2023-02-17 19:22:21.128025"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:21.129894"], ["updated_at", "2023-02-17 19:22:21.129894"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:21.131488"], ["updated_at", "2023-02-17 19:22:21.131488"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:21.133318"], ["updated_at", "2023-02-17 19:22:21.133318"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:21.134862"], ["updated_at", "2023-02-17 19:22:21.134862"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:21.136657"], ["updated_at", "2023-02-17 19:22:21.136657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:21.138206"], ["updated_at", "2023-02-17 19:22:21.138206"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:21.139888"], ["updated_at", "2023-02-17 19:22:21.139888"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:21.141687"], ["updated_at", "2023-02-17 19:22:21.141687"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:21.143517"], ["updated_at", "2023-02-17 19:22:21.143517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:21.145168"], ["updated_at", "2023-02-17 19:22:21.145168"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:21.146981"], ["updated_at", "2023-02-17 19:22:21.146981"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:21.148509"], ["updated_at", "2023-02-17 19:22:21.148509"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:21.150312"], ["updated_at", "2023-02-17 19:22:21.150312"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:21.151818"], ["updated_at", "2023-02-17 19:22:21.151818"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:21.153560"], ["updated_at", "2023-02-17 19:22:21.153560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:21.155084"], ["updated_at", "2023-02-17 19:22:21.155084"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:21.156753"], ["updated_at", "2023-02-17 19:22:21.156753"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:21.158330"], ["updated_at", "2023-02-17 19:22:21.158330"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:21.160146"], ["updated_at", "2023-02-17 19:22:21.160146"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:21.167344"], ["updated_at", "2023-02-17 19:22:21.167344"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:21.169284"], ["updated_at", "2023-02-17 19:22:21.169284"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:21.170842"], ["updated_at", "2023-02-17 19:22:21.170842"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:21.172492"], ["updated_at", "2023-02-17 19:22:21.172492"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:21.173994"], ["updated_at", "2023-02-17 19:22:21.173994"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:21.175706"], ["updated_at", "2023-02-17 19:22:21.175706"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:21.177203"], ["updated_at", "2023-02-17 19:22:21.177203"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:21.179055"], ["updated_at", "2023-02-17 19:22:21.179055"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:21.180556"], ["updated_at", "2023-02-17 19:22:21.180556"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:21.182414"], ["updated_at", "2023-02-17 19:22:21.182414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:21.183910"], ["updated_at", "2023-02-17 19:22:21.183910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:21.185626"], ["updated_at", "2023-02-17 19:22:21.185626"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:21.187161"], ["updated_at", "2023-02-17 19:22:21.187161"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:21.188814"], ["updated_at", "2023-02-17 19:22:21.188814"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:21.190196"], ["updated_at", "2023-02-17 19:22:21.190196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:21.191695"], ["updated_at", "2023-02-17 19:22:21.191695"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:21.193348"], ["updated_at", "2023-02-17 19:22:21.193348"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:21.195224"], ["updated_at", "2023-02-17 19:22:21.195224"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:21.196642"], ["updated_at", "2023-02-17 19:22:21.196642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:21.197905"], ["updated_at", "2023-02-17 19:22:21.197905"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:21.210832"], ["updated_at", "2023-02-17 19:22:21.210832"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:21.212430"], ["updated_at", "2023-02-17 19:22:21.212430"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:21.213746"], ["updated_at", "2023-02-17 19:22:21.213746"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.214856"], ["updated_at", "2023-02-17 19:22:21.214856"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.215961"], ["updated_at", "2023-02-17 19:22:21.215961"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.216893"], ["updated_at", "2023-02-17 19:22:21.216893"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.217821"], ["updated_at", "2023-02-17 19:22:21.217821"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.218740"], ["updated_at", "2023-02-17 19:22:21.218740"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:21.219788"], ["updated_at", "2023-02-17 19:22:21.219788"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.220955"], ["updated_at", "2023-02-17 19:22:21.220955"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.222032"], ["updated_at", "2023-02-17 19:22:21.222032"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.223010"], ["updated_at", "2023-02-17 19:22:21.223010"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.224014"], ["updated_at", "2023-02-17 19:22:21.224014"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.224996"], ["updated_at", "2023-02-17 19:22:21.224996"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.225946"], ["updated_at", "2023-02-17 19:22:21.225946"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.226833"], ["updated_at", "2023-02-17 19:22:21.226833"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.227825"], ["updated_at", "2023-02-17 19:22:21.227825"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.228794"], ["updated_at", "2023-02-17 19:22:21.228794"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.229692"], ["updated_at", "2023-02-17 19:22:21.229692"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.230631"], ["updated_at", "2023-02-17 19:22:21.230631"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.231518"], ["updated_at", "2023-02-17 19:22:21.231518"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:21.244140"], ["updated_at", "2023-02-17 19:22:21.244140"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:21.245587"], ["updated_at", "2023-02-17 19:22:21.245587"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:21.246691"], ["updated_at", "2023-02-17 19:22:21.246691"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:21.247815"], ["updated_at", "2023-02-17 19:22:21.247815"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:21.248849"], ["updated_at", "2023-02-17 19:22:21.248849"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:21.249831"], ["updated_at", "2023-02-17 19:22:21.249831"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:21.250851"], ["updated_at", "2023-02-17 19:22:21.250851"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:21.251890"], ["updated_at", "2023-02-17 19:22:21.251890"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:21.253082"], ["updated_at", "2023-02-17 19:22:21.253082"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.254384"], ["updated_at", "2023-02-17 19:22:21.254384"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.255601"], ["updated_at", "2023-02-17 19:22:21.255601"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.256741"], ["updated_at", "2023-02-17 19:22:21.256741"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.257974"], ["updated_at", "2023-02-17 19:22:21.257974"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.259133"], ["updated_at", "2023-02-17 19:22:21.259133"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.260281"], ["updated_at", "2023-02-17 19:22:21.260281"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.261466"], ["updated_at", "2023-02-17 19:22:21.261466"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.262643"], ["updated_at", "2023-02-17 19:22:21.262643"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.263764"], ["updated_at", "2023-02-17 19:22:21.263764"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.264951"], ["updated_at", "2023-02-17 19:22:21.264951"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.266146"], ["updated_at", "2023-02-17 19:22:21.266146"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.267276"], ["updated_at", "2023-02-17 19:22:21.267276"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.290894"], ["updated_at", "2023-02-17 19:22:21.290894"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.292296"], ["updated_at", "2023-02-17 19:22:21.292296"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.293521"], ["updated_at", "2023-02-17 19:22:21.293521"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.294642"], ["updated_at", "2023-02-17 19:22:21.294642"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.295907"], ["updated_at", "2023-02-17 19:22:21.295907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.297161"], ["updated_at", "2023-02-17 19:22:21.297161"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.298277"], ["updated_at", "2023-02-17 19:22:21.298277"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.299397"], ["updated_at", "2023-02-17 19:22:21.299397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.300494"], ["updated_at", "2023-02-17 19:22:21.300494"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.301630"], ["updated_at", "2023-02-17 19:22:21.301630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.302717"], ["updated_at", "2023-02-17 19:22:21.302717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.303847"], ["updated_at", "2023-02-17 19:22:21.303847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.305035"], ["updated_at", "2023-02-17 19:22:21.305035"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.306124"], ["updated_at", "2023-02-17 19:22:21.306124"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.307220"], ["updated_at", "2023-02-17 19:22:21.307220"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.308366"], ["updated_at", "2023-02-17 19:22:21.308366"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.331900"], ["updated_at", "2023-02-17 19:22:21.331900"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.333283"], ["updated_at", "2023-02-17 19:22:21.333283"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.334503"], ["updated_at", "2023-02-17 19:22:21.334503"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.335694"], ["updated_at", "2023-02-17 19:22:21.335694"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.337008"], ["updated_at", "2023-02-17 19:22:21.337008"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.338174"], ["updated_at", "2023-02-17 19:22:21.338174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.339251"], ["updated_at", "2023-02-17 19:22:21.339251"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.340341"], ["updated_at", "2023-02-17 19:22:21.340341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.341458"], ["updated_at", "2023-02-17 19:22:21.341458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.342547"], ["updated_at", "2023-02-17 19:22:21.342547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.343674"], ["updated_at", "2023-02-17 19:22:21.343674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.344832"], ["updated_at", "2023-02-17 19:22:21.344832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.346015"], ["updated_at", "2023-02-17 19:22:21.346015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.347148"], ["updated_at", "2023-02-17 19:22:21.347148"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.348258"], ["updated_at", "2023-02-17 19:22:21.348258"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.349362"], ["updated_at", "2023-02-17 19:22:21.349362"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.373154"], ["updated_at", "2023-02-17 19:22:21.373154"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.374213"], ["updated_at", "2023-02-17 19:22:21.374213"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.375546"], ["updated_at", "2023-02-17 19:22:21.375546"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.376614"], ["updated_at", "2023-02-17 19:22:21.376614"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.377578"], ["updated_at", "2023-02-17 19:22:21.377578"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.379071"], ["updated_at", "2023-02-17 19:22:21.379071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.380395"], ["updated_at", "2023-02-17 19:22:21.380395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.381346"], ["updated_at", "2023-02-17 19:22:21.381346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.382136"], ["updated_at", "2023-02-17 19:22:21.382136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.383069"], ["updated_at", "2023-02-17 19:22:21.383069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.384208"], ["updated_at", "2023-02-17 19:22:21.384208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.385210"], ["updated_at", "2023-02-17 19:22:21.385210"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.386329"], ["updated_at", "2023-02-17 19:22:21.386329"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.387754"], ["updated_at", "2023-02-17 19:22:21.387754"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.389018"], ["updated_at", "2023-02-17 19:22:21.389018"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.390257"], ["updated_at", "2023-02-17 19:22:21.390257"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.409645"], ["updated_at", "2023-02-17 19:22:21.409645"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.410724"], ["updated_at", "2023-02-17 19:22:21.410724"]]
QuestionAnswer Create (0.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.411707"], ["updated_at", "2023-02-17 19:22:21.411707"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.413066"], ["updated_at", "2023-02-17 19:22:21.413066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.414284"], ["updated_at", "2023-02-17 19:22:21.414284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.415143"], ["updated_at", "2023-02-17 19:22:21.415143"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.415837"], ["updated_at", "2023-02-17 19:22:21.415837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.416978"], ["updated_at", "2023-02-17 19:22:21.416978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.417972"], ["updated_at", "2023-02-17 19:22:21.417972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.418718"], ["updated_at", "2023-02-17 19:22:21.418718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.419597"], ["updated_at", "2023-02-17 19:22:21.419597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.420498"], ["updated_at", "2023-02-17 19:22:21.420498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.421503"], ["updated_at", "2023-02-17 19:22:21.421503"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.422350"], ["updated_at", "2023-02-17 19:22:21.422350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.424242"], ["updated_at", "2023-02-17 19:22:21.424242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.425215"], ["updated_at", "2023-02-17 19:22:21.425215"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.3ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.446446"], ["updated_at", "2023-02-17 19:22:21.446446"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.447680"], ["updated_at", "2023-02-17 19:22:21.447680"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.448583"], ["updated_at", "2023-02-17 19:22:21.448583"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.449325"], ["updated_at", "2023-02-17 19:22:21.449325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.450449"], ["updated_at", "2023-02-17 19:22:21.450449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.451488"], ["updated_at", "2023-02-17 19:22:21.451488"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.452351"], ["updated_at", "2023-02-17 19:22:21.452351"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.453350"], ["updated_at", "2023-02-17 19:22:21.453350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.454498"], ["updated_at", "2023-02-17 19:22:21.454498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.455298"], ["updated_at", "2023-02-17 19:22:21.455298"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.456042"], ["updated_at", "2023-02-17 19:22:21.456042"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.456966"], ["updated_at", "2023-02-17 19:22:21.456966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.457929"], ["updated_at", "2023-02-17 19:22:21.457929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.459038"], ["updated_at", "2023-02-17 19:22:21.459038"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.459980"], ["updated_at", "2023-02-17 19:22:21.459980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.460832"], ["updated_at", "2023-02-17 19:22:21.460832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.479994"], ["updated_at", "2023-02-17 19:22:21.479994"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.481088"], ["updated_at", "2023-02-17 19:22:21.481088"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.481888"], ["updated_at", "2023-02-17 19:22:21.481888"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.482765"], ["updated_at", "2023-02-17 19:22:21.482765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.483975"], ["updated_at", "2023-02-17 19:22:21.483975"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.484859"], ["updated_at", "2023-02-17 19:22:21.484859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.485790"], ["updated_at", "2023-02-17 19:22:21.485790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.486754"], ["updated_at", "2023-02-17 19:22:21.486754"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.487835"], ["updated_at", "2023-02-17 19:22:21.487835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.488800"], ["updated_at", "2023-02-17 19:22:21.488800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.489662"], ["updated_at", "2023-02-17 19:22:21.489662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.490533"], ["updated_at", "2023-02-17 19:22:21.490533"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.491574"], ["updated_at", "2023-02-17 19:22:21.491574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.492522"], ["updated_at", "2023-02-17 19:22:21.492522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.493403"], ["updated_at", "2023-02-17 19:22:21.493403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.494125"], ["updated_at", "2023-02-17 19:22:21.494125"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:22:21 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 532)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:21.505191"], ["updated_at", "2023-02-17 19:22:21.505191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:21.506738"], ["updated_at", "2023-02-17 19:22:21.506738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:21.510176"], ["updated_at", "2023-02-17 19:22:21.510176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:21.511509"], ["updated_at", "2023-02-17 19:22:21.511509"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:21.514774"], ["updated_at", "2023-02-17 19:22:21.514774"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:21.516307"], ["updated_at", "2023-02-17 19:22:21.516307"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:21.518804"], ["updated_at", "2023-02-17 19:22:21.518804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:21.520596"], ["updated_at", "2023-02-17 19:22:21.520596"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:21.522411"], ["updated_at", "2023-02-17 19:22:21.522411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:21.523754"], ["updated_at", "2023-02-17 19:22:21.523754"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:21.525476"], ["updated_at", "2023-02-17 19:22:21.525476"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:21.526870"], ["updated_at", "2023-02-17 19:22:21.526870"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:21.528316"], ["updated_at", "2023-02-17 19:22:21.528316"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:21.529883"], ["updated_at", "2023-02-17 19:22:21.529883"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:21.531379"], ["updated_at", "2023-02-17 19:22:21.531379"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:21.532603"], ["updated_at", "2023-02-17 19:22:21.532603"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:21.534219"], ["updated_at", "2023-02-17 19:22:21.534219"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:21.535681"], ["updated_at", "2023-02-17 19:22:21.535681"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:21.537167"], ["updated_at", "2023-02-17 19:22:21.537167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:21.538510"], ["updated_at", "2023-02-17 19:22:21.538510"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:21.539956"], ["updated_at", "2023-02-17 19:22:21.539956"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:21.541302"], ["updated_at", "2023-02-17 19:22:21.541302"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:21.542848"], ["updated_at", "2023-02-17 19:22:21.542848"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:21.544082"], ["updated_at", "2023-02-17 19:22:21.544082"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:21.545797"], ["updated_at", "2023-02-17 19:22:21.545797"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:21.547219"], ["updated_at", "2023-02-17 19:22:21.547219"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:21.548641"], ["updated_at", "2023-02-17 19:22:21.548641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:21.550024"], ["updated_at", "2023-02-17 19:22:21.550024"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:21.551599"], ["updated_at", "2023-02-17 19:22:21.551599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:21.552823"], ["updated_at", "2023-02-17 19:22:21.552823"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:21.554277"], ["updated_at", "2023-02-17 19:22:21.554277"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:21.555541"], ["updated_at", "2023-02-17 19:22:21.555541"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:21.556923"], ["updated_at", "2023-02-17 19:22:21.556923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:21.558229"], ["updated_at", "2023-02-17 19:22:21.558229"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:21.559711"], ["updated_at", "2023-02-17 19:22:21.559711"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:21.560972"], ["updated_at", "2023-02-17 19:22:21.560972"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:21.562557"], ["updated_at", "2023-02-17 19:22:21.562557"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:21.563900"], ["updated_at", "2023-02-17 19:22:21.563900"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:21.565340"], ["updated_at", "2023-02-17 19:22:21.565340"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:21.566621"], ["updated_at", "2023-02-17 19:22:21.566621"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:21.568212"], ["updated_at", "2023-02-17 19:22:21.568212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:21.569513"], ["updated_at", "2023-02-17 19:22:21.569513"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:21.571028"], ["updated_at", "2023-02-17 19:22:21.571028"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:21.572285"], ["updated_at", "2023-02-17 19:22:21.572285"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:21.573686"], ["updated_at", "2023-02-17 19:22:21.573686"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:21.574951"], ["updated_at", "2023-02-17 19:22:21.574951"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:21.576398"], ["updated_at", "2023-02-17 19:22:21.576398"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:21.577610"], ["updated_at", "2023-02-17 19:22:21.577610"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:21.579093"], ["updated_at", "2023-02-17 19:22:21.579093"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:21.580676"], ["updated_at", "2023-02-17 19:22:21.580676"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:21.582392"], ["updated_at", "2023-02-17 19:22:21.582392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:21.583779"], ["updated_at", "2023-02-17 19:22:21.583779"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:21.585356"], ["updated_at", "2023-02-17 19:22:21.585356"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:21.586646"], ["updated_at", "2023-02-17 19:22:21.586646"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:21.588201"], ["updated_at", "2023-02-17 19:22:21.588201"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:21.589465"], ["updated_at", "2023-02-17 19:22:21.589465"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:21.590886"], ["updated_at", "2023-02-17 19:22:21.590886"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:21.592175"], ["updated_at", "2023-02-17 19:22:21.592175"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:21.593583"], ["updated_at", "2023-02-17 19:22:21.593583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:21.594771"], ["updated_at", "2023-02-17 19:22:21.594771"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:21.596358"], ["updated_at", "2023-02-17 19:22:21.596358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:21.597627"], ["updated_at", "2023-02-17 19:22:21.597627"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:21.598999"], ["updated_at", "2023-02-17 19:22:21.598999"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:21.600359"], ["updated_at", "2023-02-17 19:22:21.600359"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:21.602218"], ["updated_at", "2023-02-17 19:22:21.602218"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:21.603927"], ["updated_at", "2023-02-17 19:22:21.603927"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:21.605855"], ["updated_at", "2023-02-17 19:22:21.605855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:21.607416"], ["updated_at", "2023-02-17 19:22:21.607416"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:21.609349"], ["updated_at", "2023-02-17 19:22:21.609349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:21.611014"], ["updated_at", "2023-02-17 19:22:21.611014"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:21.612932"], ["updated_at", "2023-02-17 19:22:21.612932"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:21.614552"], ["updated_at", "2023-02-17 19:22:21.614552"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:21.616435"], ["updated_at", "2023-02-17 19:22:21.616435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:21.618155"], ["updated_at", "2023-02-17 19:22:21.618155"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:21.620124"], ["updated_at", "2023-02-17 19:22:21.620124"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:21.621846"], ["updated_at", "2023-02-17 19:22:21.621846"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:21.623803"], ["updated_at", "2023-02-17 19:22:21.623803"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:21.625834"], ["updated_at", "2023-02-17 19:22:21.625834"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:21.627864"], ["updated_at", "2023-02-17 19:22:21.627864"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:21.629533"], ["updated_at", "2023-02-17 19:22:21.629533"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:21.631446"], ["updated_at", "2023-02-17 19:22:21.631446"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:21.633194"], ["updated_at", "2023-02-17 19:22:21.633194"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:21.634833"], ["updated_at", "2023-02-17 19:22:21.634833"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:21.636062"], ["updated_at", "2023-02-17 19:22:21.636062"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:21.637458"], ["updated_at", "2023-02-17 19:22:21.637458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:21.638628"], ["updated_at", "2023-02-17 19:22:21.638628"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:21.640045"], ["updated_at", "2023-02-17 19:22:21.640045"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:21.641417"], ["updated_at", "2023-02-17 19:22:21.641417"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:21.642865"], ["updated_at", "2023-02-17 19:22:21.642865"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:21.644109"], ["updated_at", "2023-02-17 19:22:21.644109"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:21.645591"], ["updated_at", "2023-02-17 19:22:21.645591"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:21.647167"], ["updated_at", "2023-02-17 19:22:21.647167"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:21.648642"], ["updated_at", "2023-02-17 19:22:21.648642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:21.650064"], ["updated_at", "2023-02-17 19:22:21.650064"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:21.651592"], ["updated_at", "2023-02-17 19:22:21.651592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:21.652689"], ["updated_at", "2023-02-17 19:22:21.652689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:21.653932"], ["updated_at", "2023-02-17 19:22:21.653932"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:21.655326"], ["updated_at", "2023-02-17 19:22:21.655326"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:21.656780"], ["updated_at", "2023-02-17 19:22:21.656780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:21.657964"], ["updated_at", "2023-02-17 19:22:21.657964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:21.658979"], ["updated_at", "2023-02-17 19:22:21.658979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:21.672076"], ["updated_at", "2023-02-17 19:22:21.672076"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:21.673931"], ["updated_at", "2023-02-17 19:22:21.673931"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:21.675223"], ["updated_at", "2023-02-17 19:22:21.675223"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.676264"], ["updated_at", "2023-02-17 19:22:21.676264"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.677262"], ["updated_at", "2023-02-17 19:22:21.677262"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.678171"], ["updated_at", "2023-02-17 19:22:21.678171"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.679135"], ["updated_at", "2023-02-17 19:22:21.679135"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.680060"], ["updated_at", "2023-02-17 19:22:21.680060"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:21.681019"], ["updated_at", "2023-02-17 19:22:21.681019"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.682081"], ["updated_at", "2023-02-17 19:22:21.682081"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.683241"], ["updated_at", "2023-02-17 19:22:21.683241"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.684254"], ["updated_at", "2023-02-17 19:22:21.684254"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.685174"], ["updated_at", "2023-02-17 19:22:21.685174"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.686132"], ["updated_at", "2023-02-17 19:22:21.686132"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.687111"], ["updated_at", "2023-02-17 19:22:21.687111"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.688087"], ["updated_at", "2023-02-17 19:22:21.688087"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.689092"], ["updated_at", "2023-02-17 19:22:21.689092"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.690117"], ["updated_at", "2023-02-17 19:22:21.690117"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.691061"], ["updated_at", "2023-02-17 19:22:21.691061"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.691971"], ["updated_at", "2023-02-17 19:22:21.691971"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.692856"], ["updated_at", "2023-02-17 19:22:21.692856"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:21.706189"], ["updated_at", "2023-02-17 19:22:21.706189"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:21.707755"], ["updated_at", "2023-02-17 19:22:21.707755"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:21.708956"], ["updated_at", "2023-02-17 19:22:21.708956"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:21.710082"], ["updated_at", "2023-02-17 19:22:21.710082"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:21.711102"], ["updated_at", "2023-02-17 19:22:21.711102"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:21.712014"], ["updated_at", "2023-02-17 19:22:21.712014"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:21.712962"], ["updated_at", "2023-02-17 19:22:21.712962"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:21.713872"], ["updated_at", "2023-02-17 19:22:21.713872"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:21.714816"], ["updated_at", "2023-02-17 19:22:21.714816"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.715895"], ["updated_at", "2023-02-17 19:22:21.715895"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.716950"], ["updated_at", "2023-02-17 19:22:21.716950"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.718100"], ["updated_at", "2023-02-17 19:22:21.718100"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.719153"], ["updated_at", "2023-02-17 19:22:21.719153"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.720228"], ["updated_at", "2023-02-17 19:22:21.720228"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.721370"], ["updated_at", "2023-02-17 19:22:21.721370"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.722383"], ["updated_at", "2023-02-17 19:22:21.722383"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.723333"], ["updated_at", "2023-02-17 19:22:21.723333"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.724309"], ["updated_at", "2023-02-17 19:22:21.724309"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.725266"], ["updated_at", "2023-02-17 19:22:21.725266"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.726251"], ["updated_at", "2023-02-17 19:22:21.726251"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:21.727268"], ["updated_at", "2023-02-17 19:22:21.727268"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.746791"], ["updated_at", "2023-02-17 19:22:21.746791"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.748021"], ["updated_at", "2023-02-17 19:22:21.748021"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.749013"], ["updated_at", "2023-02-17 19:22:21.749013"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.749946"], ["updated_at", "2023-02-17 19:22:21.749946"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.751096"], ["updated_at", "2023-02-17 19:22:21.751096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.752125"], ["updated_at", "2023-02-17 19:22:21.752125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.753033"], ["updated_at", "2023-02-17 19:22:21.753033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.754107"], ["updated_at", "2023-02-17 19:22:21.754107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.754974"], ["updated_at", "2023-02-17 19:22:21.754974"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.755776"], ["updated_at", "2023-02-17 19:22:21.755776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.756617"], ["updated_at", "2023-02-17 19:22:21.756617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.757547"], ["updated_at", "2023-02-17 19:22:21.757547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.758490"], ["updated_at", "2023-02-17 19:22:21.758490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.759392"], ["updated_at", "2023-02-17 19:22:21.759392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.760279"], ["updated_at", "2023-02-17 19:22:21.760279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:21.761155"], ["updated_at", "2023-02-17 19:22:21.761155"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.780672"], ["updated_at", "2023-02-17 19:22:21.780672"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.781824"], ["updated_at", "2023-02-17 19:22:21.781824"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.782753"], ["updated_at", "2023-02-17 19:22:21.782753"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.783685"], ["updated_at", "2023-02-17 19:22:21.783685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.784787"], ["updated_at", "2023-02-17 19:22:21.784787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.785825"], ["updated_at", "2023-02-17 19:22:21.785825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.786810"], ["updated_at", "2023-02-17 19:22:21.786810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.787847"], ["updated_at", "2023-02-17 19:22:21.787847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.788807"], ["updated_at", "2023-02-17 19:22:21.788807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.789728"], ["updated_at", "2023-02-17 19:22:21.789728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.790637"], ["updated_at", "2023-02-17 19:22:21.790637"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.791536"], ["updated_at", "2023-02-17 19:22:21.791536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.792401"], ["updated_at", "2023-02-17 19:22:21.792401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.793356"], ["updated_at", "2023-02-17 19:22:21.793356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.794307"], ["updated_at", "2023-02-17 19:22:21.794307"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:21.795265"], ["updated_at", "2023-02-17 19:22:21.795265"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.814389"], ["updated_at", "2023-02-17 19:22:21.814389"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.815554"], ["updated_at", "2023-02-17 19:22:21.815554"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.816463"], ["updated_at", "2023-02-17 19:22:21.816463"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.817476"], ["updated_at", "2023-02-17 19:22:21.817476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.818485"], ["updated_at", "2023-02-17 19:22:21.818485"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.819362"], ["updated_at", "2023-02-17 19:22:21.819362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.820218"], ["updated_at", "2023-02-17 19:22:21.820218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.821127"], ["updated_at", "2023-02-17 19:22:21.821127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.822017"], ["updated_at", "2023-02-17 19:22:21.822017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.822852"], ["updated_at", "2023-02-17 19:22:21.822852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.823678"], ["updated_at", "2023-02-17 19:22:21.823678"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.824543"], ["updated_at", "2023-02-17 19:22:21.824543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.828499"], ["updated_at", "2023-02-17 19:22:21.828499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.830144"], ["updated_at", "2023-02-17 19:22:21.830144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.831109"], ["updated_at", "2023-02-17 19:22:21.831109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:21.832003"], ["updated_at", "2023-02-17 19:22:21.832003"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (1.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.856157"], ["updated_at", "2023-02-17 19:22:21.856157"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.857353"], ["updated_at", "2023-02-17 19:22:21.857353"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.858354"], ["updated_at", "2023-02-17 19:22:21.858354"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.859320"], ["updated_at", "2023-02-17 19:22:21.859320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.860330"], ["updated_at", "2023-02-17 19:22:21.860330"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.861299"], ["updated_at", "2023-02-17 19:22:21.861299"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.862198"], ["updated_at", "2023-02-17 19:22:21.862198"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.864576"], ["updated_at", "2023-02-17 19:22:21.864576"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.865915"], ["updated_at", "2023-02-17 19:22:21.865915"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.867189"], ["updated_at", "2023-02-17 19:22:21.867189"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.869775"], ["updated_at", "2023-02-17 19:22:21.869775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.870811"], ["updated_at", "2023-02-17 19:22:21.870811"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.871841"], ["updated_at", "2023-02-17 19:22:21.871841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.872843"], ["updated_at", "2023-02-17 19:22:21.872843"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.873860"], ["updated_at", "2023-02-17 19:22:21.873860"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:21.874838"], ["updated_at", "2023-02-17 19:22:21.874838"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.895756"], ["updated_at", "2023-02-17 19:22:21.895756"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.896975"], ["updated_at", "2023-02-17 19:22:21.896975"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.897985"], ["updated_at", "2023-02-17 19:22:21.897985"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.898961"], ["updated_at", "2023-02-17 19:22:21.898961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.899972"], ["updated_at", "2023-02-17 19:22:21.899972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.900985"], ["updated_at", "2023-02-17 19:22:21.900985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.901914"], ["updated_at", "2023-02-17 19:22:21.901914"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.902777"], ["updated_at", "2023-02-17 19:22:21.902777"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.903707"], ["updated_at", "2023-02-17 19:22:21.903707"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.904632"], ["updated_at", "2023-02-17 19:22:21.904632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.905591"], ["updated_at", "2023-02-17 19:22:21.905591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.906542"], ["updated_at", "2023-02-17 19:22:21.906542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.907669"], ["updated_at", "2023-02-17 19:22:21.907669"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.909266"], ["updated_at", "2023-02-17 19:22:21.909266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.910442"], ["updated_at", "2023-02-17 19:22:21.910442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:21.911794"], ["updated_at", "2023-02-17 19:22:21.911794"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:21.931681"], ["updated_at", "2023-02-17 19:22:21.931681"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:21.932844"], ["updated_at", "2023-02-17 19:22:21.932844"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:21.933896"], ["updated_at", "2023-02-17 19:22:21.933896"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:21.934899"], ["updated_at", "2023-02-17 19:22:21.934899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.935909"], ["updated_at", "2023-02-17 19:22:21.935909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.936853"], ["updated_at", "2023-02-17 19:22:21.936853"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.937850"], ["updated_at", "2023-02-17 19:22:21.937850"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.938847"], ["updated_at", "2023-02-17 19:22:21.938847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.939806"], ["updated_at", "2023-02-17 19:22:21.939806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.940802"], ["updated_at", "2023-02-17 19:22:21.940802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.941841"], ["updated_at", "2023-02-17 19:22:21.941841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.942897"], ["updated_at", "2023-02-17 19:22:21.942897"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.943960"], ["updated_at", "2023-02-17 19:22:21.943960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.944849"], ["updated_at", "2023-02-17 19:22:21.944849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.945783"], ["updated_at", "2023-02-17 19:22:21.945783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:21.946657"], ["updated_at", "2023-02-17 19:22:21.946657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:22:21 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:22:21 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:22:21 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:53.739254"], ["updated_at", "2023-02-17 19:22:53.739254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:53.754162"], ["updated_at", "2023-02-17 19:22:53.754162"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:22:53.760234"], ["updated_at", "2023-02-17 19:22:53.760234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:53.770428"], ["updated_at", "2023-02-17 19:22:53.770428"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:53.777788"], ["updated_at", "2023-02-17 19:22:53.777788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:22:53.781298"], ["updated_at", "2023-02-17 19:22:53.781298"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:53.783851"], ["updated_at", "2023-02-17 19:22:53.783851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 56ms (Views: 0.2ms | ActiveRecord: 5.2ms | Allocations: 28612)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:22:53.801247"], ["updated_at", "2023-02-17 19:22:53.801247"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.9ms | Allocations: 4604)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000559aedd1c8c8>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms | Allocations: 658)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5763)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:53.868375"], ["updated_at", "2023-02-17 19:22:53.868375"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:53.870259"], ["updated_at", "2023-02-17 19:22:53.870259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:53.874176"], ["updated_at", "2023-02-17 19:22:53.874176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:53.875507"], ["updated_at", "2023-02-17 19:22:53.875507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:53.879311"], ["updated_at", "2023-02-17 19:22:53.879311"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:53.880778"], ["updated_at", "2023-02-17 19:22:53.880778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:53.883153"], ["updated_at", "2023-02-17 19:22:53.883153"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:53.884938"], ["updated_at", "2023-02-17 19:22:53.884938"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:53.886692"], ["updated_at", "2023-02-17 19:22:53.886692"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:53.888595"], ["updated_at", "2023-02-17 19:22:53.888595"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:53.890447"], ["updated_at", "2023-02-17 19:22:53.890447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:53.892051"], ["updated_at", "2023-02-17 19:22:53.892051"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:53.893618"], ["updated_at", "2023-02-17 19:22:53.893618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:53.895117"], ["updated_at", "2023-02-17 19:22:53.895117"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:53.896817"], ["updated_at", "2023-02-17 19:22:53.896817"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:53.898300"], ["updated_at", "2023-02-17 19:22:53.898300"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:53.899981"], ["updated_at", "2023-02-17 19:22:53.899981"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:53.901412"], ["updated_at", "2023-02-17 19:22:53.901412"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:53.903113"], ["updated_at", "2023-02-17 19:22:53.903113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:53.904484"], ["updated_at", "2023-02-17 19:22:53.904484"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:53.906204"], ["updated_at", "2023-02-17 19:22:53.906204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:53.907836"], ["updated_at", "2023-02-17 19:22:53.907836"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:53.909510"], ["updated_at", "2023-02-17 19:22:53.909510"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:53.911005"], ["updated_at", "2023-02-17 19:22:53.911005"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:53.912650"], ["updated_at", "2023-02-17 19:22:53.912650"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:53.914203"], ["updated_at", "2023-02-17 19:22:53.914203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:53.915812"], ["updated_at", "2023-02-17 19:22:53.915812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:53.917219"], ["updated_at", "2023-02-17 19:22:53.917219"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:53.918858"], ["updated_at", "2023-02-17 19:22:53.918858"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:53.920415"], ["updated_at", "2023-02-17 19:22:53.920415"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:53.922335"], ["updated_at", "2023-02-17 19:22:53.922335"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:53.923950"], ["updated_at", "2023-02-17 19:22:53.923950"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:53.925721"], ["updated_at", "2023-02-17 19:22:53.925721"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:53.927275"], ["updated_at", "2023-02-17 19:22:53.927275"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:53.929106"], ["updated_at", "2023-02-17 19:22:53.929106"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:53.930497"], ["updated_at", "2023-02-17 19:22:53.930497"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:53.932146"], ["updated_at", "2023-02-17 19:22:53.932146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:53.933778"], ["updated_at", "2023-02-17 19:22:53.933778"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:53.935482"], ["updated_at", "2023-02-17 19:22:53.935482"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:53.937168"], ["updated_at", "2023-02-17 19:22:53.937168"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:53.939011"], ["updated_at", "2023-02-17 19:22:53.939011"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:53.941077"], ["updated_at", "2023-02-17 19:22:53.941077"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:53.943067"], ["updated_at", "2023-02-17 19:22:53.943067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:53.944659"], ["updated_at", "2023-02-17 19:22:53.944659"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:53.946408"], ["updated_at", "2023-02-17 19:22:53.946408"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:53.947969"], ["updated_at", "2023-02-17 19:22:53.947969"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:53.949714"], ["updated_at", "2023-02-17 19:22:53.949714"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:53.951517"], ["updated_at", "2023-02-17 19:22:53.951517"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:53.953518"], ["updated_at", "2023-02-17 19:22:53.953518"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:53.955296"], ["updated_at", "2023-02-17 19:22:53.955296"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:53.957160"], ["updated_at", "2023-02-17 19:22:53.957160"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:53.958985"], ["updated_at", "2023-02-17 19:22:53.958985"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:53.961042"], ["updated_at", "2023-02-17 19:22:53.961042"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:53.962584"], ["updated_at", "2023-02-17 19:22:53.962584"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:53.964607"], ["updated_at", "2023-02-17 19:22:53.964607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:53.966132"], ["updated_at", "2023-02-17 19:22:53.966132"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:53.967861"], ["updated_at", "2023-02-17 19:22:53.967861"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:53.969442"], ["updated_at", "2023-02-17 19:22:53.969442"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:53.971067"], ["updated_at", "2023-02-17 19:22:53.971067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:53.972636"], ["updated_at", "2023-02-17 19:22:53.972636"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:53.974570"], ["updated_at", "2023-02-17 19:22:53.974570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:53.976027"], ["updated_at", "2023-02-17 19:22:53.976027"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:53.978118"], ["updated_at", "2023-02-17 19:22:53.978118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:53.979729"], ["updated_at", "2023-02-17 19:22:53.979729"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:53.981559"], ["updated_at", "2023-02-17 19:22:53.981559"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:53.983054"], ["updated_at", "2023-02-17 19:22:53.983054"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:53.984654"], ["updated_at", "2023-02-17 19:22:53.984654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:53.986303"], ["updated_at", "2023-02-17 19:22:53.986303"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:53.987993"], ["updated_at", "2023-02-17 19:22:53.987993"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:53.989657"], ["updated_at", "2023-02-17 19:22:53.989657"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:53.991322"], ["updated_at", "2023-02-17 19:22:53.991322"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:53.993118"], ["updated_at", "2023-02-17 19:22:53.993118"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:53.994891"], ["updated_at", "2023-02-17 19:22:53.994891"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:53.996711"], ["updated_at", "2023-02-17 19:22:53.996711"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:53.998422"], ["updated_at", "2023-02-17 19:22:53.998422"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:53.999926"], ["updated_at", "2023-02-17 19:22:53.999926"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:54.001617"], ["updated_at", "2023-02-17 19:22:54.001617"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:54.003026"], ["updated_at", "2023-02-17 19:22:54.003026"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:54.004801"], ["updated_at", "2023-02-17 19:22:54.004801"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:54.006206"], ["updated_at", "2023-02-17 19:22:54.006206"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:54.007889"], ["updated_at", "2023-02-17 19:22:54.007889"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:54.009352"], ["updated_at", "2023-02-17 19:22:54.009352"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:54.011302"], ["updated_at", "2023-02-17 19:22:54.011302"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:54.013050"], ["updated_at", "2023-02-17 19:22:54.013050"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:54.014665"], ["updated_at", "2023-02-17 19:22:54.014665"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:54.016159"], ["updated_at", "2023-02-17 19:22:54.016159"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:54.017779"], ["updated_at", "2023-02-17 19:22:54.017779"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:54.019371"], ["updated_at", "2023-02-17 19:22:54.019371"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:54.021002"], ["updated_at", "2023-02-17 19:22:54.021002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:54.022401"], ["updated_at", "2023-02-17 19:22:54.022401"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:54.024368"], ["updated_at", "2023-02-17 19:22:54.024368"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:54.026387"], ["updated_at", "2023-02-17 19:22:54.026387"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:54.028079"], ["updated_at", "2023-02-17 19:22:54.028079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:54.029710"], ["updated_at", "2023-02-17 19:22:54.029710"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:54.031369"], ["updated_at", "2023-02-17 19:22:54.031369"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:54.032841"], ["updated_at", "2023-02-17 19:22:54.032841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:54.034287"], ["updated_at", "2023-02-17 19:22:54.034287"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:54.036000"], ["updated_at", "2023-02-17 19:22:54.036000"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:54.040297"], ["updated_at", "2023-02-17 19:22:54.040297"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:54.041984"], ["updated_at", "2023-02-17 19:22:54.041984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:54.043551"], ["updated_at", "2023-02-17 19:22:54.043551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.2ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:54.073323"], ["updated_at", "2023-02-17 19:22:54.073323"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:54.075150"], ["updated_at", "2023-02-17 19:22:54.075150"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:54.076766"], ["updated_at", "2023-02-17 19:22:54.076766"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.077964"], ["updated_at", "2023-02-17 19:22:54.077964"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.078950"], ["updated_at", "2023-02-17 19:22:54.078950"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.080001"], ["updated_at", "2023-02-17 19:22:54.080001"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.080872"], ["updated_at", "2023-02-17 19:22:54.080872"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.081773"], ["updated_at", "2023-02-17 19:22:54.081773"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:54.082661"], ["updated_at", "2023-02-17 19:22:54.082661"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.083785"], ["updated_at", "2023-02-17 19:22:54.083785"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.084721"], ["updated_at", "2023-02-17 19:22:54.084721"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.085714"], ["updated_at", "2023-02-17 19:22:54.085714"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.086632"], ["updated_at", "2023-02-17 19:22:54.086632"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.087799"], ["updated_at", "2023-02-17 19:22:54.087799"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.088883"], ["updated_at", "2023-02-17 19:22:54.088883"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.089890"], ["updated_at", "2023-02-17 19:22:54.089890"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.090928"], ["updated_at", "2023-02-17 19:22:54.090928"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.091922"], ["updated_at", "2023-02-17 19:22:54.091922"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.092886"], ["updated_at", "2023-02-17 19:22:54.092886"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.093861"], ["updated_at", "2023-02-17 19:22:54.093861"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.095123"], ["updated_at", "2023-02-17 19:22:54.095123"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:54.108355"], ["updated_at", "2023-02-17 19:22:54.108355"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:54.109902"], ["updated_at", "2023-02-17 19:22:54.109902"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:54.111103"], ["updated_at", "2023-02-17 19:22:54.111103"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.112244"], ["updated_at", "2023-02-17 19:22:54.112244"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.113197"], ["updated_at", "2023-02-17 19:22:54.113197"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.114338"], ["updated_at", "2023-02-17 19:22:54.114338"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.115236"], ["updated_at", "2023-02-17 19:22:54.115236"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.116102"], ["updated_at", "2023-02-17 19:22:54.116102"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:54.117087"], ["updated_at", "2023-02-17 19:22:54.117087"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.118299"], ["updated_at", "2023-02-17 19:22:54.118299"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.119389"], ["updated_at", "2023-02-17 19:22:54.119389"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.120480"], ["updated_at", "2023-02-17 19:22:54.120480"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.121576"], ["updated_at", "2023-02-17 19:22:54.121576"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.122564"], ["updated_at", "2023-02-17 19:22:54.122564"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.123606"], ["updated_at", "2023-02-17 19:22:54.123606"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.124398"], ["updated_at", "2023-02-17 19:22:54.124398"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.125313"], ["updated_at", "2023-02-17 19:22:54.125313"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.126082"], ["updated_at", "2023-02-17 19:22:54.126082"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.126923"], ["updated_at", "2023-02-17 19:22:54.126923"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.127747"], ["updated_at", "2023-02-17 19:22:54.127747"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.128706"], ["updated_at", "2023-02-17 19:22:54.128706"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.163653"], ["updated_at", "2023-02-17 19:22:54.163653"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.164990"], ["updated_at", "2023-02-17 19:22:54.164990"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.165989"], ["updated_at", "2023-02-17 19:22:54.165989"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.166779"], ["updated_at", "2023-02-17 19:22:54.166779"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.167733"], ["updated_at", "2023-02-17 19:22:54.167733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.168940"], ["updated_at", "2023-02-17 19:22:54.168940"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.169802"], ["updated_at", "2023-02-17 19:22:54.169802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.170629"], ["updated_at", "2023-02-17 19:22:54.170629"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.171356"], ["updated_at", "2023-02-17 19:22:54.171356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.172251"], ["updated_at", "2023-02-17 19:22:54.172251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.173151"], ["updated_at", "2023-02-17 19:22:54.173151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.173995"], ["updated_at", "2023-02-17 19:22:54.173995"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.174821"], ["updated_at", "2023-02-17 19:22:54.174821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.175705"], ["updated_at", "2023-02-17 19:22:54.175705"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.176845"], ["updated_at", "2023-02-17 19:22:54.176845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.177772"], ["updated_at", "2023-02-17 19:22:54.177772"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.196659"], ["updated_at", "2023-02-17 19:22:54.196659"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.197994"], ["updated_at", "2023-02-17 19:22:54.197994"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.198970"], ["updated_at", "2023-02-17 19:22:54.198970"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.199865"], ["updated_at", "2023-02-17 19:22:54.199865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.200727"], ["updated_at", "2023-02-17 19:22:54.200727"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.201760"], ["updated_at", "2023-02-17 19:22:54.201760"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.202623"], ["updated_at", "2023-02-17 19:22:54.202623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.203517"], ["updated_at", "2023-02-17 19:22:54.203517"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.204340"], ["updated_at", "2023-02-17 19:22:54.204340"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.205359"], ["updated_at", "2023-02-17 19:22:54.205359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.206260"], ["updated_at", "2023-02-17 19:22:54.206260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.207149"], ["updated_at", "2023-02-17 19:22:54.207149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.208002"], ["updated_at", "2023-02-17 19:22:54.208002"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.208977"], ["updated_at", "2023-02-17 19:22:54.208977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.209833"], ["updated_at", "2023-02-17 19:22:54.209833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.210797"], ["updated_at", "2023-02-17 19:22:54.210797"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.230086"], ["updated_at", "2023-02-17 19:22:54.230086"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.231172"], ["updated_at", "2023-02-17 19:22:54.231172"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.232074"], ["updated_at", "2023-02-17 19:22:54.232074"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.233013"], ["updated_at", "2023-02-17 19:22:54.233013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.233955"], ["updated_at", "2023-02-17 19:22:54.233955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.234810"], ["updated_at", "2023-02-17 19:22:54.234810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.235560"], ["updated_at", "2023-02-17 19:22:54.235560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.236474"], ["updated_at", "2023-02-17 19:22:54.236474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.237524"], ["updated_at", "2023-02-17 19:22:54.237524"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.238281"], ["updated_at", "2023-02-17 19:22:54.238281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.239156"], ["updated_at", "2023-02-17 19:22:54.239156"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.239954"], ["updated_at", "2023-02-17 19:22:54.239954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.240954"], ["updated_at", "2023-02-17 19:22:54.240954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.241809"], ["updated_at", "2023-02-17 19:22:54.241809"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.242622"], ["updated_at", "2023-02-17 19:22:54.242622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.243880"], ["updated_at", "2023-02-17 19:22:54.243880"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.262979"], ["updated_at", "2023-02-17 19:22:54.262979"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.264005"], ["updated_at", "2023-02-17 19:22:54.264005"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.264889"], ["updated_at", "2023-02-17 19:22:54.264889"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.265821"], ["updated_at", "2023-02-17 19:22:54.265821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.266830"], ["updated_at", "2023-02-17 19:22:54.266830"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.267788"], ["updated_at", "2023-02-17 19:22:54.267788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.268726"], ["updated_at", "2023-02-17 19:22:54.268726"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.269642"], ["updated_at", "2023-02-17 19:22:54.269642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.270523"], ["updated_at", "2023-02-17 19:22:54.270523"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.271259"], ["updated_at", "2023-02-17 19:22:54.271259"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.272094"], ["updated_at", "2023-02-17 19:22:54.272094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.272910"], ["updated_at", "2023-02-17 19:22:54.272910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.273919"], ["updated_at", "2023-02-17 19:22:54.273919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.274788"], ["updated_at", "2023-02-17 19:22:54.274788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.275547"], ["updated_at", "2023-02-17 19:22:54.275547"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.276424"], ["updated_at", "2023-02-17 19:22:54.276424"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.294298"], ["updated_at", "2023-02-17 19:22:54.294298"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.295582"], ["updated_at", "2023-02-17 19:22:54.295582"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.296422"], ["updated_at", "2023-02-17 19:22:54.296422"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.297353"], ["updated_at", "2023-02-17 19:22:54.297353"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.298355"], ["updated_at", "2023-02-17 19:22:54.298355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.299136"], ["updated_at", "2023-02-17 19:22:54.299136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.299937"], ["updated_at", "2023-02-17 19:22:54.299937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.300753"], ["updated_at", "2023-02-17 19:22:54.300753"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.301673"], ["updated_at", "2023-02-17 19:22:54.301673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.302739"], ["updated_at", "2023-02-17 19:22:54.302739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.303557"], ["updated_at", "2023-02-17 19:22:54.303557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.304369"], ["updated_at", "2023-02-17 19:22:54.304369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.305127"], ["updated_at", "2023-02-17 19:22:54.305127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.306023"], ["updated_at", "2023-02-17 19:22:54.306023"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.306900"], ["updated_at", "2023-02-17 19:22:54.306900"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.307809"], ["updated_at", "2023-02-17 19:22:54.307809"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.326804"], ["updated_at", "2023-02-17 19:22:54.326804"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.328259"], ["updated_at", "2023-02-17 19:22:54.328259"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.329545"], ["updated_at", "2023-02-17 19:22:54.329545"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.330609"], ["updated_at", "2023-02-17 19:22:54.330609"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.331746"], ["updated_at", "2023-02-17 19:22:54.331746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.332900"], ["updated_at", "2023-02-17 19:22:54.332900"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.333955"], ["updated_at", "2023-02-17 19:22:54.333955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.335025"], ["updated_at", "2023-02-17 19:22:54.335025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.336003"], ["updated_at", "2023-02-17 19:22:54.336003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.337042"], ["updated_at", "2023-02-17 19:22:54.337042"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.338160"], ["updated_at", "2023-02-17 19:22:54.338160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.339121"], ["updated_at", "2023-02-17 19:22:54.339121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.340305"], ["updated_at", "2023-02-17 19:22:54.340305"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.341385"], ["updated_at", "2023-02-17 19:22:54.341385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.342366"], ["updated_at", "2023-02-17 19:22:54.342366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.343594"], ["updated_at", "2023-02-17 19:22:54.343594"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:22:54 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 7ms (Views: 5.9ms | ActiveRecord: 0.4ms | Allocations: 3126)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (2.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:54.373136"], ["updated_at", "2023-02-17 19:22:54.373136"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:54.376843"], ["updated_at", "2023-02-17 19:22:54.376843"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:54.382231"], ["updated_at", "2023-02-17 19:22:54.382231"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:54.383800"], ["updated_at", "2023-02-17 19:22:54.383800"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:54.387708"], ["updated_at", "2023-02-17 19:22:54.387708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:54.389235"], ["updated_at", "2023-02-17 19:22:54.389235"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.6ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:54.392039"], ["updated_at", "2023-02-17 19:22:54.392039"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:54.394721"], ["updated_at", "2023-02-17 19:22:54.394721"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:54.397976"], ["updated_at", "2023-02-17 19:22:54.397976"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:54.401091"], ["updated_at", "2023-02-17 19:22:54.401091"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:54.402807"], ["updated_at", "2023-02-17 19:22:54.402807"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:54.404141"], ["updated_at", "2023-02-17 19:22:54.404141"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:54.405547"], ["updated_at", "2023-02-17 19:22:54.405547"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:54.406911"], ["updated_at", "2023-02-17 19:22:54.406911"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:54.408353"], ["updated_at", "2023-02-17 19:22:54.408353"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:54.409825"], ["updated_at", "2023-02-17 19:22:54.409825"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:54.411687"], ["updated_at", "2023-02-17 19:22:54.411687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:54.413045"], ["updated_at", "2023-02-17 19:22:54.413045"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:54.414732"], ["updated_at", "2023-02-17 19:22:54.414732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:54.416015"], ["updated_at", "2023-02-17 19:22:54.416015"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:54.417592"], ["updated_at", "2023-02-17 19:22:54.417592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:54.418956"], ["updated_at", "2023-02-17 19:22:54.418956"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:54.420407"], ["updated_at", "2023-02-17 19:22:54.420407"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:54.421902"], ["updated_at", "2023-02-17 19:22:54.421902"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:54.423392"], ["updated_at", "2023-02-17 19:22:54.423392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:54.424686"], ["updated_at", "2023-02-17 19:22:54.424686"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:54.426160"], ["updated_at", "2023-02-17 19:22:54.426160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:54.427576"], ["updated_at", "2023-02-17 19:22:54.427576"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:54.429545"], ["updated_at", "2023-02-17 19:22:54.429545"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:54.431209"], ["updated_at", "2023-02-17 19:22:54.431209"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:54.433035"], ["updated_at", "2023-02-17 19:22:54.433035"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:54.434408"], ["updated_at", "2023-02-17 19:22:54.434408"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:54.435868"], ["updated_at", "2023-02-17 19:22:54.435868"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:54.437113"], ["updated_at", "2023-02-17 19:22:54.437113"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:54.438682"], ["updated_at", "2023-02-17 19:22:54.438682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:54.440014"], ["updated_at", "2023-02-17 19:22:54.440014"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:54.441447"], ["updated_at", "2023-02-17 19:22:54.441447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:54.442792"], ["updated_at", "2023-02-17 19:22:54.442792"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:54.444175"], ["updated_at", "2023-02-17 19:22:54.444175"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:54.445504"], ["updated_at", "2023-02-17 19:22:54.445504"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:54.447413"], ["updated_at", "2023-02-17 19:22:54.447413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:54.448921"], ["updated_at", "2023-02-17 19:22:54.448921"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:54.450438"], ["updated_at", "2023-02-17 19:22:54.450438"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:54.451892"], ["updated_at", "2023-02-17 19:22:54.451892"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:54.453428"], ["updated_at", "2023-02-17 19:22:54.453428"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:54.454683"], ["updated_at", "2023-02-17 19:22:54.454683"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:54.456206"], ["updated_at", "2023-02-17 19:22:54.456206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:54.457429"], ["updated_at", "2023-02-17 19:22:54.457429"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:54.459005"], ["updated_at", "2023-02-17 19:22:54.459005"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:54.460483"], ["updated_at", "2023-02-17 19:22:54.460483"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:54.462395"], ["updated_at", "2023-02-17 19:22:54.462395"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:54.463850"], ["updated_at", "2023-02-17 19:22:54.463850"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:54.465304"], ["updated_at", "2023-02-17 19:22:54.465304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:54.466708"], ["updated_at", "2023-02-17 19:22:54.466708"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:54.468281"], ["updated_at", "2023-02-17 19:22:54.468281"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:54.469681"], ["updated_at", "2023-02-17 19:22:54.469681"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:54.482421"], ["updated_at", "2023-02-17 19:22:54.482421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:54.483853"], ["updated_at", "2023-02-17 19:22:54.483853"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:54.485371"], ["updated_at", "2023-02-17 19:22:54.485371"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:54.486614"], ["updated_at", "2023-02-17 19:22:54.486614"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:54.487995"], ["updated_at", "2023-02-17 19:22:54.487995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:54.489411"], ["updated_at", "2023-02-17 19:22:54.489411"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:54.490957"], ["updated_at", "2023-02-17 19:22:54.490957"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:54.492179"], ["updated_at", "2023-02-17 19:22:54.492179"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:54.493697"], ["updated_at", "2023-02-17 19:22:54.493697"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:54.494925"], ["updated_at", "2023-02-17 19:22:54.494925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:54.496279"], ["updated_at", "2023-02-17 19:22:54.496279"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:54.497663"], ["updated_at", "2023-02-17 19:22:54.497663"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:54.499091"], ["updated_at", "2023-02-17 19:22:54.499091"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:54.500289"], ["updated_at", "2023-02-17 19:22:54.500289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:54.501795"], ["updated_at", "2023-02-17 19:22:54.501795"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:54.502995"], ["updated_at", "2023-02-17 19:22:54.502995"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:54.504529"], ["updated_at", "2023-02-17 19:22:54.504529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:54.505847"], ["updated_at", "2023-02-17 19:22:54.505847"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:54.507257"], ["updated_at", "2023-02-17 19:22:54.507257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:54.508547"], ["updated_at", "2023-02-17 19:22:54.508547"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:54.509976"], ["updated_at", "2023-02-17 19:22:54.509976"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:54.511221"], ["updated_at", "2023-02-17 19:22:54.511221"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:54.512808"], ["updated_at", "2023-02-17 19:22:54.512808"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:54.513996"], ["updated_at", "2023-02-17 19:22:54.513996"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:54.515360"], ["updated_at", "2023-02-17 19:22:54.515360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:54.516661"], ["updated_at", "2023-02-17 19:22:54.516661"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:54.518024"], ["updated_at", "2023-02-17 19:22:54.518024"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:54.519405"], ["updated_at", "2023-02-17 19:22:54.519405"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:54.520845"], ["updated_at", "2023-02-17 19:22:54.520845"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:54.522437"], ["updated_at", "2023-02-17 19:22:54.522437"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:54.524112"], ["updated_at", "2023-02-17 19:22:54.524112"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:54.525342"], ["updated_at", "2023-02-17 19:22:54.525342"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:54.526801"], ["updated_at", "2023-02-17 19:22:54.526801"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:54.528199"], ["updated_at", "2023-02-17 19:22:54.528199"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:54.529651"], ["updated_at", "2023-02-17 19:22:54.529651"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:54.530976"], ["updated_at", "2023-02-17 19:22:54.530976"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:54.532401"], ["updated_at", "2023-02-17 19:22:54.532401"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:54.533602"], ["updated_at", "2023-02-17 19:22:54.533602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:54.535173"], ["updated_at", "2023-02-17 19:22:54.535173"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:54.536289"], ["updated_at", "2023-02-17 19:22:54.536289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:54.537487"], ["updated_at", "2023-02-17 19:22:54.537487"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:54.539023"], ["updated_at", "2023-02-17 19:22:54.539023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:54.540477"], ["updated_at", "2023-02-17 19:22:54.540477"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:54.541611"], ["updated_at", "2023-02-17 19:22:54.541611"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:54.542807"], ["updated_at", "2023-02-17 19:22:54.542807"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:54.554981"], ["updated_at", "2023-02-17 19:22:54.554981"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:54.556340"], ["updated_at", "2023-02-17 19:22:54.556340"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:54.557334"], ["updated_at", "2023-02-17 19:22:54.557334"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.558186"], ["updated_at", "2023-02-17 19:22:54.558186"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.558993"], ["updated_at", "2023-02-17 19:22:54.558993"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.559873"], ["updated_at", "2023-02-17 19:22:54.559873"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.560606"], ["updated_at", "2023-02-17 19:22:54.560606"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.561304"], ["updated_at", "2023-02-17 19:22:54.561304"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:54.562059"], ["updated_at", "2023-02-17 19:22:54.562059"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.562999"], ["updated_at", "2023-02-17 19:22:54.562999"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.563883"], ["updated_at", "2023-02-17 19:22:54.563883"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.564630"], ["updated_at", "2023-02-17 19:22:54.564630"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.565386"], ["updated_at", "2023-02-17 19:22:54.565386"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.566113"], ["updated_at", "2023-02-17 19:22:54.566113"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.566994"], ["updated_at", "2023-02-17 19:22:54.566994"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.567792"], ["updated_at", "2023-02-17 19:22:54.567792"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.568559"], ["updated_at", "2023-02-17 19:22:54.568559"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.569304"], ["updated_at", "2023-02-17 19:22:54.569304"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.570256"], ["updated_at", "2023-02-17 19:22:54.570256"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.571505"], ["updated_at", "2023-02-17 19:22:54.571505"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.572505"], ["updated_at", "2023-02-17 19:22:54.572505"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:54.585461"], ["updated_at", "2023-02-17 19:22:54.585461"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:54.586721"], ["updated_at", "2023-02-17 19:22:54.586721"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:54.587611"], ["updated_at", "2023-02-17 19:22:54.587611"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.588465"], ["updated_at", "2023-02-17 19:22:54.588465"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.589453"], ["updated_at", "2023-02-17 19:22:54.589453"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.590282"], ["updated_at", "2023-02-17 19:22:54.590282"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.590991"], ["updated_at", "2023-02-17 19:22:54.590991"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.591648"], ["updated_at", "2023-02-17 19:22:54.591648"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:54.592389"], ["updated_at", "2023-02-17 19:22:54.592389"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.593383"], ["updated_at", "2023-02-17 19:22:54.593383"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.594247"], ["updated_at", "2023-02-17 19:22:54.594247"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.595007"], ["updated_at", "2023-02-17 19:22:54.595007"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.595739"], ["updated_at", "2023-02-17 19:22:54.595739"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.596461"], ["updated_at", "2023-02-17 19:22:54.596461"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.597401"], ["updated_at", "2023-02-17 19:22:54.597401"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.598185"], ["updated_at", "2023-02-17 19:22:54.598185"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.598956"], ["updated_at", "2023-02-17 19:22:54.598956"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.599712"], ["updated_at", "2023-02-17 19:22:54.599712"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.600521"], ["updated_at", "2023-02-17 19:22:54.600521"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.601305"], ["updated_at", "2023-02-17 19:22:54.601305"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.602037"], ["updated_at", "2023-02-17 19:22:54.602037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.618386"], ["updated_at", "2023-02-17 19:22:54.618386"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.619785"], ["updated_at", "2023-02-17 19:22:54.619785"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.620952"], ["updated_at", "2023-02-17 19:22:54.620952"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.621903"], ["updated_at", "2023-02-17 19:22:54.621903"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.622766"], ["updated_at", "2023-02-17 19:22:54.622766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.623739"], ["updated_at", "2023-02-17 19:22:54.623739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.624472"], ["updated_at", "2023-02-17 19:22:54.624472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.625157"], ["updated_at", "2023-02-17 19:22:54.625157"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.625853"], ["updated_at", "2023-02-17 19:22:54.625853"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.626713"], ["updated_at", "2023-02-17 19:22:54.626713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.627731"], ["updated_at", "2023-02-17 19:22:54.627731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.628494"], ["updated_at", "2023-02-17 19:22:54.628494"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.629286"], ["updated_at", "2023-02-17 19:22:54.629286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.629995"], ["updated_at", "2023-02-17 19:22:54.629995"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.630804"], ["updated_at", "2023-02-17 19:22:54.630804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:54.631554"], ["updated_at", "2023-02-17 19:22:54.631554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.648207"], ["updated_at", "2023-02-17 19:22:54.648207"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.649244"], ["updated_at", "2023-02-17 19:22:54.649244"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.650402"], ["updated_at", "2023-02-17 19:22:54.650402"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.651346"], ["updated_at", "2023-02-17 19:22:54.651346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.652177"], ["updated_at", "2023-02-17 19:22:54.652177"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.652947"], ["updated_at", "2023-02-17 19:22:54.652947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.653841"], ["updated_at", "2023-02-17 19:22:54.653841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.654638"], ["updated_at", "2023-02-17 19:22:54.654638"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.655351"], ["updated_at", "2023-02-17 19:22:54.655351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.656082"], ["updated_at", "2023-02-17 19:22:54.656082"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.656794"], ["updated_at", "2023-02-17 19:22:54.656794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.657623"], ["updated_at", "2023-02-17 19:22:54.657623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.658389"], ["updated_at", "2023-02-17 19:22:54.658389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.659137"], ["updated_at", "2023-02-17 19:22:54.659137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.659846"], ["updated_at", "2023-02-17 19:22:54.659846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:54.660582"], ["updated_at", "2023-02-17 19:22:54.660582"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.676663"], ["updated_at", "2023-02-17 19:22:54.676663"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.677660"], ["updated_at", "2023-02-17 19:22:54.677660"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.678413"], ["updated_at", "2023-02-17 19:22:54.678413"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.679160"], ["updated_at", "2023-02-17 19:22:54.679160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.680036"], ["updated_at", "2023-02-17 19:22:54.680036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.680857"], ["updated_at", "2023-02-17 19:22:54.680857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.681622"], ["updated_at", "2023-02-17 19:22:54.681622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.682333"], ["updated_at", "2023-02-17 19:22:54.682333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.683031"], ["updated_at", "2023-02-17 19:22:54.683031"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.683829"], ["updated_at", "2023-02-17 19:22:54.683829"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.684674"], ["updated_at", "2023-02-17 19:22:54.684674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.685400"], ["updated_at", "2023-02-17 19:22:54.685400"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.686098"], ["updated_at", "2023-02-17 19:22:54.686098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.686794"], ["updated_at", "2023-02-17 19:22:54.686794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.687544"], ["updated_at", "2023-02-17 19:22:54.687544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:54.688287"], ["updated_at", "2023-02-17 19:22:54.688287"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.704314"], ["updated_at", "2023-02-17 19:22:54.704314"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.705305"], ["updated_at", "2023-02-17 19:22:54.705305"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.706036"], ["updated_at", "2023-02-17 19:22:54.706036"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.706923"], ["updated_at", "2023-02-17 19:22:54.706923"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.707733"], ["updated_at", "2023-02-17 19:22:54.707733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.708447"], ["updated_at", "2023-02-17 19:22:54.708447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.709191"], ["updated_at", "2023-02-17 19:22:54.709191"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.709928"], ["updated_at", "2023-02-17 19:22:54.709928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.710729"], ["updated_at", "2023-02-17 19:22:54.710729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.711446"], ["updated_at", "2023-02-17 19:22:54.711446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.712135"], ["updated_at", "2023-02-17 19:22:54.712135"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.712811"], ["updated_at", "2023-02-17 19:22:54.712811"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.713529"], ["updated_at", "2023-02-17 19:22:54.713529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.714405"], ["updated_at", "2023-02-17 19:22:54.714405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.715145"], ["updated_at", "2023-02-17 19:22:54.715145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:54.715868"], ["updated_at", "2023-02-17 19:22:54.715868"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.731948"], ["updated_at", "2023-02-17 19:22:54.731948"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.733041"], ["updated_at", "2023-02-17 19:22:54.733041"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.734078"], ["updated_at", "2023-02-17 19:22:54.734078"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.734896"], ["updated_at", "2023-02-17 19:22:54.734896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.735681"], ["updated_at", "2023-02-17 19:22:54.735681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.736392"], ["updated_at", "2023-02-17 19:22:54.736392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.737314"], ["updated_at", "2023-02-17 19:22:54.737314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.738047"], ["updated_at", "2023-02-17 19:22:54.738047"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.738727"], ["updated_at", "2023-02-17 19:22:54.738727"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.739467"], ["updated_at", "2023-02-17 19:22:54.739467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.740197"], ["updated_at", "2023-02-17 19:22:54.740197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.741046"], ["updated_at", "2023-02-17 19:22:54.741046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.741774"], ["updated_at", "2023-02-17 19:22:54.741774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.742482"], ["updated_at", "2023-02-17 19:22:54.742482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.743155"], ["updated_at", "2023-02-17 19:22:54.743155"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:54.743829"], ["updated_at", "2023-02-17 19:22:54.743829"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:54.760688"], ["updated_at", "2023-02-17 19:22:54.760688"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:54.761682"], ["updated_at", "2023-02-17 19:22:54.761682"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.762546"], ["updated_at", "2023-02-17 19:22:54.762546"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.763270"], ["updated_at", "2023-02-17 19:22:54.763270"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.764014"], ["updated_at", "2023-02-17 19:22:54.764014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.764717"], ["updated_at", "2023-02-17 19:22:54.764717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.765406"], ["updated_at", "2023-02-17 19:22:54.765406"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.766251"], ["updated_at", "2023-02-17 19:22:54.766251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.767004"], ["updated_at", "2023-02-17 19:22:54.767004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.767704"], ["updated_at", "2023-02-17 19:22:54.767704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.768388"], ["updated_at", "2023-02-17 19:22:54.768388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.769108"], ["updated_at", "2023-02-17 19:22:54.769108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.769971"], ["updated_at", "2023-02-17 19:22:54.769971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.770713"], ["updated_at", "2023-02-17 19:22:54.770713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.771424"], ["updated_at", "2023-02-17 19:22:54.771424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:54.772127"], ["updated_at", "2023-02-17 19:22:54.772127"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:22:54 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:54.780999"], ["updated_at", "2023-02-17 19:22:54.780999"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:54.782654"], ["updated_at", "2023-02-17 19:22:54.782654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:54.785751"], ["updated_at", "2023-02-17 19:22:54.785751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:54.786951"], ["updated_at", "2023-02-17 19:22:54.786951"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:54.789738"], ["updated_at", "2023-02-17 19:22:54.789738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:54.790923"], ["updated_at", "2023-02-17 19:22:54.790923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:54.793145"], ["updated_at", "2023-02-17 19:22:54.793145"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:54.794550"], ["updated_at", "2023-02-17 19:22:54.794550"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:54.796166"], ["updated_at", "2023-02-17 19:22:54.796166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:54.797488"], ["updated_at", "2023-02-17 19:22:54.797488"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:54.798872"], ["updated_at", "2023-02-17 19:22:54.798872"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:54.800223"], ["updated_at", "2023-02-17 19:22:54.800223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:54.801680"], ["updated_at", "2023-02-17 19:22:54.801680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:54.803012"], ["updated_at", "2023-02-17 19:22:54.803012"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:54.804433"], ["updated_at", "2023-02-17 19:22:54.804433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:54.805616"], ["updated_at", "2023-02-17 19:22:54.805616"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:54.807090"], ["updated_at", "2023-02-17 19:22:54.807090"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:54.808325"], ["updated_at", "2023-02-17 19:22:54.808325"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:54.809761"], ["updated_at", "2023-02-17 19:22:54.809761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:54.811121"], ["updated_at", "2023-02-17 19:22:54.811121"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:54.812550"], ["updated_at", "2023-02-17 19:22:54.812550"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:54.813729"], ["updated_at", "2023-02-17 19:22:54.813729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:54.815285"], ["updated_at", "2023-02-17 19:22:54.815285"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:54.816486"], ["updated_at", "2023-02-17 19:22:54.816486"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:54.817826"], ["updated_at", "2023-02-17 19:22:54.817826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:54.819117"], ["updated_at", "2023-02-17 19:22:54.819117"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:54.820577"], ["updated_at", "2023-02-17 19:22:54.820577"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:54.821968"], ["updated_at", "2023-02-17 19:22:54.821968"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:54.823494"], ["updated_at", "2023-02-17 19:22:54.823494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:54.824671"], ["updated_at", "2023-02-17 19:22:54.824671"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:54.826134"], ["updated_at", "2023-02-17 19:22:54.826134"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:54.827344"], ["updated_at", "2023-02-17 19:22:54.827344"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:54.828770"], ["updated_at", "2023-02-17 19:22:54.828770"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:54.830152"], ["updated_at", "2023-02-17 19:22:54.830152"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:54.831583"], ["updated_at", "2023-02-17 19:22:54.831583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:54.832816"], ["updated_at", "2023-02-17 19:22:54.832816"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:54.834400"], ["updated_at", "2023-02-17 19:22:54.834400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:54.835869"], ["updated_at", "2023-02-17 19:22:54.835869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:54.837417"], ["updated_at", "2023-02-17 19:22:54.837417"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:54.838658"], ["updated_at", "2023-02-17 19:22:54.838658"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:54.840104"], ["updated_at", "2023-02-17 19:22:54.840104"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:54.841526"], ["updated_at", "2023-02-17 19:22:54.841526"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:54.842984"], ["updated_at", "2023-02-17 19:22:54.842984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:54.844222"], ["updated_at", "2023-02-17 19:22:54.844222"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:54.845895"], ["updated_at", "2023-02-17 19:22:54.845895"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:54.847111"], ["updated_at", "2023-02-17 19:22:54.847111"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:54.848632"], ["updated_at", "2023-02-17 19:22:54.848632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:54.849972"], ["updated_at", "2023-02-17 19:22:54.849972"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:54.851382"], ["updated_at", "2023-02-17 19:22:54.851382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:54.852834"], ["updated_at", "2023-02-17 19:22:54.852834"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:54.854627"], ["updated_at", "2023-02-17 19:22:54.854627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:54.855998"], ["updated_at", "2023-02-17 19:22:54.855998"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:54.857484"], ["updated_at", "2023-02-17 19:22:54.857484"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:54.858684"], ["updated_at", "2023-02-17 19:22:54.858684"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:54.860285"], ["updated_at", "2023-02-17 19:22:54.860285"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:54.861614"], ["updated_at", "2023-02-17 19:22:54.861614"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:54.863161"], ["updated_at", "2023-02-17 19:22:54.863161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:54.864579"], ["updated_at", "2023-02-17 19:22:54.864579"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:54.866114"], ["updated_at", "2023-02-17 19:22:54.866114"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:54.867421"], ["updated_at", "2023-02-17 19:22:54.867421"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:54.868856"], ["updated_at", "2023-02-17 19:22:54.868856"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:54.870239"], ["updated_at", "2023-02-17 19:22:54.870239"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:54.871923"], ["updated_at", "2023-02-17 19:22:54.871923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:54.873183"], ["updated_at", "2023-02-17 19:22:54.873183"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:54.874724"], ["updated_at", "2023-02-17 19:22:54.874724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:54.875999"], ["updated_at", "2023-02-17 19:22:54.875999"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:54.877491"], ["updated_at", "2023-02-17 19:22:54.877491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:54.878970"], ["updated_at", "2023-02-17 19:22:54.878970"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:54.880505"], ["updated_at", "2023-02-17 19:22:54.880505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:54.881839"], ["updated_at", "2023-02-17 19:22:54.881839"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:54.883418"], ["updated_at", "2023-02-17 19:22:54.883418"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:54.884697"], ["updated_at", "2023-02-17 19:22:54.884697"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:54.886274"], ["updated_at", "2023-02-17 19:22:54.886274"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:54.887591"], ["updated_at", "2023-02-17 19:22:54.887591"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:54.889002"], ["updated_at", "2023-02-17 19:22:54.889002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:54.890375"], ["updated_at", "2023-02-17 19:22:54.890375"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:54.891857"], ["updated_at", "2023-02-17 19:22:54.891857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:54.893143"], ["updated_at", "2023-02-17 19:22:54.893143"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:54.894833"], ["updated_at", "2023-02-17 19:22:54.894833"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:54.896107"], ["updated_at", "2023-02-17 19:22:54.896107"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:54.897643"], ["updated_at", "2023-02-17 19:22:54.897643"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:54.898909"], ["updated_at", "2023-02-17 19:22:54.898909"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:54.900396"], ["updated_at", "2023-02-17 19:22:54.900396"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:54.901911"], ["updated_at", "2023-02-17 19:22:54.901911"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:54.903452"], ["updated_at", "2023-02-17 19:22:54.903452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:54.904703"], ["updated_at", "2023-02-17 19:22:54.904703"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:54.906253"], ["updated_at", "2023-02-17 19:22:54.906253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:54.907446"], ["updated_at", "2023-02-17 19:22:54.907446"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:54.908995"], ["updated_at", "2023-02-17 19:22:54.908995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:54.910395"], ["updated_at", "2023-02-17 19:22:54.910395"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:54.911886"], ["updated_at", "2023-02-17 19:22:54.911886"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:54.913252"], ["updated_at", "2023-02-17 19:22:54.913252"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:54.914692"], ["updated_at", "2023-02-17 19:22:54.914692"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:54.915898"], ["updated_at", "2023-02-17 19:22:54.915898"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:54.917498"], ["updated_at", "2023-02-17 19:22:54.917498"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:54.918618"], ["updated_at", "2023-02-17 19:22:54.918618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:54.919972"], ["updated_at", "2023-02-17 19:22:54.919972"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:54.921540"], ["updated_at", "2023-02-17 19:22:54.921540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:54.923106"], ["updated_at", "2023-02-17 19:22:54.923106"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:54.924502"], ["updated_at", "2023-02-17 19:22:54.924502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:54.925594"], ["updated_at", "2023-02-17 19:22:54.925594"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:54.937976"], ["updated_at", "2023-02-17 19:22:54.937976"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:54.939478"], ["updated_at", "2023-02-17 19:22:54.939478"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:54.940571"], ["updated_at", "2023-02-17 19:22:54.940571"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.941567"], ["updated_at", "2023-02-17 19:22:54.941567"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.942437"], ["updated_at", "2023-02-17 19:22:54.942437"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.943321"], ["updated_at", "2023-02-17 19:22:54.943321"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.944087"], ["updated_at", "2023-02-17 19:22:54.944087"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:54.944801"], ["updated_at", "2023-02-17 19:22:54.944801"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:54.945599"], ["updated_at", "2023-02-17 19:22:54.945599"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.946678"], ["updated_at", "2023-02-17 19:22:54.946678"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.947648"], ["updated_at", "2023-02-17 19:22:54.947648"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.948446"], ["updated_at", "2023-02-17 19:22:54.948446"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.949205"], ["updated_at", "2023-02-17 19:22:54.949205"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.950063"], ["updated_at", "2023-02-17 19:22:54.950063"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.950941"], ["updated_at", "2023-02-17 19:22:54.950941"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.951737"], ["updated_at", "2023-02-17 19:22:54.951737"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.952530"], ["updated_at", "2023-02-17 19:22:54.952530"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.953413"], ["updated_at", "2023-02-17 19:22:54.953413"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.954677"], ["updated_at", "2023-02-17 19:22:54.954677"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.955767"], ["updated_at", "2023-02-17 19:22:54.955767"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:54.956604"], ["updated_at", "2023-02-17 19:22:54.956604"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:54.968321"], ["updated_at", "2023-02-17 19:22:54.968321"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:54.969831"], ["updated_at", "2023-02-17 19:22:54.969831"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:54.970877"], ["updated_at", "2023-02-17 19:22:54.970877"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.971798"], ["updated_at", "2023-02-17 19:22:54.971798"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.972651"], ["updated_at", "2023-02-17 19:22:54.972651"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.973477"], ["updated_at", "2023-02-17 19:22:54.973477"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.974211"], ["updated_at", "2023-02-17 19:22:54.974211"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:54.974895"], ["updated_at", "2023-02-17 19:22:54.974895"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:54.975674"], ["updated_at", "2023-02-17 19:22:54.975674"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.976716"], ["updated_at", "2023-02-17 19:22:54.976716"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.977679"], ["updated_at", "2023-02-17 19:22:54.977679"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.978601"], ["updated_at", "2023-02-17 19:22:54.978601"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.979435"], ["updated_at", "2023-02-17 19:22:54.979435"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.980304"], ["updated_at", "2023-02-17 19:22:54.980304"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.981192"], ["updated_at", "2023-02-17 19:22:54.981192"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.982050"], ["updated_at", "2023-02-17 19:22:54.982050"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.982842"], ["updated_at", "2023-02-17 19:22:54.982842"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.983621"], ["updated_at", "2023-02-17 19:22:54.983621"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.984633"], ["updated_at", "2023-02-17 19:22:54.984633"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.985471"], ["updated_at", "2023-02-17 19:22:54.985471"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:54.986517"], ["updated_at", "2023-02-17 19:22:54.986517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.004238"], ["updated_at", "2023-02-17 19:22:55.004238"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.005427"], ["updated_at", "2023-02-17 19:22:55.005427"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.006344"], ["updated_at", "2023-02-17 19:22:55.006344"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.007080"], ["updated_at", "2023-02-17 19:22:55.007080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.007856"], ["updated_at", "2023-02-17 19:22:55.007856"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.008686"], ["updated_at", "2023-02-17 19:22:55.008686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.009794"], ["updated_at", "2023-02-17 19:22:55.009794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.010589"], ["updated_at", "2023-02-17 19:22:55.010589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.011352"], ["updated_at", "2023-02-17 19:22:55.011352"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.012117"], ["updated_at", "2023-02-17 19:22:55.012117"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.012980"], ["updated_at", "2023-02-17 19:22:55.012980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.013746"], ["updated_at", "2023-02-17 19:22:55.013746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.014470"], ["updated_at", "2023-02-17 19:22:55.014470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.015206"], ["updated_at", "2023-02-17 19:22:55.015206"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.015885"], ["updated_at", "2023-02-17 19:22:55.015885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.016754"], ["updated_at", "2023-02-17 19:22:55.016754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.033471"], ["updated_at", "2023-02-17 19:22:55.033471"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.034438"], ["updated_at", "2023-02-17 19:22:55.034438"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.035340"], ["updated_at", "2023-02-17 19:22:55.035340"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.036156"], ["updated_at", "2023-02-17 19:22:55.036156"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.037095"], ["updated_at", "2023-02-17 19:22:55.037095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.038013"], ["updated_at", "2023-02-17 19:22:55.038013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.038815"], ["updated_at", "2023-02-17 19:22:55.038815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.039732"], ["updated_at", "2023-02-17 19:22:55.039732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.040491"], ["updated_at", "2023-02-17 19:22:55.040491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.041267"], ["updated_at", "2023-02-17 19:22:55.041267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.042098"], ["updated_at", "2023-02-17 19:22:55.042098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.043045"], ["updated_at", "2023-02-17 19:22:55.043045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.043855"], ["updated_at", "2023-02-17 19:22:55.043855"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.044672"], ["updated_at", "2023-02-17 19:22:55.044672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.045457"], ["updated_at", "2023-02-17 19:22:55.045457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.046230"], ["updated_at", "2023-02-17 19:22:55.046230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.064625"], ["updated_at", "2023-02-17 19:22:55.064625"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.065672"], ["updated_at", "2023-02-17 19:22:55.065672"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.066437"], ["updated_at", "2023-02-17 19:22:55.066437"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.067253"], ["updated_at", "2023-02-17 19:22:55.067253"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.068286"], ["updated_at", "2023-02-17 19:22:55.068286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.069069"], ["updated_at", "2023-02-17 19:22:55.069069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.069850"], ["updated_at", "2023-02-17 19:22:55.069850"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.070611"], ["updated_at", "2023-02-17 19:22:55.070611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.071547"], ["updated_at", "2023-02-17 19:22:55.071547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.072361"], ["updated_at", "2023-02-17 19:22:55.072361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.073119"], ["updated_at", "2023-02-17 19:22:55.073119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.073873"], ["updated_at", "2023-02-17 19:22:55.073873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.074582"], ["updated_at", "2023-02-17 19:22:55.074582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.075521"], ["updated_at", "2023-02-17 19:22:55.075521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.076343"], ["updated_at", "2023-02-17 19:22:55.076343"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.077151"], ["updated_at", "2023-02-17 19:22:55.077151"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.093722"], ["updated_at", "2023-02-17 19:22:55.093722"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.094841"], ["updated_at", "2023-02-17 19:22:55.094841"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.095658"], ["updated_at", "2023-02-17 19:22:55.095658"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.096458"], ["updated_at", "2023-02-17 19:22:55.096458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.097276"], ["updated_at", "2023-02-17 19:22:55.097276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.098231"], ["updated_at", "2023-02-17 19:22:55.098231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.098987"], ["updated_at", "2023-02-17 19:22:55.098987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.099700"], ["updated_at", "2023-02-17 19:22:55.099700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.100521"], ["updated_at", "2023-02-17 19:22:55.100521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.101422"], ["updated_at", "2023-02-17 19:22:55.101422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.102244"], ["updated_at", "2023-02-17 19:22:55.102244"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.102977"], ["updated_at", "2023-02-17 19:22:55.102977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.103716"], ["updated_at", "2023-02-17 19:22:55.103716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.104517"], ["updated_at", "2023-02-17 19:22:55.104517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.105482"], ["updated_at", "2023-02-17 19:22:55.105482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.106312"], ["updated_at", "2023-02-17 19:22:55.106312"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.123528"], ["updated_at", "2023-02-17 19:22:55.123528"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.124693"], ["updated_at", "2023-02-17 19:22:55.124693"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.125678"], ["updated_at", "2023-02-17 19:22:55.125678"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.126484"], ["updated_at", "2023-02-17 19:22:55.126484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.127280"], ["updated_at", "2023-02-17 19:22:55.127280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.128171"], ["updated_at", "2023-02-17 19:22:55.128171"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.128956"], ["updated_at", "2023-02-17 19:22:55.128956"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.129766"], ["updated_at", "2023-02-17 19:22:55.129766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.130539"], ["updated_at", "2023-02-17 19:22:55.130539"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.131268"], ["updated_at", "2023-02-17 19:22:55.131268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.132113"], ["updated_at", "2023-02-17 19:22:55.132113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.132861"], ["updated_at", "2023-02-17 19:22:55.132861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.133629"], ["updated_at", "2023-02-17 19:22:55.133629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.134406"], ["updated_at", "2023-02-17 19:22:55.134406"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.135120"], ["updated_at", "2023-02-17 19:22:55.135120"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.135995"], ["updated_at", "2023-02-17 19:22:55.135995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.152685"], ["updated_at", "2023-02-17 19:22:55.152685"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.153742"], ["updated_at", "2023-02-17 19:22:55.153742"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.154605"], ["updated_at", "2023-02-17 19:22:55.154605"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.155370"], ["updated_at", "2023-02-17 19:22:55.155370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.156286"], ["updated_at", "2023-02-17 19:22:55.156286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.157543"], ["updated_at", "2023-02-17 19:22:55.157543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.158463"], ["updated_at", "2023-02-17 19:22:55.158463"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.159254"], ["updated_at", "2023-02-17 19:22:55.159254"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.160085"], ["updated_at", "2023-02-17 19:22:55.160085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.160892"], ["updated_at", "2023-02-17 19:22:55.160892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.161711"], ["updated_at", "2023-02-17 19:22:55.161711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.162542"], ["updated_at", "2023-02-17 19:22:55.162542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.163353"], ["updated_at", "2023-02-17 19:22:55.163353"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.164248"], ["updated_at", "2023-02-17 19:22:55.164248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.165002"], ["updated_at", "2023-02-17 19:22:55.165002"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.165738"], ["updated_at", "2023-02-17 19:22:55.165738"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:22:55 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 15ms (Views: 11.3ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:55.191802"], ["updated_at", "2023-02-17 19:22:55.191802"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:55.193586"], ["updated_at", "2023-02-17 19:22:55.193586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:55.197058"], ["updated_at", "2023-02-17 19:22:55.197058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:55.198315"], ["updated_at", "2023-02-17 19:22:55.198315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:55.201682"], ["updated_at", "2023-02-17 19:22:55.201682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:55.203008"], ["updated_at", "2023-02-17 19:22:55.203008"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:55.205497"], ["updated_at", "2023-02-17 19:22:55.205497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:55.207136"], ["updated_at", "2023-02-17 19:22:55.207136"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:55.208974"], ["updated_at", "2023-02-17 19:22:55.208974"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:55.210527"], ["updated_at", "2023-02-17 19:22:55.210527"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:55.212361"], ["updated_at", "2023-02-17 19:22:55.212361"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:55.213746"], ["updated_at", "2023-02-17 19:22:55.213746"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:55.215429"], ["updated_at", "2023-02-17 19:22:55.215429"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:55.216828"], ["updated_at", "2023-02-17 19:22:55.216828"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:55.218477"], ["updated_at", "2023-02-17 19:22:55.218477"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:55.219856"], ["updated_at", "2023-02-17 19:22:55.219856"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:55.221478"], ["updated_at", "2023-02-17 19:22:55.221478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:55.223054"], ["updated_at", "2023-02-17 19:22:55.223054"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:55.224656"], ["updated_at", "2023-02-17 19:22:55.224656"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:55.226261"], ["updated_at", "2023-02-17 19:22:55.226261"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:55.227890"], ["updated_at", "2023-02-17 19:22:55.227890"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:55.229501"], ["updated_at", "2023-02-17 19:22:55.229501"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:55.231322"], ["updated_at", "2023-02-17 19:22:55.231322"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:55.232730"], ["updated_at", "2023-02-17 19:22:55.232730"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:55.234553"], ["updated_at", "2023-02-17 19:22:55.234553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:55.235901"], ["updated_at", "2023-02-17 19:22:55.235901"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:55.237559"], ["updated_at", "2023-02-17 19:22:55.237559"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:55.239183"], ["updated_at", "2023-02-17 19:22:55.239183"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:55.240730"], ["updated_at", "2023-02-17 19:22:55.240730"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:55.242394"], ["updated_at", "2023-02-17 19:22:55.242394"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:55.243995"], ["updated_at", "2023-02-17 19:22:55.243995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:55.245527"], ["updated_at", "2023-02-17 19:22:55.245527"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:55.247138"], ["updated_at", "2023-02-17 19:22:55.247138"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:55.248629"], ["updated_at", "2023-02-17 19:22:55.248629"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:55.250319"], ["updated_at", "2023-02-17 19:22:55.250319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:55.251709"], ["updated_at", "2023-02-17 19:22:55.251709"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:55.253372"], ["updated_at", "2023-02-17 19:22:55.253372"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:55.254834"], ["updated_at", "2023-02-17 19:22:55.254834"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:55.256546"], ["updated_at", "2023-02-17 19:22:55.256546"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:55.258087"], ["updated_at", "2023-02-17 19:22:55.258087"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:55.260167"], ["updated_at", "2023-02-17 19:22:55.260167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:55.261619"], ["updated_at", "2023-02-17 19:22:55.261619"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:55.263463"], ["updated_at", "2023-02-17 19:22:55.263463"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:55.264848"], ["updated_at", "2023-02-17 19:22:55.264848"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:55.266554"], ["updated_at", "2023-02-17 19:22:55.266554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:55.267923"], ["updated_at", "2023-02-17 19:22:55.267923"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:55.269599"], ["updated_at", "2023-02-17 19:22:55.269599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:55.271128"], ["updated_at", "2023-02-17 19:22:55.271128"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:55.272680"], ["updated_at", "2023-02-17 19:22:55.272680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:55.274208"], ["updated_at", "2023-02-17 19:22:55.274208"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:55.275838"], ["updated_at", "2023-02-17 19:22:55.275838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:55.277342"], ["updated_at", "2023-02-17 19:22:55.277342"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:55.279016"], ["updated_at", "2023-02-17 19:22:55.279016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:55.280405"], ["updated_at", "2023-02-17 19:22:55.280405"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:55.282192"], ["updated_at", "2023-02-17 19:22:55.282192"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:55.283656"], ["updated_at", "2023-02-17 19:22:55.283656"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:55.285409"], ["updated_at", "2023-02-17 19:22:55.285409"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:55.286780"], ["updated_at", "2023-02-17 19:22:55.286780"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:55.288494"], ["updated_at", "2023-02-17 19:22:55.288494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:55.289908"], ["updated_at", "2023-02-17 19:22:55.289908"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:55.291544"], ["updated_at", "2023-02-17 19:22:55.291544"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:55.293146"], ["updated_at", "2023-02-17 19:22:55.293146"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:55.294757"], ["updated_at", "2023-02-17 19:22:55.294757"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:55.296264"], ["updated_at", "2023-02-17 19:22:55.296264"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:55.297841"], ["updated_at", "2023-02-17 19:22:55.297841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:55.299243"], ["updated_at", "2023-02-17 19:22:55.299243"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:55.301066"], ["updated_at", "2023-02-17 19:22:55.301066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:55.302497"], ["updated_at", "2023-02-17 19:22:55.302497"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:55.304232"], ["updated_at", "2023-02-17 19:22:55.304232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:55.305594"], ["updated_at", "2023-02-17 19:22:55.305594"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:55.307273"], ["updated_at", "2023-02-17 19:22:55.307273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:55.308756"], ["updated_at", "2023-02-17 19:22:55.308756"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:55.310329"], ["updated_at", "2023-02-17 19:22:55.310329"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:55.311869"], ["updated_at", "2023-02-17 19:22:55.311869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:55.313525"], ["updated_at", "2023-02-17 19:22:55.313525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:55.315016"], ["updated_at", "2023-02-17 19:22:55.315016"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:55.316691"], ["updated_at", "2023-02-17 19:22:55.316691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:55.318078"], ["updated_at", "2023-02-17 19:22:55.318078"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:55.319733"], ["updated_at", "2023-02-17 19:22:55.319733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:55.321214"], ["updated_at", "2023-02-17 19:22:55.321214"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:55.322984"], ["updated_at", "2023-02-17 19:22:55.322984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:55.324468"], ["updated_at", "2023-02-17 19:22:55.324468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:55.326181"], ["updated_at", "2023-02-17 19:22:55.326181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:55.327618"], ["updated_at", "2023-02-17 19:22:55.327618"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:55.329225"], ["updated_at", "2023-02-17 19:22:55.329225"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:55.330786"], ["updated_at", "2023-02-17 19:22:55.330786"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:55.332388"], ["updated_at", "2023-02-17 19:22:55.332388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:55.333894"], ["updated_at", "2023-02-17 19:22:55.333894"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:55.335451"], ["updated_at", "2023-02-17 19:22:55.335451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:55.336842"], ["updated_at", "2023-02-17 19:22:55.336842"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:55.338602"], ["updated_at", "2023-02-17 19:22:55.338602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:55.340256"], ["updated_at", "2023-02-17 19:22:55.340256"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:55.341935"], ["updated_at", "2023-02-17 19:22:55.341935"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:55.343476"], ["updated_at", "2023-02-17 19:22:55.343476"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:55.345191"], ["updated_at", "2023-02-17 19:22:55.345191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:55.346503"], ["updated_at", "2023-02-17 19:22:55.346503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:55.347984"], ["updated_at", "2023-02-17 19:22:55.347984"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:55.349656"], ["updated_at", "2023-02-17 19:22:55.349656"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:55.351496"], ["updated_at", "2023-02-17 19:22:55.351496"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:55.352761"], ["updated_at", "2023-02-17 19:22:55.352761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:55.353957"], ["updated_at", "2023-02-17 19:22:55.353957"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:55.367335"], ["updated_at", "2023-02-17 19:22:55.367335"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:55.368853"], ["updated_at", "2023-02-17 19:22:55.368853"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:55.370075"], ["updated_at", "2023-02-17 19:22:55.370075"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.371173"], ["updated_at", "2023-02-17 19:22:55.371173"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.372255"], ["updated_at", "2023-02-17 19:22:55.372255"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.373131"], ["updated_at", "2023-02-17 19:22:55.373131"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.374019"], ["updated_at", "2023-02-17 19:22:55.374019"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.374908"], ["updated_at", "2023-02-17 19:22:55.374908"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:55.376038"], ["updated_at", "2023-02-17 19:22:55.376038"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.377222"], ["updated_at", "2023-02-17 19:22:55.377222"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.378208"], ["updated_at", "2023-02-17 19:22:55.378208"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.379324"], ["updated_at", "2023-02-17 19:22:55.379324"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.380307"], ["updated_at", "2023-02-17 19:22:55.380307"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.381181"], ["updated_at", "2023-02-17 19:22:55.381181"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.382234"], ["updated_at", "2023-02-17 19:22:55.382234"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.383481"], ["updated_at", "2023-02-17 19:22:55.383481"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.384473"], ["updated_at", "2023-02-17 19:22:55.384473"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.385312"], ["updated_at", "2023-02-17 19:22:55.385312"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.386266"], ["updated_at", "2023-02-17 19:22:55.386266"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.387266"], ["updated_at", "2023-02-17 19:22:55.387266"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.388231"], ["updated_at", "2023-02-17 19:22:55.388231"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:55.401522"], ["updated_at", "2023-02-17 19:22:55.401522"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:55.402934"], ["updated_at", "2023-02-17 19:22:55.402934"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:55.404075"], ["updated_at", "2023-02-17 19:22:55.404075"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:55.405294"], ["updated_at", "2023-02-17 19:22:55.405294"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:55.406188"], ["updated_at", "2023-02-17 19:22:55.406188"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:55.406999"], ["updated_at", "2023-02-17 19:22:55.406999"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:55.407823"], ["updated_at", "2023-02-17 19:22:55.407823"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:55.408678"], ["updated_at", "2023-02-17 19:22:55.408678"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:55.409663"], ["updated_at", "2023-02-17 19:22:55.409663"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.410755"], ["updated_at", "2023-02-17 19:22:55.410755"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.411792"], ["updated_at", "2023-02-17 19:22:55.411792"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.413118"], ["updated_at", "2023-02-17 19:22:55.413118"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.414265"], ["updated_at", "2023-02-17 19:22:55.414265"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.415357"], ["updated_at", "2023-02-17 19:22:55.415357"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.416384"], ["updated_at", "2023-02-17 19:22:55.416384"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.417340"], ["updated_at", "2023-02-17 19:22:55.417340"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.418184"], ["updated_at", "2023-02-17 19:22:55.418184"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.419025"], ["updated_at", "2023-02-17 19:22:55.419025"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.420117"], ["updated_at", "2023-02-17 19:22:55.420117"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.421153"], ["updated_at", "2023-02-17 19:22:55.421153"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.422151"], ["updated_at", "2023-02-17 19:22:55.422151"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.441406"], ["updated_at", "2023-02-17 19:22:55.441406"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.442742"], ["updated_at", "2023-02-17 19:22:55.442742"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.443816"], ["updated_at", "2023-02-17 19:22:55.443816"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.444652"], ["updated_at", "2023-02-17 19:22:55.444652"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.445651"], ["updated_at", "2023-02-17 19:22:55.445651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.446821"], ["updated_at", "2023-02-17 19:22:55.446821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.447812"], ["updated_at", "2023-02-17 19:22:55.447812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.448687"], ["updated_at", "2023-02-17 19:22:55.448687"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.449621"], ["updated_at", "2023-02-17 19:22:55.449621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.450645"], ["updated_at", "2023-02-17 19:22:55.450645"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.451591"], ["updated_at", "2023-02-17 19:22:55.451591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.452541"], ["updated_at", "2023-02-17 19:22:55.452541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.453598"], ["updated_at", "2023-02-17 19:22:55.453598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.454590"], ["updated_at", "2023-02-17 19:22:55.454590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.455479"], ["updated_at", "2023-02-17 19:22:55.455479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.456354"], ["updated_at", "2023-02-17 19:22:55.456354"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.475639"], ["updated_at", "2023-02-17 19:22:55.475639"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.476657"], ["updated_at", "2023-02-17 19:22:55.476657"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.477482"], ["updated_at", "2023-02-17 19:22:55.477482"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.478631"], ["updated_at", "2023-02-17 19:22:55.478631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.479713"], ["updated_at", "2023-02-17 19:22:55.479713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.480580"], ["updated_at", "2023-02-17 19:22:55.480580"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.481433"], ["updated_at", "2023-02-17 19:22:55.481433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.482304"], ["updated_at", "2023-02-17 19:22:55.482304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.483244"], ["updated_at", "2023-02-17 19:22:55.483244"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.484080"], ["updated_at", "2023-02-17 19:22:55.484080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.484812"], ["updated_at", "2023-02-17 19:22:55.484812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.485558"], ["updated_at", "2023-02-17 19:22:55.485558"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.486751"], ["updated_at", "2023-02-17 19:22:55.486751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.487731"], ["updated_at", "2023-02-17 19:22:55.487731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.488492"], ["updated_at", "2023-02-17 19:22:55.488492"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.489299"], ["updated_at", "2023-02-17 19:22:55.489299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.513317"], ["updated_at", "2023-02-17 19:22:55.513317"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.514311"], ["updated_at", "2023-02-17 19:22:55.514311"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.515113"], ["updated_at", "2023-02-17 19:22:55.515113"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.515842"], ["updated_at", "2023-02-17 19:22:55.515842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.516877"], ["updated_at", "2023-02-17 19:22:55.516877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.517658"], ["updated_at", "2023-02-17 19:22:55.517658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.518426"], ["updated_at", "2023-02-17 19:22:55.518426"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.519294"], ["updated_at", "2023-02-17 19:22:55.519294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.520476"], ["updated_at", "2023-02-17 19:22:55.520476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.521313"], ["updated_at", "2023-02-17 19:22:55.521313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.522089"], ["updated_at", "2023-02-17 19:22:55.522089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.522849"], ["updated_at", "2023-02-17 19:22:55.522849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.523663"], ["updated_at", "2023-02-17 19:22:55.523663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.524587"], ["updated_at", "2023-02-17 19:22:55.524587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.525361"], ["updated_at", "2023-02-17 19:22:55.525361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.526151"], ["updated_at", "2023-02-17 19:22:55.526151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.543601"], ["updated_at", "2023-02-17 19:22:55.543601"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.544777"], ["updated_at", "2023-02-17 19:22:55.544777"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.545853"], ["updated_at", "2023-02-17 19:22:55.545853"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.546686"], ["updated_at", "2023-02-17 19:22:55.546686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.547468"], ["updated_at", "2023-02-17 19:22:55.547468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.548384"], ["updated_at", "2023-02-17 19:22:55.548384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.549261"], ["updated_at", "2023-02-17 19:22:55.549261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.550034"], ["updated_at", "2023-02-17 19:22:55.550034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.550770"], ["updated_at", "2023-02-17 19:22:55.550770"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.551509"], ["updated_at", "2023-02-17 19:22:55.551509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.552403"], ["updated_at", "2023-02-17 19:22:55.552403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.553490"], ["updated_at", "2023-02-17 19:22:55.553490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.554382"], ["updated_at", "2023-02-17 19:22:55.554382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.555124"], ["updated_at", "2023-02-17 19:22:55.555124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.555816"], ["updated_at", "2023-02-17 19:22:55.555816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:55.556672"], ["updated_at", "2023-02-17 19:22:55.556672"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.574592"], ["updated_at", "2023-02-17 19:22:55.574592"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.575716"], ["updated_at", "2023-02-17 19:22:55.575716"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.576483"], ["updated_at", "2023-02-17 19:22:55.576483"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.577217"], ["updated_at", "2023-02-17 19:22:55.577217"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.578047"], ["updated_at", "2023-02-17 19:22:55.578047"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.579146"], ["updated_at", "2023-02-17 19:22:55.579146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.580063"], ["updated_at", "2023-02-17 19:22:55.580063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.580830"], ["updated_at", "2023-02-17 19:22:55.580830"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.581652"], ["updated_at", "2023-02-17 19:22:55.581652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.582537"], ["updated_at", "2023-02-17 19:22:55.582537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.583388"], ["updated_at", "2023-02-17 19:22:55.583388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.584119"], ["updated_at", "2023-02-17 19:22:55.584119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.584793"], ["updated_at", "2023-02-17 19:22:55.584793"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.585532"], ["updated_at", "2023-02-17 19:22:55.585532"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.586647"], ["updated_at", "2023-02-17 19:22:55.586647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:55.587598"], ["updated_at", "2023-02-17 19:22:55.587598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.605159"], ["updated_at", "2023-02-17 19:22:55.605159"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.606161"], ["updated_at", "2023-02-17 19:22:55.606161"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.607101"], ["updated_at", "2023-02-17 19:22:55.607101"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.607888"], ["updated_at", "2023-02-17 19:22:55.607888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.608716"], ["updated_at", "2023-02-17 19:22:55.608716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.609535"], ["updated_at", "2023-02-17 19:22:55.609535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.610329"], ["updated_at", "2023-02-17 19:22:55.610329"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.611206"], ["updated_at", "2023-02-17 19:22:55.611206"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.612144"], ["updated_at", "2023-02-17 19:22:55.612144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.613033"], ["updated_at", "2023-02-17 19:22:55.613033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.613781"], ["updated_at", "2023-02-17 19:22:55.613781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.614688"], ["updated_at", "2023-02-17 19:22:55.614688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.615440"], ["updated_at", "2023-02-17 19:22:55.615440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.616275"], ["updated_at", "2023-02-17 19:22:55.616275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.617063"], ["updated_at", "2023-02-17 19:22:55.617063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:55.617776"], ["updated_at", "2023-02-17 19:22:55.617776"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:22:55 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:55.636543"], ["updated_at", "2023-02-17 19:22:55.636543"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:55.638321"], ["updated_at", "2023-02-17 19:22:55.638321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:55.641454"], ["updated_at", "2023-02-17 19:22:55.641454"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:55.642942"], ["updated_at", "2023-02-17 19:22:55.642942"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:55.646346"], ["updated_at", "2023-02-17 19:22:55.646346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:55.647551"], ["updated_at", "2023-02-17 19:22:55.647551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:55.649788"], ["updated_at", "2023-02-17 19:22:55.649788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:55.651261"], ["updated_at", "2023-02-17 19:22:55.651261"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:55.653109"], ["updated_at", "2023-02-17 19:22:55.653109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:55.654689"], ["updated_at", "2023-02-17 19:22:55.654689"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:55.656224"], ["updated_at", "2023-02-17 19:22:55.656224"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:55.657550"], ["updated_at", "2023-02-17 19:22:55.657550"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:55.659004"], ["updated_at", "2023-02-17 19:22:55.659004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:55.660463"], ["updated_at", "2023-02-17 19:22:55.660463"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:55.662085"], ["updated_at", "2023-02-17 19:22:55.662085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:55.663454"], ["updated_at", "2023-02-17 19:22:55.663454"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:55.664898"], ["updated_at", "2023-02-17 19:22:55.664898"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:55.666673"], ["updated_at", "2023-02-17 19:22:55.666673"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:55.668182"], ["updated_at", "2023-02-17 19:22:55.668182"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:55.669556"], ["updated_at", "2023-02-17 19:22:55.669556"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:55.671120"], ["updated_at", "2023-02-17 19:22:55.671120"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:55.672344"], ["updated_at", "2023-02-17 19:22:55.672344"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:55.673879"], ["updated_at", "2023-02-17 19:22:55.673879"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:55.675213"], ["updated_at", "2023-02-17 19:22:55.675213"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:55.676771"], ["updated_at", "2023-02-17 19:22:55.676771"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:55.678163"], ["updated_at", "2023-02-17 19:22:55.678163"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:55.679676"], ["updated_at", "2023-02-17 19:22:55.679676"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:55.681069"], ["updated_at", "2023-02-17 19:22:55.681069"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:55.682608"], ["updated_at", "2023-02-17 19:22:55.682608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:55.683856"], ["updated_at", "2023-02-17 19:22:55.683856"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:55.685509"], ["updated_at", "2023-02-17 19:22:55.685509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:55.686804"], ["updated_at", "2023-02-17 19:22:55.686804"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:55.688377"], ["updated_at", "2023-02-17 19:22:55.688377"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:55.689726"], ["updated_at", "2023-02-17 19:22:55.689726"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:55.691207"], ["updated_at", "2023-02-17 19:22:55.691207"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:55.692554"], ["updated_at", "2023-02-17 19:22:55.692554"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:55.694162"], ["updated_at", "2023-02-17 19:22:55.694162"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:55.695602"], ["updated_at", "2023-02-17 19:22:55.695602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:55.697160"], ["updated_at", "2023-02-17 19:22:55.697160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:55.698383"], ["updated_at", "2023-02-17 19:22:55.698383"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:55.699987"], ["updated_at", "2023-02-17 19:22:55.699987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:55.701283"], ["updated_at", "2023-02-17 19:22:55.701283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:55.702742"], ["updated_at", "2023-02-17 19:22:55.702742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:55.704292"], ["updated_at", "2023-02-17 19:22:55.704292"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:55.705733"], ["updated_at", "2023-02-17 19:22:55.705733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:55.707058"], ["updated_at", "2023-02-17 19:22:55.707058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:55.708594"], ["updated_at", "2023-02-17 19:22:55.708594"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:55.710007"], ["updated_at", "2023-02-17 19:22:55.710007"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:55.711718"], ["updated_at", "2023-02-17 19:22:55.711718"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:55.713030"], ["updated_at", "2023-02-17 19:22:55.713030"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:55.714678"], ["updated_at", "2023-02-17 19:22:55.714678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:55.716050"], ["updated_at", "2023-02-17 19:22:55.716050"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:55.717589"], ["updated_at", "2023-02-17 19:22:55.717589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:55.719190"], ["updated_at", "2023-02-17 19:22:55.719190"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:55.720769"], ["updated_at", "2023-02-17 19:22:55.720769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:55.722299"], ["updated_at", "2023-02-17 19:22:55.722299"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:55.724002"], ["updated_at", "2023-02-17 19:22:55.724002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:55.725420"], ["updated_at", "2023-02-17 19:22:55.725420"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:55.727301"], ["updated_at", "2023-02-17 19:22:55.727301"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:55.728755"], ["updated_at", "2023-02-17 19:22:55.728755"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:55.730552"], ["updated_at", "2023-02-17 19:22:55.730552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:55.732071"], ["updated_at", "2023-02-17 19:22:55.732071"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:55.733900"], ["updated_at", "2023-02-17 19:22:55.733900"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:55.735433"], ["updated_at", "2023-02-17 19:22:55.735433"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:55.737278"], ["updated_at", "2023-02-17 19:22:55.737278"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:55.739153"], ["updated_at", "2023-02-17 19:22:55.739153"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:55.741380"], ["updated_at", "2023-02-17 19:22:55.741380"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:55.743641"], ["updated_at", "2023-02-17 19:22:55.743641"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:55.745700"], ["updated_at", "2023-02-17 19:22:55.745700"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:55.747753"], ["updated_at", "2023-02-17 19:22:55.747753"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:55.749912"], ["updated_at", "2023-02-17 19:22:55.749912"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:55.751965"], ["updated_at", "2023-02-17 19:22:55.751965"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:55.754008"], ["updated_at", "2023-02-17 19:22:55.754008"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:55.755814"], ["updated_at", "2023-02-17 19:22:55.755814"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:55.757633"], ["updated_at", "2023-02-17 19:22:55.757633"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:55.759497"], ["updated_at", "2023-02-17 19:22:55.759497"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:55.761396"], ["updated_at", "2023-02-17 19:22:55.761396"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:55.763301"], ["updated_at", "2023-02-17 19:22:55.763301"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:55.765143"], ["updated_at", "2023-02-17 19:22:55.765143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:55.767339"], ["updated_at", "2023-02-17 19:22:55.767339"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:55.769489"], ["updated_at", "2023-02-17 19:22:55.769489"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:55.771370"], ["updated_at", "2023-02-17 19:22:55.771370"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:55.773229"], ["updated_at", "2023-02-17 19:22:55.773229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:55.775005"], ["updated_at", "2023-02-17 19:22:55.775005"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:55.776867"], ["updated_at", "2023-02-17 19:22:55.776867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:55.778574"], ["updated_at", "2023-02-17 19:22:55.778574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:55.780621"], ["updated_at", "2023-02-17 19:22:55.780621"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:55.782315"], ["updated_at", "2023-02-17 19:22:55.782315"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:55.784310"], ["updated_at", "2023-02-17 19:22:55.784310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:55.785960"], ["updated_at", "2023-02-17 19:22:55.785960"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:55.787999"], ["updated_at", "2023-02-17 19:22:55.787999"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:55.789652"], ["updated_at", "2023-02-17 19:22:55.789652"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:55.791643"], ["updated_at", "2023-02-17 19:22:55.791643"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:55.793297"], ["updated_at", "2023-02-17 19:22:55.793297"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:55.795518"], ["updated_at", "2023-02-17 19:22:55.795518"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:55.797061"], ["updated_at", "2023-02-17 19:22:55.797061"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:55.798798"], ["updated_at", "2023-02-17 19:22:55.798798"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:55.800745"], ["updated_at", "2023-02-17 19:22:55.800745"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.5ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:55.802846"], ["updated_at", "2023-02-17 19:22:55.802846"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:55.804947"], ["updated_at", "2023-02-17 19:22:55.804947"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:55.806471"], ["updated_at", "2023-02-17 19:22:55.806471"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.0ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:55.819619"], ["updated_at", "2023-02-17 19:22:55.819619"], ["role_id", 2]]
SurveyQuestion Create (1.4ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:55.822029"], ["updated_at", "2023-02-17 19:22:55.822029"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:55.824541"], ["updated_at", "2023-02-17 19:22:55.824541"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.825603"], ["updated_at", "2023-02-17 19:22:55.825603"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.826505"], ["updated_at", "2023-02-17 19:22:55.826505"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.827275"], ["updated_at", "2023-02-17 19:22:55.827275"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.828250"], ["updated_at", "2023-02-17 19:22:55.828250"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.829065"], ["updated_at", "2023-02-17 19:22:55.829065"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:55.829894"], ["updated_at", "2023-02-17 19:22:55.829894"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.830835"], ["updated_at", "2023-02-17 19:22:55.830835"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.831975"], ["updated_at", "2023-02-17 19:22:55.831975"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.832990"], ["updated_at", "2023-02-17 19:22:55.832990"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.834361"], ["updated_at", "2023-02-17 19:22:55.834361"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.835593"], ["updated_at", "2023-02-17 19:22:55.835593"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.836716"], ["updated_at", "2023-02-17 19:22:55.836716"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.837856"], ["updated_at", "2023-02-17 19:22:55.837856"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.838994"], ["updated_at", "2023-02-17 19:22:55.838994"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.840301"], ["updated_at", "2023-02-17 19:22:55.840301"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.841614"], ["updated_at", "2023-02-17 19:22:55.841614"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.842768"], ["updated_at", "2023-02-17 19:22:55.842768"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.843957"], ["updated_at", "2023-02-17 19:22:55.843957"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:55.859201"], ["updated_at", "2023-02-17 19:22:55.859201"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:55.860938"], ["updated_at", "2023-02-17 19:22:55.860938"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:55.862912"], ["updated_at", "2023-02-17 19:22:55.862912"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:55.864372"], ["updated_at", "2023-02-17 19:22:55.864372"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:55.866087"], ["updated_at", "2023-02-17 19:22:55.866087"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:55.867404"], ["updated_at", "2023-02-17 19:22:55.867404"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:55.868580"], ["updated_at", "2023-02-17 19:22:55.868580"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:55.869774"], ["updated_at", "2023-02-17 19:22:55.869774"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:55.871217"], ["updated_at", "2023-02-17 19:22:55.871217"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.872818"], ["updated_at", "2023-02-17 19:22:55.872818"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.874315"], ["updated_at", "2023-02-17 19:22:55.874315"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.875765"], ["updated_at", "2023-02-17 19:22:55.875765"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.876942"], ["updated_at", "2023-02-17 19:22:55.876942"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.878577"], ["updated_at", "2023-02-17 19:22:55.878577"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.879842"], ["updated_at", "2023-02-17 19:22:55.879842"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.881182"], ["updated_at", "2023-02-17 19:22:55.881182"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.882612"], ["updated_at", "2023-02-17 19:22:55.882612"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.883622"], ["updated_at", "2023-02-17 19:22:55.883622"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.884472"], ["updated_at", "2023-02-17 19:22:55.884472"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.885490"], ["updated_at", "2023-02-17 19:22:55.885490"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:55.886588"], ["updated_at", "2023-02-17 19:22:55.886588"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.8ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.907734"], ["updated_at", "2023-02-17 19:22:55.907734"]]
QuestionAnswer Create (1.4ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.910809"], ["updated_at", "2023-02-17 19:22:55.910809"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.913494"], ["updated_at", "2023-02-17 19:22:55.913494"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.914576"], ["updated_at", "2023-02-17 19:22:55.914576"]]
LikertScaleAnswer Create (1.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.915576"], ["updated_at", "2023-02-17 19:22:55.915576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.917788"], ["updated_at", "2023-02-17 19:22:55.917788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.918879"], ["updated_at", "2023-02-17 19:22:55.918879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.919921"], ["updated_at", "2023-02-17 19:22:55.919921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.921140"], ["updated_at", "2023-02-17 19:22:55.921140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.922336"], ["updated_at", "2023-02-17 19:22:55.922336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.923256"], ["updated_at", "2023-02-17 19:22:55.923256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.924152"], ["updated_at", "2023-02-17 19:22:55.924152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.925111"], ["updated_at", "2023-02-17 19:22:55.925111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.926103"], ["updated_at", "2023-02-17 19:22:55.926103"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.927417"], ["updated_at", "2023-02-17 19:22:55.927417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:55.928769"], ["updated_at", "2023-02-17 19:22:55.928769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.950755"], ["updated_at", "2023-02-17 19:22:55.950755"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.952216"], ["updated_at", "2023-02-17 19:22:55.952216"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.953356"], ["updated_at", "2023-02-17 19:22:55.953356"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.954331"], ["updated_at", "2023-02-17 19:22:55.954331"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.955312"], ["updated_at", "2023-02-17 19:22:55.955312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.956123"], ["updated_at", "2023-02-17 19:22:55.956123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.956921"], ["updated_at", "2023-02-17 19:22:55.956921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.957783"], ["updated_at", "2023-02-17 19:22:55.957783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.958716"], ["updated_at", "2023-02-17 19:22:55.958716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.959784"], ["updated_at", "2023-02-17 19:22:55.959784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.960851"], ["updated_at", "2023-02-17 19:22:55.960851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.962020"], ["updated_at", "2023-02-17 19:22:55.962020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.962986"], ["updated_at", "2023-02-17 19:22:55.962986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.963869"], ["updated_at", "2023-02-17 19:22:55.963869"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.964719"], ["updated_at", "2023-02-17 19:22:55.964719"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:55.965609"], ["updated_at", "2023-02-17 19:22:55.965609"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:55.985299"], ["updated_at", "2023-02-17 19:22:55.985299"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:55.986583"], ["updated_at", "2023-02-17 19:22:55.986583"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:55.987507"], ["updated_at", "2023-02-17 19:22:55.987507"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:55.988312"], ["updated_at", "2023-02-17 19:22:55.988312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.989191"], ["updated_at", "2023-02-17 19:22:55.989191"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.990000"], ["updated_at", "2023-02-17 19:22:55.990000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.990804"], ["updated_at", "2023-02-17 19:22:55.990804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.991685"], ["updated_at", "2023-02-17 19:22:55.991685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.992443"], ["updated_at", "2023-02-17 19:22:55.992443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.993245"], ["updated_at", "2023-02-17 19:22:55.993245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.994154"], ["updated_at", "2023-02-17 19:22:55.994154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.994945"], ["updated_at", "2023-02-17 19:22:55.994945"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.996115"], ["updated_at", "2023-02-17 19:22:55.996115"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.997168"], ["updated_at", "2023-02-17 19:22:55.997168"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.997965"], ["updated_at", "2023-02-17 19:22:55.997965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:55.998695"], ["updated_at", "2023-02-17 19:22:55.998695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.015669"], ["updated_at", "2023-02-17 19:22:56.015669"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.016672"], ["updated_at", "2023-02-17 19:22:56.016672"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.017446"], ["updated_at", "2023-02-17 19:22:56.017446"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.018152"], ["updated_at", "2023-02-17 19:22:56.018152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.019061"], ["updated_at", "2023-02-17 19:22:56.019061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.019936"], ["updated_at", "2023-02-17 19:22:56.019936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.020685"], ["updated_at", "2023-02-17 19:22:56.020685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.021587"], ["updated_at", "2023-02-17 19:22:56.021587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.022395"], ["updated_at", "2023-02-17 19:22:56.022395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.023128"], ["updated_at", "2023-02-17 19:22:56.023128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.023826"], ["updated_at", "2023-02-17 19:22:56.023826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.024534"], ["updated_at", "2023-02-17 19:22:56.024534"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.025244"], ["updated_at", "2023-02-17 19:22:56.025244"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.026018"], ["updated_at", "2023-02-17 19:22:56.026018"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.026934"], ["updated_at", "2023-02-17 19:22:56.026934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.027865"], ["updated_at", "2023-02-17 19:22:56.027865"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.045564"], ["updated_at", "2023-02-17 19:22:56.045564"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.046680"], ["updated_at", "2023-02-17 19:22:56.046680"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.047973"], ["updated_at", "2023-02-17 19:22:56.047973"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.048779"], ["updated_at", "2023-02-17 19:22:56.048779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.049621"], ["updated_at", "2023-02-17 19:22:56.049621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.050544"], ["updated_at", "2023-02-17 19:22:56.050544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.051440"], ["updated_at", "2023-02-17 19:22:56.051440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.052537"], ["updated_at", "2023-02-17 19:22:56.052537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.053434"], ["updated_at", "2023-02-17 19:22:56.053434"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.054166"], ["updated_at", "2023-02-17 19:22:56.054166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.055065"], ["updated_at", "2023-02-17 19:22:56.055065"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.055906"], ["updated_at", "2023-02-17 19:22:56.055906"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.056701"], ["updated_at", "2023-02-17 19:22:56.056701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.057612"], ["updated_at", "2023-02-17 19:22:56.057612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.058428"], ["updated_at", "2023-02-17 19:22:56.058428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.059388"], ["updated_at", "2023-02-17 19:22:56.059388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.078925"], ["updated_at", "2023-02-17 19:22:56.078925"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.079969"], ["updated_at", "2023-02-17 19:22:56.079969"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.080864"], ["updated_at", "2023-02-17 19:22:56.080864"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.081836"], ["updated_at", "2023-02-17 19:22:56.081836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.082757"], ["updated_at", "2023-02-17 19:22:56.082757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.083654"], ["updated_at", "2023-02-17 19:22:56.083654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.084425"], ["updated_at", "2023-02-17 19:22:56.084425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.085377"], ["updated_at", "2023-02-17 19:22:56.085377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.086218"], ["updated_at", "2023-02-17 19:22:56.086218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.086989"], ["updated_at", "2023-02-17 19:22:56.086989"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.087828"], ["updated_at", "2023-02-17 19:22:56.087828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.088689"], ["updated_at", "2023-02-17 19:22:56.088689"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.089490"], ["updated_at", "2023-02-17 19:22:56.089490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.090369"], ["updated_at", "2023-02-17 19:22:56.090369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.091119"], ["updated_at", "2023-02-17 19:22:56.091119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.092210"], ["updated_at", "2023-02-17 19:22:56.092210"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:22:56 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:56.101787"], ["updated_at", "2023-02-17 19:22:56.101787"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:56.103687"], ["updated_at", "2023-02-17 19:22:56.103687"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:56.106779"], ["updated_at", "2023-02-17 19:22:56.106779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:56.108058"], ["updated_at", "2023-02-17 19:22:56.108058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:56.111251"], ["updated_at", "2023-02-17 19:22:56.111251"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:56.112633"], ["updated_at", "2023-02-17 19:22:56.112633"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:56.114779"], ["updated_at", "2023-02-17 19:22:56.114779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:56.116184"], ["updated_at", "2023-02-17 19:22:56.116184"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:56.117846"], ["updated_at", "2023-02-17 19:22:56.117846"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:56.119375"], ["updated_at", "2023-02-17 19:22:56.119375"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:56.120888"], ["updated_at", "2023-02-17 19:22:56.120888"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:56.122535"], ["updated_at", "2023-02-17 19:22:56.122535"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:56.124097"], ["updated_at", "2023-02-17 19:22:56.124097"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:56.125414"], ["updated_at", "2023-02-17 19:22:56.125414"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:56.126930"], ["updated_at", "2023-02-17 19:22:56.126930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:56.128321"], ["updated_at", "2023-02-17 19:22:56.128321"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:56.129832"], ["updated_at", "2023-02-17 19:22:56.129832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:56.131056"], ["updated_at", "2023-02-17 19:22:56.131056"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:56.132912"], ["updated_at", "2023-02-17 19:22:56.132912"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:56.134237"], ["updated_at", "2023-02-17 19:22:56.134237"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:56.135818"], ["updated_at", "2023-02-17 19:22:56.135818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:56.137082"], ["updated_at", "2023-02-17 19:22:56.137082"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:56.138487"], ["updated_at", "2023-02-17 19:22:56.138487"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:56.139715"], ["updated_at", "2023-02-17 19:22:56.139715"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:56.141171"], ["updated_at", "2023-02-17 19:22:56.141171"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:56.142572"], ["updated_at", "2023-02-17 19:22:56.142572"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:56.144506"], ["updated_at", "2023-02-17 19:22:56.144506"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:56.145841"], ["updated_at", "2023-02-17 19:22:56.145841"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:56.147328"], ["updated_at", "2023-02-17 19:22:56.147328"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:56.148950"], ["updated_at", "2023-02-17 19:22:56.148950"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:56.150363"], ["updated_at", "2023-02-17 19:22:56.150363"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:56.151626"], ["updated_at", "2023-02-17 19:22:56.151626"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:56.153535"], ["updated_at", "2023-02-17 19:22:56.153535"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:56.154837"], ["updated_at", "2023-02-17 19:22:56.154837"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:56.156355"], ["updated_at", "2023-02-17 19:22:56.156355"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:56.157568"], ["updated_at", "2023-02-17 19:22:56.157568"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:56.159059"], ["updated_at", "2023-02-17 19:22:56.159059"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:56.160756"], ["updated_at", "2023-02-17 19:22:56.160756"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:56.162616"], ["updated_at", "2023-02-17 19:22:56.162616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:56.164038"], ["updated_at", "2023-02-17 19:22:56.164038"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:56.165511"], ["updated_at", "2023-02-17 19:22:56.165511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:56.166704"], ["updated_at", "2023-02-17 19:22:56.166704"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:56.168072"], ["updated_at", "2023-02-17 19:22:56.168072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:56.169459"], ["updated_at", "2023-02-17 19:22:56.169459"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:56.170982"], ["updated_at", "2023-02-17 19:22:56.170982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:56.172363"], ["updated_at", "2023-02-17 19:22:56.172363"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:56.173830"], ["updated_at", "2023-02-17 19:22:56.173830"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:56.175053"], ["updated_at", "2023-02-17 19:22:56.175053"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:56.176505"], ["updated_at", "2023-02-17 19:22:56.176505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:56.178098"], ["updated_at", "2023-02-17 19:22:56.178098"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:56.179552"], ["updated_at", "2023-02-17 19:22:56.179552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:56.180745"], ["updated_at", "2023-02-17 19:22:56.180745"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:56.182458"], ["updated_at", "2023-02-17 19:22:56.182458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:56.183824"], ["updated_at", "2023-02-17 19:22:56.183824"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:56.185408"], ["updated_at", "2023-02-17 19:22:56.185408"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:56.186766"], ["updated_at", "2023-02-17 19:22:56.186766"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:56.188132"], ["updated_at", "2023-02-17 19:22:56.188132"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:56.189329"], ["updated_at", "2023-02-17 19:22:56.189329"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:56.191178"], ["updated_at", "2023-02-17 19:22:56.191178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:56.192564"], ["updated_at", "2023-02-17 19:22:56.192564"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:56.194299"], ["updated_at", "2023-02-17 19:22:56.194299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:56.195651"], ["updated_at", "2023-02-17 19:22:56.195651"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:56.197037"], ["updated_at", "2023-02-17 19:22:56.197037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:56.198249"], ["updated_at", "2023-02-17 19:22:56.198249"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:56.199811"], ["updated_at", "2023-02-17 19:22:56.199811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:56.201157"], ["updated_at", "2023-02-17 19:22:56.201157"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:56.202769"], ["updated_at", "2023-02-17 19:22:56.202769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:56.204055"], ["updated_at", "2023-02-17 19:22:56.204055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:56.205451"], ["updated_at", "2023-02-17 19:22:56.205451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:56.206668"], ["updated_at", "2023-02-17 19:22:56.206668"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:56.208014"], ["updated_at", "2023-02-17 19:22:56.208014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:56.209259"], ["updated_at", "2023-02-17 19:22:56.209259"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:56.211222"], ["updated_at", "2023-02-17 19:22:56.211222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:56.212659"], ["updated_at", "2023-02-17 19:22:56.212659"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:56.214073"], ["updated_at", "2023-02-17 19:22:56.214073"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:56.215314"], ["updated_at", "2023-02-17 19:22:56.215314"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:56.216747"], ["updated_at", "2023-02-17 19:22:56.216747"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:56.217995"], ["updated_at", "2023-02-17 19:22:56.217995"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:56.220362"], ["updated_at", "2023-02-17 19:22:56.220362"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:56.222061"], ["updated_at", "2023-02-17 19:22:56.222061"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:56.223905"], ["updated_at", "2023-02-17 19:22:56.223905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:56.225272"], ["updated_at", "2023-02-17 19:22:56.225272"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:56.227203"], ["updated_at", "2023-02-17 19:22:56.227203"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:56.228642"], ["updated_at", "2023-02-17 19:22:56.228642"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:56.230239"], ["updated_at", "2023-02-17 19:22:56.230239"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:56.231655"], ["updated_at", "2023-02-17 19:22:56.231655"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:56.233095"], ["updated_at", "2023-02-17 19:22:56.233095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:56.234298"], ["updated_at", "2023-02-17 19:22:56.234298"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:56.236758"], ["updated_at", "2023-02-17 19:22:56.236758"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:56.238138"], ["updated_at", "2023-02-17 19:22:56.238138"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:56.239745"], ["updated_at", "2023-02-17 19:22:56.239745"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:56.241271"], ["updated_at", "2023-02-17 19:22:56.241271"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:56.243012"], ["updated_at", "2023-02-17 19:22:56.243012"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:56.244894"], ["updated_at", "2023-02-17 19:22:56.244894"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:56.246578"], ["updated_at", "2023-02-17 19:22:56.246578"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:56.247730"], ["updated_at", "2023-02-17 19:22:56.247730"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:56.249043"], ["updated_at", "2023-02-17 19:22:56.249043"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.5ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:56.250872"], ["updated_at", "2023-02-17 19:22:56.250872"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:56.253531"], ["updated_at", "2023-02-17 19:22:56.253531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:56.254833"], ["updated_at", "2023-02-17 19:22:56.254833"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:56.255850"], ["updated_at", "2023-02-17 19:22:56.255850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.7ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:56.267993"], ["updated_at", "2023-02-17 19:22:56.267993"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:56.270406"], ["updated_at", "2023-02-17 19:22:56.270406"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:56.271735"], ["updated_at", "2023-02-17 19:22:56.271735"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.272618"], ["updated_at", "2023-02-17 19:22:56.272618"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.273415"], ["updated_at", "2023-02-17 19:22:56.273415"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.274246"], ["updated_at", "2023-02-17 19:22:56.274246"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.275012"], ["updated_at", "2023-02-17 19:22:56.275012"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.276145"], ["updated_at", "2023-02-17 19:22:56.276145"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:56.277291"], ["updated_at", "2023-02-17 19:22:56.277291"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.278248"], ["updated_at", "2023-02-17 19:22:56.278248"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.279099"], ["updated_at", "2023-02-17 19:22:56.279099"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.280137"], ["updated_at", "2023-02-17 19:22:56.280137"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.281125"], ["updated_at", "2023-02-17 19:22:56.281125"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.282096"], ["updated_at", "2023-02-17 19:22:56.282096"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.282912"], ["updated_at", "2023-02-17 19:22:56.282912"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.283645"], ["updated_at", "2023-02-17 19:22:56.283645"]]
LikertScaleQuestion Create (0.5ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.284393"], ["updated_at", "2023-02-17 19:22:56.284393"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.285557"], ["updated_at", "2023-02-17 19:22:56.285557"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.287021"], ["updated_at", "2023-02-17 19:22:56.287021"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.287871"], ["updated_at", "2023-02-17 19:22:56.287871"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.288629"], ["updated_at", "2023-02-17 19:22:56.288629"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:56.301267"], ["updated_at", "2023-02-17 19:22:56.301267"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:56.303835"], ["updated_at", "2023-02-17 19:22:56.303835"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:56.305053"], ["updated_at", "2023-02-17 19:22:56.305053"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:56.305997"], ["updated_at", "2023-02-17 19:22:56.305997"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:56.306780"], ["updated_at", "2023-02-17 19:22:56.306780"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:56.307497"], ["updated_at", "2023-02-17 19:22:56.307497"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:56.308199"], ["updated_at", "2023-02-17 19:22:56.308199"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:56.308880"], ["updated_at", "2023-02-17 19:22:56.308880"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:56.310176"], ["updated_at", "2023-02-17 19:22:56.310176"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.311437"], ["updated_at", "2023-02-17 19:22:56.311437"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.312589"], ["updated_at", "2023-02-17 19:22:56.312589"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.313396"], ["updated_at", "2023-02-17 19:22:56.313396"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.314132"], ["updated_at", "2023-02-17 19:22:56.314132"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.314887"], ["updated_at", "2023-02-17 19:22:56.314887"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.315650"], ["updated_at", "2023-02-17 19:22:56.315650"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.316398"], ["updated_at", "2023-02-17 19:22:56.316398"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.317155"], ["updated_at", "2023-02-17 19:22:56.317155"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.317874"], ["updated_at", "2023-02-17 19:22:56.317874"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.319072"], ["updated_at", "2023-02-17 19:22:56.319072"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.320887"], ["updated_at", "2023-02-17 19:22:56.320887"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.321683"], ["updated_at", "2023-02-17 19:22:56.321683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.340500"], ["updated_at", "2023-02-17 19:22:56.340500"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.341757"], ["updated_at", "2023-02-17 19:22:56.341757"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.342716"], ["updated_at", "2023-02-17 19:22:56.342716"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.344101"], ["updated_at", "2023-02-17 19:22:56.344101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.345245"], ["updated_at", "2023-02-17 19:22:56.345245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.346138"], ["updated_at", "2023-02-17 19:22:56.346138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.346887"], ["updated_at", "2023-02-17 19:22:56.346887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.347595"], ["updated_at", "2023-02-17 19:22:56.347595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.348308"], ["updated_at", "2023-02-17 19:22:56.348308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.349219"], ["updated_at", "2023-02-17 19:22:56.349219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.350154"], ["updated_at", "2023-02-17 19:22:56.350154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.350916"], ["updated_at", "2023-02-17 19:22:56.350916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.352010"], ["updated_at", "2023-02-17 19:22:56.352010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.353400"], ["updated_at", "2023-02-17 19:22:56.353400"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.354235"], ["updated_at", "2023-02-17 19:22:56.354235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.354988"], ["updated_at", "2023-02-17 19:22:56.354988"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.373579"], ["updated_at", "2023-02-17 19:22:56.373579"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.374642"], ["updated_at", "2023-02-17 19:22:56.374642"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.375413"], ["updated_at", "2023-02-17 19:22:56.375413"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.376263"], ["updated_at", "2023-02-17 19:22:56.376263"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.377450"], ["updated_at", "2023-02-17 19:22:56.377450"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.378570"], ["updated_at", "2023-02-17 19:22:56.378570"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.380256"], ["updated_at", "2023-02-17 19:22:56.380256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.381455"], ["updated_at", "2023-02-17 19:22:56.381455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.382470"], ["updated_at", "2023-02-17 19:22:56.382470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.383242"], ["updated_at", "2023-02-17 19:22:56.383242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.383940"], ["updated_at", "2023-02-17 19:22:56.383940"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.384755"], ["updated_at", "2023-02-17 19:22:56.384755"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.386490"], ["updated_at", "2023-02-17 19:22:56.386490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.387443"], ["updated_at", "2023-02-17 19:22:56.387443"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.388436"], ["updated_at", "2023-02-17 19:22:56.388436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.389530"], ["updated_at", "2023-02-17 19:22:56.389530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.413017"], ["updated_at", "2023-02-17 19:22:56.413017"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.414256"], ["updated_at", "2023-02-17 19:22:56.414256"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.415233"], ["updated_at", "2023-02-17 19:22:56.415233"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.416096"], ["updated_at", "2023-02-17 19:22:56.416096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.417026"], ["updated_at", "2023-02-17 19:22:56.417026"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.417973"], ["updated_at", "2023-02-17 19:22:56.417973"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.419625"], ["updated_at", "2023-02-17 19:22:56.419625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.420919"], ["updated_at", "2023-02-17 19:22:56.420919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.422137"], ["updated_at", "2023-02-17 19:22:56.422137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.423481"], ["updated_at", "2023-02-17 19:22:56.423481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.424682"], ["updated_at", "2023-02-17 19:22:56.424682"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.425880"], ["updated_at", "2023-02-17 19:22:56.425880"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.427112"], ["updated_at", "2023-02-17 19:22:56.427112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.428269"], ["updated_at", "2023-02-17 19:22:56.428269"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.429483"], ["updated_at", "2023-02-17 19:22:56.429483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.430817"], ["updated_at", "2023-02-17 19:22:56.430817"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.4ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.452954"], ["updated_at", "2023-02-17 19:22:56.452954"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.454326"], ["updated_at", "2023-02-17 19:22:56.454326"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.455331"], ["updated_at", "2023-02-17 19:22:56.455331"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.456249"], ["updated_at", "2023-02-17 19:22:56.456249"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.457208"], ["updated_at", "2023-02-17 19:22:56.457208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.458183"], ["updated_at", "2023-02-17 19:22:56.458183"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.459010"], ["updated_at", "2023-02-17 19:22:56.459010"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.460239"], ["updated_at", "2023-02-17 19:22:56.460239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.461712"], ["updated_at", "2023-02-17 19:22:56.461712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.463148"], ["updated_at", "2023-02-17 19:22:56.463148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.464399"], ["updated_at", "2023-02-17 19:22:56.464399"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.465433"], ["updated_at", "2023-02-17 19:22:56.465433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.466337"], ["updated_at", "2023-02-17 19:22:56.466337"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.467192"], ["updated_at", "2023-02-17 19:22:56.467192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.468081"], ["updated_at", "2023-02-17 19:22:56.468081"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.470166"], ["updated_at", "2023-02-17 19:22:56.470166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.4ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.493946"], ["updated_at", "2023-02-17 19:22:56.493946"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.495102"], ["updated_at", "2023-02-17 19:22:56.495102"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.496139"], ["updated_at", "2023-02-17 19:22:56.496139"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.497160"], ["updated_at", "2023-02-17 19:22:56.497160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.498402"], ["updated_at", "2023-02-17 19:22:56.498402"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.499536"], ["updated_at", "2023-02-17 19:22:56.499536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.500528"], ["updated_at", "2023-02-17 19:22:56.500528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.501327"], ["updated_at", "2023-02-17 19:22:56.501327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.503126"], ["updated_at", "2023-02-17 19:22:56.503126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.504130"], ["updated_at", "2023-02-17 19:22:56.504130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.505060"], ["updated_at", "2023-02-17 19:22:56.505060"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.505839"], ["updated_at", "2023-02-17 19:22:56.505839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.506752"], ["updated_at", "2023-02-17 19:22:56.506752"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.507617"], ["updated_at", "2023-02-17 19:22:56.507617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.508422"], ["updated_at", "2023-02-17 19:22:56.508422"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.509290"], ["updated_at", "2023-02-17 19:22:56.509290"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.530678"], ["updated_at", "2023-02-17 19:22:56.530678"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.531957"], ["updated_at", "2023-02-17 19:22:56.531957"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.532817"], ["updated_at", "2023-02-17 19:22:56.532817"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.533653"], ["updated_at", "2023-02-17 19:22:56.533653"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.534593"], ["updated_at", "2023-02-17 19:22:56.534593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.536265"], ["updated_at", "2023-02-17 19:22:56.536265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.537479"], ["updated_at", "2023-02-17 19:22:56.537479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.538456"], ["updated_at", "2023-02-17 19:22:56.538456"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.539324"], ["updated_at", "2023-02-17 19:22:56.539324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.540467"], ["updated_at", "2023-02-17 19:22:56.540467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.541493"], ["updated_at", "2023-02-17 19:22:56.541493"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.542429"], ["updated_at", "2023-02-17 19:22:56.542429"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.543300"], ["updated_at", "2023-02-17 19:22:56.543300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.544204"], ["updated_at", "2023-02-17 19:22:56.544204"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.545360"], ["updated_at", "2023-02-17 19:22:56.545360"]]
LikertScaleAnswer Create (0.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.546179"], ["updated_at", "2023-02-17 19:22:56.546179"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:22:56 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.8ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:56.557260"], ["updated_at", "2023-02-17 19:22:56.557260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:56.558858"], ["updated_at", "2023-02-17 19:22:56.558858"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:56.562288"], ["updated_at", "2023-02-17 19:22:56.562288"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:56.563819"], ["updated_at", "2023-02-17 19:22:56.563819"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:56.567547"], ["updated_at", "2023-02-17 19:22:56.567547"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:56.569749"], ["updated_at", "2023-02-17 19:22:56.569749"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:56.572218"], ["updated_at", "2023-02-17 19:22:56.572218"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:56.573844"], ["updated_at", "2023-02-17 19:22:56.573844"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:56.575663"], ["updated_at", "2023-02-17 19:22:56.575663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:56.577055"], ["updated_at", "2023-02-17 19:22:56.577055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:56.578732"], ["updated_at", "2023-02-17 19:22:56.578732"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:56.580416"], ["updated_at", "2023-02-17 19:22:56.580416"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:56.582552"], ["updated_at", "2023-02-17 19:22:56.582552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:56.583969"], ["updated_at", "2023-02-17 19:22:56.583969"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:56.586483"], ["updated_at", "2023-02-17 19:22:56.586483"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:56.588022"], ["updated_at", "2023-02-17 19:22:56.588022"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:56.589628"], ["updated_at", "2023-02-17 19:22:56.589628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:56.591009"], ["updated_at", "2023-02-17 19:22:56.591009"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:56.592508"], ["updated_at", "2023-02-17 19:22:56.592508"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:56.593931"], ["updated_at", "2023-02-17 19:22:56.593931"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:56.595806"], ["updated_at", "2023-02-17 19:22:56.595806"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:56.597642"], ["updated_at", "2023-02-17 19:22:56.597642"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:56.599454"], ["updated_at", "2023-02-17 19:22:56.599454"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:56.600857"], ["updated_at", "2023-02-17 19:22:56.600857"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:56.603420"], ["updated_at", "2023-02-17 19:22:56.603420"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:56.604980"], ["updated_at", "2023-02-17 19:22:56.604980"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:56.606588"], ["updated_at", "2023-02-17 19:22:56.606588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:56.607969"], ["updated_at", "2023-02-17 19:22:56.607969"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:56.609616"], ["updated_at", "2023-02-17 19:22:56.609616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:56.611042"], ["updated_at", "2023-02-17 19:22:56.611042"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:56.612978"], ["updated_at", "2023-02-17 19:22:56.612978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:56.614663"], ["updated_at", "2023-02-17 19:22:56.614663"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:56.616485"], ["updated_at", "2023-02-17 19:22:56.616485"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:56.617907"], ["updated_at", "2023-02-17 19:22:56.617907"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:56.620599"], ["updated_at", "2023-02-17 19:22:56.620599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:56.627654"], ["updated_at", "2023-02-17 19:22:56.627654"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:56.629248"], ["updated_at", "2023-02-17 19:22:56.629248"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:56.631542"], ["updated_at", "2023-02-17 19:22:56.631542"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:56.633143"], ["updated_at", "2023-02-17 19:22:56.633143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:56.634537"], ["updated_at", "2023-02-17 19:22:56.634537"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:56.637121"], ["updated_at", "2023-02-17 19:22:56.637121"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:56.638484"], ["updated_at", "2023-02-17 19:22:56.638484"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:56.640036"], ["updated_at", "2023-02-17 19:22:56.640036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:56.641435"], ["updated_at", "2023-02-17 19:22:56.641435"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:56.642991"], ["updated_at", "2023-02-17 19:22:56.642991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:56.644276"], ["updated_at", "2023-02-17 19:22:56.644276"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.5ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:56.645971"], ["updated_at", "2023-02-17 19:22:56.645971"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:56.647954"], ["updated_at", "2023-02-17 19:22:56.647954"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:56.649799"], ["updated_at", "2023-02-17 19:22:56.649799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:56.651070"], ["updated_at", "2023-02-17 19:22:56.651070"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:56.653714"], ["updated_at", "2023-02-17 19:22:56.653714"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:56.655227"], ["updated_at", "2023-02-17 19:22:56.655227"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:56.656765"], ["updated_at", "2023-02-17 19:22:56.656765"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:56.658097"], ["updated_at", "2023-02-17 19:22:56.658097"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:56.659747"], ["updated_at", "2023-02-17 19:22:56.659747"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:56.661184"], ["updated_at", "2023-02-17 19:22:56.661184"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:56.662862"], ["updated_at", "2023-02-17 19:22:56.662862"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:56.664722"], ["updated_at", "2023-02-17 19:22:56.664722"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:56.666597"], ["updated_at", "2023-02-17 19:22:56.666597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:56.668116"], ["updated_at", "2023-02-17 19:22:56.668116"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:56.670733"], ["updated_at", "2023-02-17 19:22:56.670733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:56.672115"], ["updated_at", "2023-02-17 19:22:56.672115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:56.673757"], ["updated_at", "2023-02-17 19:22:56.673757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:56.675069"], ["updated_at", "2023-02-17 19:22:56.675069"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:56.676724"], ["updated_at", "2023-02-17 19:22:56.676724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:56.678063"], ["updated_at", "2023-02-17 19:22:56.678063"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:56.680052"], ["updated_at", "2023-02-17 19:22:56.680052"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:56.681767"], ["updated_at", "2023-02-17 19:22:56.681767"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:56.683516"], ["updated_at", "2023-02-17 19:22:56.683516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:56.685224"], ["updated_at", "2023-02-17 19:22:56.685224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:56.687399"], ["updated_at", "2023-02-17 19:22:56.687399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:56.688791"], ["updated_at", "2023-02-17 19:22:56.688791"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:56.690313"], ["updated_at", "2023-02-17 19:22:56.690313"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:56.691605"], ["updated_at", "2023-02-17 19:22:56.691605"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:56.693184"], ["updated_at", "2023-02-17 19:22:56.693184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:56.694468"], ["updated_at", "2023-02-17 19:22:56.694468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:56.696081"], ["updated_at", "2023-02-17 19:22:56.696081"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:56.697992"], ["updated_at", "2023-02-17 19:22:56.697992"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:56.699738"], ["updated_at", "2023-02-17 19:22:56.699738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:56.701155"], ["updated_at", "2023-02-17 19:22:56.701155"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:56.703641"], ["updated_at", "2023-02-17 19:22:56.703641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:56.705078"], ["updated_at", "2023-02-17 19:22:56.705078"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:56.706602"], ["updated_at", "2023-02-17 19:22:56.706602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:56.707874"], ["updated_at", "2023-02-17 19:22:56.707874"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:56.709423"], ["updated_at", "2023-02-17 19:22:56.709423"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:56.710826"], ["updated_at", "2023-02-17 19:22:56.710826"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:56.712349"], ["updated_at", "2023-02-17 19:22:56.712349"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:56.714283"], ["updated_at", "2023-02-17 19:22:56.714283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:56.715886"], ["updated_at", "2023-02-17 19:22:56.715886"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:56.717269"], ["updated_at", "2023-02-17 19:22:56.717269"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:56.719411"], ["updated_at", "2023-02-17 19:22:56.719411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:56.720775"], ["updated_at", "2023-02-17 19:22:56.720775"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:56.722343"], ["updated_at", "2023-02-17 19:22:56.722343"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:56.723710"], ["updated_at", "2023-02-17 19:22:56.723710"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:56.725270"], ["updated_at", "2023-02-17 19:22:56.725270"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:56.726435"], ["updated_at", "2023-02-17 19:22:56.726435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:56.727825"], ["updated_at", "2023-02-17 19:22:56.727825"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:56.729450"], ["updated_at", "2023-02-17 19:22:56.729450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:56.731075"], ["updated_at", "2023-02-17 19:22:56.731075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:56.732342"], ["updated_at", "2023-02-17 19:22:56.732342"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:56.733497"], ["updated_at", "2023-02-17 19:22:56.733497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:56.747288"], ["updated_at", "2023-02-17 19:22:56.747288"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:56.748705"], ["updated_at", "2023-02-17 19:22:56.748705"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:56.749916"], ["updated_at", "2023-02-17 19:22:56.749916"]]
QuestionOption Create (0.5ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.751023"], ["updated_at", "2023-02-17 19:22:56.751023"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.752441"], ["updated_at", "2023-02-17 19:22:56.752441"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.754066"], ["updated_at", "2023-02-17 19:22:56.754066"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.755403"], ["updated_at", "2023-02-17 19:22:56.755403"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.756360"], ["updated_at", "2023-02-17 19:22:56.756360"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:56.757317"], ["updated_at", "2023-02-17 19:22:56.757317"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.758397"], ["updated_at", "2023-02-17 19:22:56.758397"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.759422"], ["updated_at", "2023-02-17 19:22:56.759422"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.760303"], ["updated_at", "2023-02-17 19:22:56.760303"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.761324"], ["updated_at", "2023-02-17 19:22:56.761324"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.762420"], ["updated_at", "2023-02-17 19:22:56.762420"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.763409"], ["updated_at", "2023-02-17 19:22:56.763409"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.764357"], ["updated_at", "2023-02-17 19:22:56.764357"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.765155"], ["updated_at", "2023-02-17 19:22:56.765155"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.766057"], ["updated_at", "2023-02-17 19:22:56.766057"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.766989"], ["updated_at", "2023-02-17 19:22:56.766989"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.767923"], ["updated_at", "2023-02-17 19:22:56.767923"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.769255"], ["updated_at", "2023-02-17 19:22:56.769255"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:56.782691"], ["updated_at", "2023-02-17 19:22:56.782691"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:56.784047"], ["updated_at", "2023-02-17 19:22:56.784047"]]
SurveyQuestion Create (0.4ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:56.785423"], ["updated_at", "2023-02-17 19:22:56.785423"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:56.787113"], ["updated_at", "2023-02-17 19:22:56.787113"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:56.788402"], ["updated_at", "2023-02-17 19:22:56.788402"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:56.789404"], ["updated_at", "2023-02-17 19:22:56.789404"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:56.790142"], ["updated_at", "2023-02-17 19:22:56.790142"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:56.790922"], ["updated_at", "2023-02-17 19:22:56.790922"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:56.791782"], ["updated_at", "2023-02-17 19:22:56.791782"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.792738"], ["updated_at", "2023-02-17 19:22:56.792738"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.793674"], ["updated_at", "2023-02-17 19:22:56.793674"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.794626"], ["updated_at", "2023-02-17 19:22:56.794626"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.795496"], ["updated_at", "2023-02-17 19:22:56.795496"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.796267"], ["updated_at", "2023-02-17 19:22:56.796267"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.797100"], ["updated_at", "2023-02-17 19:22:56.797100"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.797884"], ["updated_at", "2023-02-17 19:22:56.797884"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.798658"], ["updated_at", "2023-02-17 19:22:56.798658"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.799501"], ["updated_at", "2023-02-17 19:22:56.799501"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.800273"], ["updated_at", "2023-02-17 19:22:56.800273"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.801110"], ["updated_at", "2023-02-17 19:22:56.801110"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:56.802357"], ["updated_at", "2023-02-17 19:22:56.802357"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.821854"], ["updated_at", "2023-02-17 19:22:56.821854"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.823005"], ["updated_at", "2023-02-17 19:22:56.823005"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.823923"], ["updated_at", "2023-02-17 19:22:56.823923"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.824737"], ["updated_at", "2023-02-17 19:22:56.824737"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.825521"], ["updated_at", "2023-02-17 19:22:56.825521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.826417"], ["updated_at", "2023-02-17 19:22:56.826417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.827206"], ["updated_at", "2023-02-17 19:22:56.827206"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.827959"], ["updated_at", "2023-02-17 19:22:56.827959"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.828891"], ["updated_at", "2023-02-17 19:22:56.828891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.829790"], ["updated_at", "2023-02-17 19:22:56.829790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.830577"], ["updated_at", "2023-02-17 19:22:56.830577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.831394"], ["updated_at", "2023-02-17 19:22:56.831394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.832119"], ["updated_at", "2023-02-17 19:22:56.832119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.832826"], ["updated_at", "2023-02-17 19:22:56.832826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.833541"], ["updated_at", "2023-02-17 19:22:56.833541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:56.834240"], ["updated_at", "2023-02-17 19:22:56.834240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.851464"], ["updated_at", "2023-02-17 19:22:56.851464"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.853388"], ["updated_at", "2023-02-17 19:22:56.853388"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.854387"], ["updated_at", "2023-02-17 19:22:56.854387"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.855456"], ["updated_at", "2023-02-17 19:22:56.855456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.856338"], ["updated_at", "2023-02-17 19:22:56.856338"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.857080"], ["updated_at", "2023-02-17 19:22:56.857080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.857802"], ["updated_at", "2023-02-17 19:22:56.857802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.858502"], ["updated_at", "2023-02-17 19:22:56.858502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.859181"], ["updated_at", "2023-02-17 19:22:56.859181"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.860029"], ["updated_at", "2023-02-17 19:22:56.860029"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.860927"], ["updated_at", "2023-02-17 19:22:56.860927"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.861669"], ["updated_at", "2023-02-17 19:22:56.861669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.862576"], ["updated_at", "2023-02-17 19:22:56.862576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.863367"], ["updated_at", "2023-02-17 19:22:56.863367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.864066"], ["updated_at", "2023-02-17 19:22:56.864066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:56.864779"], ["updated_at", "2023-02-17 19:22:56.864779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.883310"], ["updated_at", "2023-02-17 19:22:56.883310"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.884343"], ["updated_at", "2023-02-17 19:22:56.884343"]]
QuestionAnswer Create (0.6ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.885569"], ["updated_at", "2023-02-17 19:22:56.885569"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.886867"], ["updated_at", "2023-02-17 19:22:56.886867"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.888238"], ["updated_at", "2023-02-17 19:22:56.888238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.889325"], ["updated_at", "2023-02-17 19:22:56.889325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.890085"], ["updated_at", "2023-02-17 19:22:56.890085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.890982"], ["updated_at", "2023-02-17 19:22:56.890982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.891697"], ["updated_at", "2023-02-17 19:22:56.891697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.892453"], ["updated_at", "2023-02-17 19:22:56.892453"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.893479"], ["updated_at", "2023-02-17 19:22:56.893479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.894388"], ["updated_at", "2023-02-17 19:22:56.894388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.895140"], ["updated_at", "2023-02-17 19:22:56.895140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.895852"], ["updated_at", "2023-02-17 19:22:56.895852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.896527"], ["updated_at", "2023-02-17 19:22:56.896527"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:56.897239"], ["updated_at", "2023-02-17 19:22:56.897239"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.914328"], ["updated_at", "2023-02-17 19:22:56.914328"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.915355"], ["updated_at", "2023-02-17 19:22:56.915355"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.916134"], ["updated_at", "2023-02-17 19:22:56.916134"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.916862"], ["updated_at", "2023-02-17 19:22:56.916862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.917628"], ["updated_at", "2023-02-17 19:22:56.917628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.918747"], ["updated_at", "2023-02-17 19:22:56.918747"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.920122"], ["updated_at", "2023-02-17 19:22:56.920122"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.920966"], ["updated_at", "2023-02-17 19:22:56.920966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.921972"], ["updated_at", "2023-02-17 19:22:56.921972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.922781"], ["updated_at", "2023-02-17 19:22:56.922781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.923496"], ["updated_at", "2023-02-17 19:22:56.923496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.924185"], ["updated_at", "2023-02-17 19:22:56.924185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.924895"], ["updated_at", "2023-02-17 19:22:56.924895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.925616"], ["updated_at", "2023-02-17 19:22:56.925616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.926339"], ["updated_at", "2023-02-17 19:22:56.926339"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:56.927235"], ["updated_at", "2023-02-17 19:22:56.927235"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.3ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.944674"], ["updated_at", "2023-02-17 19:22:56.944674"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.945674"], ["updated_at", "2023-02-17 19:22:56.945674"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.946453"], ["updated_at", "2023-02-17 19:22:56.946453"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.947325"], ["updated_at", "2023-02-17 19:22:56.947325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.948136"], ["updated_at", "2023-02-17 19:22:56.948136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.948873"], ["updated_at", "2023-02-17 19:22:56.948873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.949586"], ["updated_at", "2023-02-17 19:22:56.949586"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.950289"], ["updated_at", "2023-02-17 19:22:56.950289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.950988"], ["updated_at", "2023-02-17 19:22:56.950988"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.952105"], ["updated_at", "2023-02-17 19:22:56.952105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.953612"], ["updated_at", "2023-02-17 19:22:56.953612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.954511"], ["updated_at", "2023-02-17 19:22:56.954511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.955534"], ["updated_at", "2023-02-17 19:22:56.955534"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.956290"], ["updated_at", "2023-02-17 19:22:56.956290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.957042"], ["updated_at", "2023-02-17 19:22:56.957042"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:56.957744"], ["updated_at", "2023-02-17 19:22:56.957744"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:56.975037"], ["updated_at", "2023-02-17 19:22:56.975037"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:56.976046"], ["updated_at", "2023-02-17 19:22:56.976046"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:56.976857"], ["updated_at", "2023-02-17 19:22:56.976857"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:56.977717"], ["updated_at", "2023-02-17 19:22:56.977717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.978660"], ["updated_at", "2023-02-17 19:22:56.978660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.979439"], ["updated_at", "2023-02-17 19:22:56.979439"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.980170"], ["updated_at", "2023-02-17 19:22:56.980170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.980908"], ["updated_at", "2023-02-17 19:22:56.980908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.981646"], ["updated_at", "2023-02-17 19:22:56.981646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.982529"], ["updated_at", "2023-02-17 19:22:56.982529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.983291"], ["updated_at", "2023-02-17 19:22:56.983291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.984077"], ["updated_at", "2023-02-17 19:22:56.984077"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.984803"], ["updated_at", "2023-02-17 19:22:56.984803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.986565"], ["updated_at", "2023-02-17 19:22:56.986565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.987480"], ["updated_at", "2023-02-17 19:22:56.987480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:56.988679"], ["updated_at", "2023-02-17 19:22:56.988679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:22:56 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:22:56.998406"], ["updated_at", "2023-02-17 19:22:56.998406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:22:56.999868"], ["updated_at", "2023-02-17 19:22:56.999868"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:22:57.004125"], ["updated_at", "2023-02-17 19:22:57.004125"]]
TRANSACTION (0.3ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:22:57.005664"], ["updated_at", "2023-02-17 19:22:57.005664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:22:57.008456"], ["updated_at", "2023-02-17 19:22:57.008456"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:22:57.009696"], ["updated_at", "2023-02-17 19:22:57.009696"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:22:57.012096"], ["updated_at", "2023-02-17 19:22:57.012096"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:22:57.013601"], ["updated_at", "2023-02-17 19:22:57.013601"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:22:57.015118"], ["updated_at", "2023-02-17 19:22:57.015118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:22:57.016395"], ["updated_at", "2023-02-17 19:22:57.016395"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:22:57.017785"], ["updated_at", "2023-02-17 19:22:57.017785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:22:57.020033"], ["updated_at", "2023-02-17 19:22:57.020033"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:22:57.022217"], ["updated_at", "2023-02-17 19:22:57.022217"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:22:57.023704"], ["updated_at", "2023-02-17 19:22:57.023704"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:22:57.025156"], ["updated_at", "2023-02-17 19:22:57.025156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:22:57.026452"], ["updated_at", "2023-02-17 19:22:57.026452"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:22:57.028061"], ["updated_at", "2023-02-17 19:22:57.028061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:22:57.029374"], ["updated_at", "2023-02-17 19:22:57.029374"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:22:57.030779"], ["updated_at", "2023-02-17 19:22:57.030779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:22:57.032417"], ["updated_at", "2023-02-17 19:22:57.032417"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:22:57.033921"], ["updated_at", "2023-02-17 19:22:57.033921"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:22:57.035567"], ["updated_at", "2023-02-17 19:22:57.035567"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:22:57.037669"], ["updated_at", "2023-02-17 19:22:57.037669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:22:57.039240"], ["updated_at", "2023-02-17 19:22:57.039240"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:22:57.040664"], ["updated_at", "2023-02-17 19:22:57.040664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:22:57.042042"], ["updated_at", "2023-02-17 19:22:57.042042"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:22:57.043621"], ["updated_at", "2023-02-17 19:22:57.043621"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:22:57.044948"], ["updated_at", "2023-02-17 19:22:57.044948"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:22:57.046342"], ["updated_at", "2023-02-17 19:22:57.046342"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:22:57.047514"], ["updated_at", "2023-02-17 19:22:57.047514"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:22:57.048885"], ["updated_at", "2023-02-17 19:22:57.048885"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:22:57.050096"], ["updated_at", "2023-02-17 19:22:57.050096"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:22:57.052163"], ["updated_at", "2023-02-17 19:22:57.052163"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:22:57.054258"], ["updated_at", "2023-02-17 19:22:57.054258"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:22:57.056047"], ["updated_at", "2023-02-17 19:22:57.056047"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:22:57.057308"], ["updated_at", "2023-02-17 19:22:57.057308"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:22:57.058723"], ["updated_at", "2023-02-17 19:22:57.058723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:22:57.059993"], ["updated_at", "2023-02-17 19:22:57.059993"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:22:57.061829"], ["updated_at", "2023-02-17 19:22:57.061829"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:22:57.063260"], ["updated_at", "2023-02-17 19:22:57.063260"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:22:57.064653"], ["updated_at", "2023-02-17 19:22:57.064653"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:22:57.065870"], ["updated_at", "2023-02-17 19:22:57.065870"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:22:57.067281"], ["updated_at", "2023-02-17 19:22:57.067281"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:22:57.068885"], ["updated_at", "2023-02-17 19:22:57.068885"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:22:57.071009"], ["updated_at", "2023-02-17 19:22:57.071009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:22:57.072747"], ["updated_at", "2023-02-17 19:22:57.072747"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:22:57.074181"], ["updated_at", "2023-02-17 19:22:57.074181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:22:57.075813"], ["updated_at", "2023-02-17 19:22:57.075813"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:22:57.077584"], ["updated_at", "2023-02-17 19:22:57.077584"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:22:57.079064"], ["updated_at", "2023-02-17 19:22:57.079064"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:22:57.080690"], ["updated_at", "2023-02-17 19:22:57.080690"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:22:57.082327"], ["updated_at", "2023-02-17 19:22:57.082327"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:22:57.083871"], ["updated_at", "2023-02-17 19:22:57.083871"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:22:57.085598"], ["updated_at", "2023-02-17 19:22:57.085598"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:22:57.087924"], ["updated_at", "2023-02-17 19:22:57.087924"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:22:57.089550"], ["updated_at", "2023-02-17 19:22:57.089550"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:22:57.091003"], ["updated_at", "2023-02-17 19:22:57.091003"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:22:57.092197"], ["updated_at", "2023-02-17 19:22:57.092197"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:22:57.093723"], ["updated_at", "2023-02-17 19:22:57.093723"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:22:57.095447"], ["updated_at", "2023-02-17 19:22:57.095447"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:22:57.096939"], ["updated_at", "2023-02-17 19:22:57.096939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:22:57.098127"], ["updated_at", "2023-02-17 19:22:57.098127"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:22:57.099565"], ["updated_at", "2023-02-17 19:22:57.099565"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:22:57.101377"], ["updated_at", "2023-02-17 19:22:57.101377"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:22:57.104733"], ["updated_at", "2023-02-17 19:22:57.104733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:22:57.106925"], ["updated_at", "2023-02-17 19:22:57.106925"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:22:57.109035"], ["updated_at", "2023-02-17 19:22:57.109035"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:22:57.111154"], ["updated_at", "2023-02-17 19:22:57.111154"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:22:57.113411"], ["updated_at", "2023-02-17 19:22:57.113411"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:22:57.115142"], ["updated_at", "2023-02-17 19:22:57.115142"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:22:57.116923"], ["updated_at", "2023-02-17 19:22:57.116923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:22:57.119058"], ["updated_at", "2023-02-17 19:22:57.119058"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:22:57.122157"], ["updated_at", "2023-02-17 19:22:57.122157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:22:57.124050"], ["updated_at", "2023-02-17 19:22:57.124050"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:22:57.125895"], ["updated_at", "2023-02-17 19:22:57.125895"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:22:57.127835"], ["updated_at", "2023-02-17 19:22:57.127835"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:22:57.129939"], ["updated_at", "2023-02-17 19:22:57.129939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:22:57.131818"], ["updated_at", "2023-02-17 19:22:57.131818"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:22:57.133728"], ["updated_at", "2023-02-17 19:22:57.133728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:22:57.135846"], ["updated_at", "2023-02-17 19:22:57.135846"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:22:57.138680"], ["updated_at", "2023-02-17 19:22:57.138680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:22:57.140620"], ["updated_at", "2023-02-17 19:22:57.140620"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:22:57.142871"], ["updated_at", "2023-02-17 19:22:57.142871"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:22:57.144707"], ["updated_at", "2023-02-17 19:22:57.144707"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:22:57.146931"], ["updated_at", "2023-02-17 19:22:57.146931"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:22:57.148651"], ["updated_at", "2023-02-17 19:22:57.148651"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:22:57.150901"], ["updated_at", "2023-02-17 19:22:57.150901"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:22:57.154063"], ["updated_at", "2023-02-17 19:22:57.154063"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:22:57.156195"], ["updated_at", "2023-02-17 19:22:57.156195"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:22:57.158292"], ["updated_at", "2023-02-17 19:22:57.158292"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:22:57.160304"], ["updated_at", "2023-02-17 19:22:57.160304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:22:57.162226"], ["updated_at", "2023-02-17 19:22:57.162226"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:22:57.164223"], ["updated_at", "2023-02-17 19:22:57.164223"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.4ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:22:57.165947"], ["updated_at", "2023-02-17 19:22:57.165947"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.4ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:22:57.169007"], ["updated_at", "2023-02-17 19:22:57.169007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:22:57.171291"], ["updated_at", "2023-02-17 19:22:57.171291"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:22:57.173384"], ["updated_at", "2023-02-17 19:22:57.173384"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:22:57.175234"], ["updated_at", "2023-02-17 19:22:57.175234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.5ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:22:57.177120"], ["updated_at", "2023-02-17 19:22:57.177120"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:22:57.179234"], ["updated_at", "2023-02-17 19:22:57.179234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:22:57.180883"], ["updated_at", "2023-02-17 19:22:57.180883"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.9ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:57.195804"], ["updated_at", "2023-02-17 19:22:57.195804"], ["role_id", 2]]
SurveyQuestion Create (1.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:57.198063"], ["updated_at", "2023-02-17 19:22:57.198063"]]
SurveyQuestion Create (0.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:57.200896"], ["updated_at", "2023-02-17 19:22:57.200896"]]
QuestionOption Create (1.4ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.202425"], ["updated_at", "2023-02-17 19:22:57.202425"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.204794"], ["updated_at", "2023-02-17 19:22:57.204794"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.205806"], ["updated_at", "2023-02-17 19:22:57.205806"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.206757"], ["updated_at", "2023-02-17 19:22:57.206757"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.207605"], ["updated_at", "2023-02-17 19:22:57.207605"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:57.208540"], ["updated_at", "2023-02-17 19:22:57.208540"]]
LikertScaleQuestion Create (1.0ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.209630"], ["updated_at", "2023-02-17 19:22:57.209630"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.211891"], ["updated_at", "2023-02-17 19:22:57.211891"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.213150"], ["updated_at", "2023-02-17 19:22:57.213150"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.214340"], ["updated_at", "2023-02-17 19:22:57.214340"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.215641"], ["updated_at", "2023-02-17 19:22:57.215641"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.217259"], ["updated_at", "2023-02-17 19:22:57.217259"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.218921"], ["updated_at", "2023-02-17 19:22:57.218921"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.220542"], ["updated_at", "2023-02-17 19:22:57.220542"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.221764"], ["updated_at", "2023-02-17 19:22:57.221764"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.222681"], ["updated_at", "2023-02-17 19:22:57.222681"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.223609"], ["updated_at", "2023-02-17 19:22:57.223609"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.224560"], ["updated_at", "2023-02-17 19:22:57.224560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.5ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:22:57.239216"], ["updated_at", "2023-02-17 19:22:57.239216"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:22:57.240843"], ["updated_at", "2023-02-17 19:22:57.240843"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:22:57.242154"], ["updated_at", "2023-02-17 19:22:57.242154"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:57.243267"], ["updated_at", "2023-02-17 19:22:57.243267"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:57.244571"], ["updated_at", "2023-02-17 19:22:57.244571"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:57.245744"], ["updated_at", "2023-02-17 19:22:57.245744"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:57.246797"], ["updated_at", "2023-02-17 19:22:57.246797"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:22:57.247691"], ["updated_at", "2023-02-17 19:22:57.247691"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:22:57.248806"], ["updated_at", "2023-02-17 19:22:57.248806"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.250294"], ["updated_at", "2023-02-17 19:22:57.250294"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.251655"], ["updated_at", "2023-02-17 19:22:57.251655"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.253132"], ["updated_at", "2023-02-17 19:22:57.253132"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.254187"], ["updated_at", "2023-02-17 19:22:57.254187"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.255182"], ["updated_at", "2023-02-17 19:22:57.255182"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.256128"], ["updated_at", "2023-02-17 19:22:57.256128"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.257131"], ["updated_at", "2023-02-17 19:22:57.257131"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.258094"], ["updated_at", "2023-02-17 19:22:57.258094"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.259005"], ["updated_at", "2023-02-17 19:22:57.259005"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.260175"], ["updated_at", "2023-02-17 19:22:57.260175"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.261550"], ["updated_at", "2023-02-17 19:22:57.261550"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:22:57.262825"], ["updated_at", "2023-02-17 19:22:57.262825"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.5ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (2.0ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:57.286437"], ["updated_at", "2023-02-17 19:22:57.286437"]]
QuestionAnswer Create (1.4ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:57.289594"], ["updated_at", "2023-02-17 19:22:57.289594"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.292061"], ["updated_at", "2023-02-17 19:22:57.292061"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.293208"], ["updated_at", "2023-02-17 19:22:57.293208"]]
LikertScaleAnswer Create (1.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.294559"], ["updated_at", "2023-02-17 19:22:57.294559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.297110"], ["updated_at", "2023-02-17 19:22:57.297110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.298380"], ["updated_at", "2023-02-17 19:22:57.298380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.299600"], ["updated_at", "2023-02-17 19:22:57.299600"]]
LikertScaleAnswer Create (0.5ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.300837"], ["updated_at", "2023-02-17 19:22:57.300837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.302478"], ["updated_at", "2023-02-17 19:22:57.302478"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.303764"], ["updated_at", "2023-02-17 19:22:57.303764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.304828"], ["updated_at", "2023-02-17 19:22:57.304828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.305777"], ["updated_at", "2023-02-17 19:22:57.305777"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.306698"], ["updated_at", "2023-02-17 19:22:57.306698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.307656"], ["updated_at", "2023-02-17 19:22:57.307656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:22:57.308599"], ["updated_at", "2023-02-17 19:22:57.308599"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:57.331768"], ["updated_at", "2023-02-17 19:22:57.331768"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:57.333039"], ["updated_at", "2023-02-17 19:22:57.333039"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.334023"], ["updated_at", "2023-02-17 19:22:57.334023"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.335328"], ["updated_at", "2023-02-17 19:22:57.335328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.336375"], ["updated_at", "2023-02-17 19:22:57.336375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.337397"], ["updated_at", "2023-02-17 19:22:57.337397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.338352"], ["updated_at", "2023-02-17 19:22:57.338352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.339373"], ["updated_at", "2023-02-17 19:22:57.339373"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.340483"], ["updated_at", "2023-02-17 19:22:57.340483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.341675"], ["updated_at", "2023-02-17 19:22:57.341675"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.342843"], ["updated_at", "2023-02-17 19:22:57.342843"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.344098"], ["updated_at", "2023-02-17 19:22:57.344098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.345388"], ["updated_at", "2023-02-17 19:22:57.345388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.346626"], ["updated_at", "2023-02-17 19:22:57.346626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.347852"], ["updated_at", "2023-02-17 19:22:57.347852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:22:57.349079"], ["updated_at", "2023-02-17 19:22:57.349079"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:57.374672"], ["updated_at", "2023-02-17 19:22:57.374672"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:57.375968"], ["updated_at", "2023-02-17 19:22:57.375968"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.377300"], ["updated_at", "2023-02-17 19:22:57.377300"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.378546"], ["updated_at", "2023-02-17 19:22:57.378546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.379674"], ["updated_at", "2023-02-17 19:22:57.379674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.380791"], ["updated_at", "2023-02-17 19:22:57.380791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.381960"], ["updated_at", "2023-02-17 19:22:57.381960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.383159"], ["updated_at", "2023-02-17 19:22:57.383159"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.384290"], ["updated_at", "2023-02-17 19:22:57.384290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.385559"], ["updated_at", "2023-02-17 19:22:57.385559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.386762"], ["updated_at", "2023-02-17 19:22:57.386762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.387849"], ["updated_at", "2023-02-17 19:22:57.387849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.388816"], ["updated_at", "2023-02-17 19:22:57.388816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.389991"], ["updated_at", "2023-02-17 19:22:57.389991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.391227"], ["updated_at", "2023-02-17 19:22:57.391227"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:22:57.392412"], ["updated_at", "2023-02-17 19:22:57.392412"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:57.414391"], ["updated_at", "2023-02-17 19:22:57.414391"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:57.415677"], ["updated_at", "2023-02-17 19:22:57.415677"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.416760"], ["updated_at", "2023-02-17 19:22:57.416760"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.417807"], ["updated_at", "2023-02-17 19:22:57.417807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.418972"], ["updated_at", "2023-02-17 19:22:57.418972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.420083"], ["updated_at", "2023-02-17 19:22:57.420083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.421122"], ["updated_at", "2023-02-17 19:22:57.421122"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.422297"], ["updated_at", "2023-02-17 19:22:57.422297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.423262"], ["updated_at", "2023-02-17 19:22:57.423262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.424377"], ["updated_at", "2023-02-17 19:22:57.424377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.425547"], ["updated_at", "2023-02-17 19:22:57.425547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.426695"], ["updated_at", "2023-02-17 19:22:57.426695"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.427881"], ["updated_at", "2023-02-17 19:22:57.427881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.429103"], ["updated_at", "2023-02-17 19:22:57.429103"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.430282"], ["updated_at", "2023-02-17 19:22:57.430282"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:22:57.431413"], ["updated_at", "2023-02-17 19:22:57.431413"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:57.455524"], ["updated_at", "2023-02-17 19:22:57.455524"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:57.456781"], ["updated_at", "2023-02-17 19:22:57.456781"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.457953"], ["updated_at", "2023-02-17 19:22:57.457953"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.459046"], ["updated_at", "2023-02-17 19:22:57.459046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.460221"], ["updated_at", "2023-02-17 19:22:57.460221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.461301"], ["updated_at", "2023-02-17 19:22:57.461301"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.462401"], ["updated_at", "2023-02-17 19:22:57.462401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.464000"], ["updated_at", "2023-02-17 19:22:57.464000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.465412"], ["updated_at", "2023-02-17 19:22:57.465412"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.466574"], ["updated_at", "2023-02-17 19:22:57.466574"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.467636"], ["updated_at", "2023-02-17 19:22:57.467636"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.469145"], ["updated_at", "2023-02-17 19:22:57.469145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.470818"], ["updated_at", "2023-02-17 19:22:57.470818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.471904"], ["updated_at", "2023-02-17 19:22:57.471904"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.472979"], ["updated_at", "2023-02-17 19:22:57.472979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:22:57.474029"], ["updated_at", "2023-02-17 19:22:57.474029"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.4ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:22:57.499865"], ["updated_at", "2023-02-17 19:22:57.499865"]]
QuestionAnswer Create (0.4ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:22:57.501104"], ["updated_at", "2023-02-17 19:22:57.501104"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:22:57.502613"], ["updated_at", "2023-02-17 19:22:57.502613"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:22:57.504306"], ["updated_at", "2023-02-17 19:22:57.504306"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.505347"], ["updated_at", "2023-02-17 19:22:57.505347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.506404"], ["updated_at", "2023-02-17 19:22:57.506404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.507518"], ["updated_at", "2023-02-17 19:22:57.507518"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.508621"], ["updated_at", "2023-02-17 19:22:57.508621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.509745"], ["updated_at", "2023-02-17 19:22:57.509745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.510804"], ["updated_at", "2023-02-17 19:22:57.510804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.511845"], ["updated_at", "2023-02-17 19:22:57.511845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.513336"], ["updated_at", "2023-02-17 19:22:57.513336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.514698"], ["updated_at", "2023-02-17 19:22:57.514698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.515846"], ["updated_at", "2023-02-17 19:22:57.515846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.516884"], ["updated_at", "2023-02-17 19:22:57.516884"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:22:57.517852"], ["updated_at", "2023-02-17 19:22:57.517852"]]
TRANSACTION (0.4ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:22:57 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:22:57 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:22:57 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 23ms (Views: 21.6ms | ActiveRecord: 0.7ms | Allocations: 16008)

TRANSACTION (0.1ms)  rollback transaction
 (1.6ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:24.506148"], ["updated_at", "2023-02-17 19:23:24.506148"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:24.520933"], ["updated_at", "2023-02-17 19:23:24.520933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:23:24.527551"], ["updated_at", "2023-02-17 19:23:24.527551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:24.537385"], ["updated_at", "2023-02-17 19:23:24.537385"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:24.545009"], ["updated_at", "2023-02-17 19:23:24.545009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:23:24.548282"], ["updated_at", "2023-02-17 19:23:24.548282"], ["role_id", 34]]

Processing by ScrapperController#show as HTML

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:24.550637"], ["updated_at", "2023-02-17 19:23:24.550637"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 56ms (Views: 0.2ms | ActiveRecord: 4.9ms | Allocations: 28616) Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

Member Load (0.2ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:24.567158"], ["updated_at", "2023-02-17 19:23:24.567158"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:23:24.568184"], ["updated_at", "2023-02-17 19:23:24.568184"], ["role_id", 1]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.6ms | Allocations: 1408)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000564324ac1698>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:24.581655"], ["updated_at", "2023-02-17 19:23:24.581655"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:23:24.587635"], ["updated_at", "2023-02-17 19:23:24.587635"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms | Allocations: 3025)

Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:24.598135"], ["updated_at", "2023-02-17 19:23:24.598135"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:24.606219"], ["updated_at", "2023-02-17 19:23:24.606219"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:23:24.610335"], ["updated_at", "2023-02-17 19:23:24.610335"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:24.612703"], ["updated_at", "2023-02-17 19:23:24.612703"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 57ms (Views: 0.2ms | ActiveRecord: 5.7ms | Allocations: 28604)

Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:24.628759"], ["updated_at", "2023-02-17 19:23:24.628759"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:24.630229"], ["updated_at", "2023-02-17 19:23:24.630229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:23:24.630187"], ["updated_at", "2023-02-17 19:23:24.630187"], ["role_id", 1]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.6ms | Allocations: 1408)

Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:24.633714"], ["updated_at", "2023-02-17 19:23:24.633714"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000056015155fb10>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 333)

Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:24.635077"], ["updated_at", "2023-02-17 19:23:24.635077"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:24.637960"], ["updated_at", "2023-02-17 19:23:24.637960"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:24.639175"], ["updated_at", "2023-02-17 19:23:24.639175"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:24.641627"], ["updated_at", "2023-02-17 19:23:24.641627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:24.643455"], ["updated_at", "2023-02-17 19:23:24.643455"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:24.645091"], ["updated_at", "2023-02-17 19:23:24.645091"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:24.646405"], ["updated_at", "2023-02-17 19:23:24.646405"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:24.647942"], ["updated_at", "2023-02-17 19:23:24.647942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:24.649244"], ["updated_at", "2023-02-17 19:23:24.649244"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:24.650642"], ["updated_at", "2023-02-17 19:23:24.650642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 3025)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:24.651910"], ["updated_at", "2023-02-17 19:23:24.651910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:24.653788"], ["updated_at", "2023-02-17 19:23:24.653788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:24.655368"], ["updated_at", "2023-02-17 19:23:24.655368"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:24.656831"], ["updated_at", "2023-02-17 19:23:24.656831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:24.658102"], ["updated_at", "2023-02-17 19:23:24.658102"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:24.659591"], ["updated_at", "2023-02-17 19:23:24.659591"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:24.660888"], ["updated_at", "2023-02-17 19:23:24.660888"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:24.662783"], ["updated_at", "2023-02-17 19:23:24.662783"]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:24.664298"], ["updated_at", "2023-02-17 19:23:24.664298"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:24.665803"], ["updated_at", "2023-02-17 19:23:24.665803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:24.667036"], ["updated_at", "2023-02-17 19:23:24.667036"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:24.668424"], ["updated_at", "2023-02-17 19:23:24.668424"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:24.669861"], ["updated_at", "2023-02-17 19:23:24.669861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:24.671360"], ["updated_at", "2023-02-17 19:23:24.671360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:24.672869"], ["updated_at", "2023-02-17 19:23:24.672869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:24.674388"], ["updated_at", "2023-02-17 19:23:24.674388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:24.675665"], ["updated_at", "2023-02-17 19:23:24.675665"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:24.677297"], ["updated_at", "2023-02-17 19:23:24.677297"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:24.678615"], ["updated_at", "2023-02-17 19:23:24.678615"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:24.680009"], ["updated_at", "2023-02-17 19:23:24.680009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:24.681246"], ["updated_at", "2023-02-17 19:23:24.681246"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:24.683069"], ["updated_at", "2023-02-17 19:23:24.683069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:24.684666"], ["updated_at", "2023-02-17 19:23:24.684666"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:24.686220"], ["updated_at", "2023-02-17 19:23:24.686220"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:24.687513"], ["updated_at", "2023-02-17 19:23:24.687513"], ["role_id", 34]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:24.689140"], ["updated_at", "2023-02-17 19:23:24.689140"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:24.689856"], ["updated_at", "2023-02-17 19:23:24.689856"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:24.690910"], ["updated_at", "2023-02-17 19:23:24.690910"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:24.692879"], ["updated_at", "2023-02-17 19:23:24.692879"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:24.694255"], ["updated_at", "2023-02-17 19:23:24.694255"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:24.694789"], ["updated_at", "2023-02-17 19:23:24.694789"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:24.695741"], ["updated_at", "2023-02-17 19:23:24.695741"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:24.697163"], ["updated_at", "2023-02-17 19:23:24.697163"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:24.698781"], ["updated_at", "2023-02-17 19:23:24.698781"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:24.699961"], ["updated_at", "2023-02-17 19:23:24.699961"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:24.700301"], ["updated_at", "2023-02-17 19:23:24.700301"], ["role_id", 34]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:24.701871"], ["updated_at", "2023-02-17 19:23:24.701871"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:24.703473"], ["updated_at", "2023-02-17 19:23:24.703473"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:24.705061"], ["updated_at", "2023-02-17 19:23:24.705061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:24.705414"], ["updated_at", "2023-02-17 19:23:24.705414"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:24.706376"], ["updated_at", "2023-02-17 19:23:24.706376"], ["role_id", 34]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:24.708194"], ["updated_at", "2023-02-17 19:23:24.708194"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:24.709617"], ["updated_at", "2023-02-17 19:23:24.709617"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:24.710321"], ["updated_at", "2023-02-17 19:23:24.710321"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:24.711151"], ["updated_at", "2023-02-17 19:23:24.711151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:24.712611"], ["updated_at", "2023-02-17 19:23:24.712611"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:24.714450"], ["updated_at", "2023-02-17 19:23:24.714450"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:24.715593"], ["updated_at", "2023-02-17 19:23:24.715593"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:24.716238"], ["updated_at", "2023-02-17 19:23:24.716238"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:24.718089"], ["updated_at", "2023-02-17 19:23:24.718089"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:24.719707"], ["updated_at", "2023-02-17 19:23:24.719707"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:24.720461"], ["updated_at", "2023-02-17 19:23:24.720461"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.6ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.7ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:24.721650"], ["updated_at", "2023-02-17 19:23:24.721650"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:24.724887"], ["updated_at", "2023-02-17 19:23:24.724887"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:24.726237"], ["updated_at", "2023-02-17 19:23:24.726237"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:24.726743"], ["updated_at", "2023-02-17 19:23:24.726743"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:24.728517"], ["updated_at", "2023-02-17 19:23:24.728517"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:24.730795"], ["updated_at", "2023-02-17 19:23:24.730795"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:24.732219"], ["updated_at", "2023-02-17 19:23:24.732219"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:24.733890"], ["updated_at", "2023-02-17 19:23:24.733890"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:24.735179"], ["updated_at", "2023-02-17 19:23:24.735179"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:23:24 -0300

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:24.736680"], ["updated_at", "2023-02-17 19:23:24.736680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:24.738185"], ["updated_at", "2023-02-17 19:23:24.738185"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:24.739676"], ["updated_at", "2023-02-17 19:23:24.739676"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:24.740937"], ["updated_at", "2023-02-17 19:23:24.740937"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:24.742620"], ["updated_at", "2023-02-17 19:23:24.742620"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:24.744298"], ["updated_at", "2023-02-17 19:23:24.744298"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 232)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:24.746498"], ["updated_at", "2023-02-17 19:23:24.746498"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:24.748100"], ["updated_at", "2023-02-17 19:23:24.748100"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:24.749654"], ["updated_at", "2023-02-17 19:23:24.749654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:24.750984"], ["updated_at", "2023-02-17 19:23:24.750984"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:24.752580"], ["updated_at", "2023-02-17 19:23:24.752580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:23:24 -0300

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:24.754281"], ["updated_at", "2023-02-17 19:23:24.754281"], ["role_id", 34]]

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 180)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:24.755913"], ["updated_at", "2023-02-17 19:23:24.755913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:24.757211"], ["updated_at", "2023-02-17 19:23:24.757211"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:24.758888"], ["updated_at", "2023-02-17 19:23:24.758888"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:24.760220"], ["updated_at", "2023-02-17 19:23:24.760220"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:24.761723"], ["updated_at", "2023-02-17 19:23:24.761723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:24.763196"], ["updated_at", "2023-02-17 19:23:24.763196"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:24.764720"], ["updated_at", "2023-02-17 19:23:24.764720"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:24.765981"], ["updated_at", "2023-02-17 19:23:24.765981"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:24.767468"], ["updated_at", "2023-02-17 19:23:24.767468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:24.768772"], ["updated_at", "2023-02-17 19:23:24.768772"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:24.770230"], ["updated_at", "2023-02-17 19:23:24.770230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:24.771740"], ["updated_at", "2023-02-17 19:23:24.771740"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:24.773672"], ["updated_at", "2023-02-17 19:23:24.773672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:24.775058"], ["updated_at", "2023-02-17 19:23:24.775058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:24.776629"], ["updated_at", "2023-02-17 19:23:24.776629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:24.777931"], ["updated_at", "2023-02-17 19:23:24.777931"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:24.779376"], ["updated_at", "2023-02-17 19:23:24.779376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:24.780584"], ["updated_at", "2023-02-17 19:23:24.780584"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:24.782031"], ["updated_at", "2023-02-17 19:23:24.782031"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:24.783969"], ["updated_at", "2023-02-17 19:23:24.783969"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:24.788396"], ["updated_at", "2023-02-17 19:23:24.788396"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:24.789927"], ["updated_at", "2023-02-17 19:23:24.789927"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:24.791102"], ["updated_at", "2023-02-17 19:23:24.791102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:24.821371"], ["updated_at", "2023-02-17 19:23:24.821371"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:24.823263"], ["updated_at", "2023-02-17 19:23:24.823263"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:24.824520"], ["updated_at", "2023-02-17 19:23:24.824520"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:24.825589"], ["updated_at", "2023-02-17 19:23:24.825589"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:24.826557"], ["updated_at", "2023-02-17 19:23:24.826557"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:24.827315"], ["updated_at", "2023-02-17 19:23:24.827315"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:24.828023"], ["updated_at", "2023-02-17 19:23:24.828023"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:24.828812"], ["updated_at", "2023-02-17 19:23:24.828812"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:24.829632"], ["updated_at", "2023-02-17 19:23:24.829632"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.830633"], ["updated_at", "2023-02-17 19:23:24.830633"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.831617"], ["updated_at", "2023-02-17 19:23:24.831617"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.832448"], ["updated_at", "2023-02-17 19:23:24.832448"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.833589"], ["updated_at", "2023-02-17 19:23:24.833589"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.834673"], ["updated_at", "2023-02-17 19:23:24.834673"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.835539"], ["updated_at", "2023-02-17 19:23:24.835539"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.836448"], ["updated_at", "2023-02-17 19:23:24.836448"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.837397"], ["updated_at", "2023-02-17 19:23:24.837397"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.838227"], ["updated_at", "2023-02-17 19:23:24.838227"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.839196"], ["updated_at", "2023-02-17 19:23:24.839196"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.856492"], ["updated_at", "2023-02-17 19:23:24.856492"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.857767"], ["updated_at", "2023-02-17 19:23:24.857767"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:24.874338"], ["updated_at", "2023-02-17 19:23:24.874338"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:24.876198"], ["updated_at", "2023-02-17 19:23:24.876198"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:24.877418"], ["updated_at", "2023-02-17 19:23:24.877418"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:24.878527"], ["updated_at", "2023-02-17 19:23:24.878527"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:24.879595"], ["updated_at", "2023-02-17 19:23:24.879595"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:24.880566"], ["updated_at", "2023-02-17 19:23:24.880566"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:24.881547"], ["updated_at", "2023-02-17 19:23:24.881547"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:24.882469"], ["updated_at", "2023-02-17 19:23:24.882469"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:24.883584"], ["updated_at", "2023-02-17 19:23:24.883584"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.886067"], ["updated_at", "2023-02-17 19:23:24.886067"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.886934"], ["updated_at", "2023-02-17 19:23:24.886934"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.887730"], ["updated_at", "2023-02-17 19:23:24.887730"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.888474"], ["updated_at", "2023-02-17 19:23:24.888474"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.889219"], ["updated_at", "2023-02-17 19:23:24.889219"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.889969"], ["updated_at", "2023-02-17 19:23:24.889969"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.890715"], ["updated_at", "2023-02-17 19:23:24.890715"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.891432"], ["updated_at", "2023-02-17 19:23:24.891432"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.892226"], ["updated_at", "2023-02-17 19:23:24.892226"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.893105"], ["updated_at", "2023-02-17 19:23:24.893105"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.894087"], ["updated_at", "2023-02-17 19:23:24.894087"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:24.895101"], ["updated_at", "2023-02-17 19:23:24.895101"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:24.928840"], ["updated_at", "2023-02-17 19:23:24.928840"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:24.930006"], ["updated_at", "2023-02-17 19:23:24.930006"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:24.930911"], ["updated_at", "2023-02-17 19:23:24.930911"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.931615"], ["updated_at", "2023-02-17 19:23:24.931615"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.932451"], ["updated_at", "2023-02-17 19:23:24.932451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.933387"], ["updated_at", "2023-02-17 19:23:24.933387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.934134"], ["updated_at", "2023-02-17 19:23:24.934134"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.934840"], ["updated_at", "2023-02-17 19:23:24.934840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.935534"], ["updated_at", "2023-02-17 19:23:24.935534"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.936204"], ["updated_at", "2023-02-17 19:23:24.936204"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.936910"], ["updated_at", "2023-02-17 19:23:24.936910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.937615"], ["updated_at", "2023-02-17 19:23:24.937615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.938310"], ["updated_at", "2023-02-17 19:23:24.938310"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.938997"], ["updated_at", "2023-02-17 19:23:24.938997"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.939679"], ["updated_at", "2023-02-17 19:23:24.939679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:24.940388"], ["updated_at", "2023-02-17 19:23:24.940388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:24.956618"], ["updated_at", "2023-02-17 19:23:24.956618"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:24.957770"], ["updated_at", "2023-02-17 19:23:24.957770"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:24.958651"], ["updated_at", "2023-02-17 19:23:24.958651"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.959447"], ["updated_at", "2023-02-17 19:23:24.959447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.960203"], ["updated_at", "2023-02-17 19:23:24.960203"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.961038"], ["updated_at", "2023-02-17 19:23:24.961038"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.961957"], ["updated_at", "2023-02-17 19:23:24.961957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.962971"], ["updated_at", "2023-02-17 19:23:24.962971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.964036"], ["updated_at", "2023-02-17 19:23:24.964036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.964880"], ["updated_at", "2023-02-17 19:23:24.964880"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.965710"], ["updated_at", "2023-02-17 19:23:24.965710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.966413"], ["updated_at", "2023-02-17 19:23:24.966413"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.967100"], ["updated_at", "2023-02-17 19:23:24.967100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.967807"], ["updated_at", "2023-02-17 19:23:24.967807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.968505"], ["updated_at", "2023-02-17 19:23:24.968505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:24.969340"], ["updated_at", "2023-02-17 19:23:24.969340"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:24.986095"], ["updated_at", "2023-02-17 19:23:24.986095"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:24.987124"], ["updated_at", "2023-02-17 19:23:24.987124"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:24.987907"], ["updated_at", "2023-02-17 19:23:24.987907"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:24.988611"], ["updated_at", "2023-02-17 19:23:24.988611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.989366"], ["updated_at", "2023-02-17 19:23:24.989366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.990139"], ["updated_at", "2023-02-17 19:23:24.990139"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.990860"], ["updated_at", "2023-02-17 19:23:24.990860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.991573"], ["updated_at", "2023-02-17 19:23:24.991573"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.992464"], ["updated_at", "2023-02-17 19:23:24.992464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.993388"], ["updated_at", "2023-02-17 19:23:24.993388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.994328"], ["updated_at", "2023-02-17 19:23:24.994328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.995124"], ["updated_at", "2023-02-17 19:23:24.995124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.996056"], ["updated_at", "2023-02-17 19:23:24.996056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.996998"], ["updated_at", "2023-02-17 19:23:24.996998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.997758"], ["updated_at", "2023-02-17 19:23:24.997758"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:24.998468"], ["updated_at", "2023-02-17 19:23:24.998468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.015522"], ["updated_at", "2023-02-17 19:23:25.015522"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.016547"], ["updated_at", "2023-02-17 19:23:25.016547"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.017411"], ["updated_at", "2023-02-17 19:23:25.017411"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.018151"], ["updated_at", "2023-02-17 19:23:25.018151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.018911"], ["updated_at", "2023-02-17 19:23:25.018911"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.019650"], ["updated_at", "2023-02-17 19:23:25.019650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.020422"], ["updated_at", "2023-02-17 19:23:25.020422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.021165"], ["updated_at", "2023-02-17 19:23:25.021165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.021946"], ["updated_at", "2023-02-17 19:23:25.021946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.022663"], ["updated_at", "2023-02-17 19:23:25.022663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.023409"], ["updated_at", "2023-02-17 19:23:25.023409"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.024202"], ["updated_at", "2023-02-17 19:23:25.024202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.024929"], ["updated_at", "2023-02-17 19:23:25.024929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.025670"], ["updated_at", "2023-02-17 19:23:25.025670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.026425"], ["updated_at", "2023-02-17 19:23:25.026425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.027144"], ["updated_at", "2023-02-17 19:23:25.027144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.043150"], ["updated_at", "2023-02-17 19:23:25.043150"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.044264"], ["updated_at", "2023-02-17 19:23:25.044264"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.045066"], ["updated_at", "2023-02-17 19:23:25.045066"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.046093"], ["updated_at", "2023-02-17 19:23:25.046093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.047115"], ["updated_at", "2023-02-17 19:23:25.047115"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.047874"], ["updated_at", "2023-02-17 19:23:25.047874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.048590"], ["updated_at", "2023-02-17 19:23:25.048590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.049307"], ["updated_at", "2023-02-17 19:23:25.049307"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.050006"], ["updated_at", "2023-02-17 19:23:25.050006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.050798"], ["updated_at", "2023-02-17 19:23:25.050798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.051511"], ["updated_at", "2023-02-17 19:23:25.051511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.052202"], ["updated_at", "2023-02-17 19:23:25.052202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.052899"], ["updated_at", "2023-02-17 19:23:25.052899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.053737"], ["updated_at", "2023-02-17 19:23:25.053737"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.054577"], ["updated_at", "2023-02-17 19:23:25.054577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.055385"], ["updated_at", "2023-02-17 19:23:25.055385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.071748"], ["updated_at", "2023-02-17 19:23:25.071748"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.072740"], ["updated_at", "2023-02-17 19:23:25.072740"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.073496"], ["updated_at", "2023-02-17 19:23:25.073496"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.074320"], ["updated_at", "2023-02-17 19:23:25.074320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.075117"], ["updated_at", "2023-02-17 19:23:25.075117"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.075911"], ["updated_at", "2023-02-17 19:23:25.075911"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.076641"], ["updated_at", "2023-02-17 19:23:25.076641"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.077373"], ["updated_at", "2023-02-17 19:23:25.077373"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.078068"], ["updated_at", "2023-02-17 19:23:25.078068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.078949"], ["updated_at", "2023-02-17 19:23:25.078949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.079975"], ["updated_at", "2023-02-17 19:23:25.079975"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.080730"], ["updated_at", "2023-02-17 19:23:25.080730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.081458"], ["updated_at", "2023-02-17 19:23:25.081458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.082188"], ["updated_at", "2023-02-17 19:23:25.082188"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.083000"], ["updated_at", "2023-02-17 19:23:25.083000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.083776"], ["updated_at", "2023-02-17 19:23:25.083776"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:23:25 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 3125)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:25.108230"], ["updated_at", "2023-02-17 19:23:25.108230"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:25.109894"], ["updated_at", "2023-02-17 19:23:25.109894"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:25.113488"], ["updated_at", "2023-02-17 19:23:25.113488"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:25.114727"], ["updated_at", "2023-02-17 19:23:25.114727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:25.117515"], ["updated_at", "2023-02-17 19:23:25.117515"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:25.118695"], ["updated_at", "2023-02-17 19:23:25.118695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:25.120793"], ["updated_at", "2023-02-17 19:23:25.120793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:25.122319"], ["updated_at", "2023-02-17 19:23:25.122319"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:25.124013"], ["updated_at", "2023-02-17 19:23:25.124013"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:25.125404"], ["updated_at", "2023-02-17 19:23:25.125404"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:25.126883"], ["updated_at", "2023-02-17 19:23:25.126883"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:25.128336"], ["updated_at", "2023-02-17 19:23:25.128336"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:25.130025"], ["updated_at", "2023-02-17 19:23:25.130025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:25.131281"], ["updated_at", "2023-02-17 19:23:25.131281"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:25.132706"], ["updated_at", "2023-02-17 19:23:25.132706"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:25.134084"], ["updated_at", "2023-02-17 19:23:25.134084"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:25.135553"], ["updated_at", "2023-02-17 19:23:25.135553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:25.136797"], ["updated_at", "2023-02-17 19:23:25.136797"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:25.138373"], ["updated_at", "2023-02-17 19:23:25.138373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:25.139643"], ["updated_at", "2023-02-17 19:23:25.139643"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:25.141009"], ["updated_at", "2023-02-17 19:23:25.141009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:25.142301"], ["updated_at", "2023-02-17 19:23:25.142301"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:25.143826"], ["updated_at", "2023-02-17 19:23:25.143826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:25.145179"], ["updated_at", "2023-02-17 19:23:25.145179"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:25.148088"], ["updated_at", "2023-02-17 19:23:25.148088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:25.149351"], ["updated_at", "2023-02-17 19:23:25.149351"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:25.150885"], ["updated_at", "2023-02-17 19:23:25.150885"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:25.152147"], ["updated_at", "2023-02-17 19:23:25.152147"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:25.153680"], ["updated_at", "2023-02-17 19:23:25.153680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:25.155020"], ["updated_at", "2023-02-17 19:23:25.155020"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:25.156387"], ["updated_at", "2023-02-17 19:23:25.156387"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:25.157579"], ["updated_at", "2023-02-17 19:23:25.157579"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:25.159039"], ["updated_at", "2023-02-17 19:23:25.159039"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:25.160281"], ["updated_at", "2023-02-17 19:23:25.160281"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:25.161803"], ["updated_at", "2023-02-17 19:23:25.161803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:25.163505"], ["updated_at", "2023-02-17 19:23:25.163505"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:25.165019"], ["updated_at", "2023-02-17 19:23:25.165019"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:25.166224"], ["updated_at", "2023-02-17 19:23:25.166224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:25.167693"], ["updated_at", "2023-02-17 19:23:25.167693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:25.168916"], ["updated_at", "2023-02-17 19:23:25.168916"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:25.170292"], ["updated_at", "2023-02-17 19:23:25.170292"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:25.171623"], ["updated_at", "2023-02-17 19:23:25.171623"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:25.173152"], ["updated_at", "2023-02-17 19:23:25.173152"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:25.174396"], ["updated_at", "2023-02-17 19:23:25.174396"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:25.175882"], ["updated_at", "2023-02-17 19:23:25.175882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:25.177109"], ["updated_at", "2023-02-17 19:23:25.177109"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:25.178485"], ["updated_at", "2023-02-17 19:23:25.178485"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:25.180069"], ["updated_at", "2023-02-17 19:23:25.180069"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:25.181565"], ["updated_at", "2023-02-17 19:23:25.181565"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:25.182741"], ["updated_at", "2023-02-17 19:23:25.182741"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:25.184310"], ["updated_at", "2023-02-17 19:23:25.184310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:25.185518"], ["updated_at", "2023-02-17 19:23:25.185518"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:25.186949"], ["updated_at", "2023-02-17 19:23:25.186949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:25.188289"], ["updated_at", "2023-02-17 19:23:25.188289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:25.189733"], ["updated_at", "2023-02-17 19:23:25.189733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:25.190936"], ["updated_at", "2023-02-17 19:23:25.190936"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:25.192534"], ["updated_at", "2023-02-17 19:23:25.192534"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:25.194089"], ["updated_at", "2023-02-17 19:23:25.194089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:25.195714"], ["updated_at", "2023-02-17 19:23:25.195714"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:25.197252"], ["updated_at", "2023-02-17 19:23:25.197252"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:25.198709"], ["updated_at", "2023-02-17 19:23:25.198709"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:25.199921"], ["updated_at", "2023-02-17 19:23:25.199921"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:25.201390"], ["updated_at", "2023-02-17 19:23:25.201390"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:25.202700"], ["updated_at", "2023-02-17 19:23:25.202700"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:25.204207"], ["updated_at", "2023-02-17 19:23:25.204207"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:25.205505"], ["updated_at", "2023-02-17 19:23:25.205505"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:25.206928"], ["updated_at", "2023-02-17 19:23:25.206928"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:25.208108"], ["updated_at", "2023-02-17 19:23:25.208108"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:25.209636"], ["updated_at", "2023-02-17 19:23:25.209636"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:25.210977"], ["updated_at", "2023-02-17 19:23:25.210977"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:25.212754"], ["updated_at", "2023-02-17 19:23:25.212754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:25.214259"], ["updated_at", "2023-02-17 19:23:25.214259"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:25.215678"], ["updated_at", "2023-02-17 19:23:25.215678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:25.216940"], ["updated_at", "2023-02-17 19:23:25.216940"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:25.218353"], ["updated_at", "2023-02-17 19:23:25.218353"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:25.219574"], ["updated_at", "2023-02-17 19:23:25.219574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:25.221072"], ["updated_at", "2023-02-17 19:23:25.221072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:25.222325"], ["updated_at", "2023-02-17 19:23:25.222325"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:25.223862"], ["updated_at", "2023-02-17 19:23:25.223862"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:25.225105"], ["updated_at", "2023-02-17 19:23:25.225105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:25.226562"], ["updated_at", "2023-02-17 19:23:25.226562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:25.227803"], ["updated_at", "2023-02-17 19:23:25.227803"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:25.229447"], ["updated_at", "2023-02-17 19:23:25.229447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:25.230851"], ["updated_at", "2023-02-17 19:23:25.230851"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:25.232242"], ["updated_at", "2023-02-17 19:23:25.232242"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:25.233564"], ["updated_at", "2023-02-17 19:23:25.233564"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:25.235032"], ["updated_at", "2023-02-17 19:23:25.235032"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:25.236223"], ["updated_at", "2023-02-17 19:23:25.236223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:25.237640"], ["updated_at", "2023-02-17 19:23:25.237640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:25.238931"], ["updated_at", "2023-02-17 19:23:25.238931"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:25.240300"], ["updated_at", "2023-02-17 19:23:25.240300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:25.241500"], ["updated_at", "2023-02-17 19:23:25.241500"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:25.243076"], ["updated_at", "2023-02-17 19:23:25.243076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:25.244306"], ["updated_at", "2023-02-17 19:23:25.244306"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:25.245787"], ["updated_at", "2023-02-17 19:23:25.245787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:25.247154"], ["updated_at", "2023-02-17 19:23:25.247154"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:25.248401"], ["updated_at", "2023-02-17 19:23:25.248401"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:25.249806"], ["updated_at", "2023-02-17 19:23:25.249806"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:25.251324"], ["updated_at", "2023-02-17 19:23:25.251324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:25.252443"], ["updated_at", "2023-02-17 19:23:25.252443"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:25.253562"], ["updated_at", "2023-02-17 19:23:25.253562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:25.265183"], ["updated_at", "2023-02-17 19:23:25.265183"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:25.266424"], ["updated_at", "2023-02-17 19:23:25.266424"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:25.267469"], ["updated_at", "2023-02-17 19:23:25.267469"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.268375"], ["updated_at", "2023-02-17 19:23:25.268375"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.269173"], ["updated_at", "2023-02-17 19:23:25.269173"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.269853"], ["updated_at", "2023-02-17 19:23:25.269853"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.270580"], ["updated_at", "2023-02-17 19:23:25.270580"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.271305"], ["updated_at", "2023-02-17 19:23:25.271305"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:25.272085"], ["updated_at", "2023-02-17 19:23:25.272085"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.273091"], ["updated_at", "2023-02-17 19:23:25.273091"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.274126"], ["updated_at", "2023-02-17 19:23:25.274126"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.274938"], ["updated_at", "2023-02-17 19:23:25.274938"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.275693"], ["updated_at", "2023-02-17 19:23:25.275693"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.276451"], ["updated_at", "2023-02-17 19:23:25.276451"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.277179"], ["updated_at", "2023-02-17 19:23:25.277179"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.277932"], ["updated_at", "2023-02-17 19:23:25.277932"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.278701"], ["updated_at", "2023-02-17 19:23:25.278701"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.279447"], ["updated_at", "2023-02-17 19:23:25.279447"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.280210"], ["updated_at", "2023-02-17 19:23:25.280210"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.280954"], ["updated_at", "2023-02-17 19:23:25.280954"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.281693"], ["updated_at", "2023-02-17 19:23:25.281693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:25.293334"], ["updated_at", "2023-02-17 19:23:25.293334"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:25.294618"], ["updated_at", "2023-02-17 19:23:25.294618"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:25.295506"], ["updated_at", "2023-02-17 19:23:25.295506"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:25.296395"], ["updated_at", "2023-02-17 19:23:25.296395"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:25.297214"], ["updated_at", "2023-02-17 19:23:25.297214"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:25.297929"], ["updated_at", "2023-02-17 19:23:25.297929"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:25.298609"], ["updated_at", "2023-02-17 19:23:25.298609"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:25.299299"], ["updated_at", "2023-02-17 19:23:25.299299"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:25.300047"], ["updated_at", "2023-02-17 19:23:25.300047"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.301031"], ["updated_at", "2023-02-17 19:23:25.301031"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.301882"], ["updated_at", "2023-02-17 19:23:25.301882"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.302636"], ["updated_at", "2023-02-17 19:23:25.302636"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.303481"], ["updated_at", "2023-02-17 19:23:25.303481"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.304318"], ["updated_at", "2023-02-17 19:23:25.304318"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.305147"], ["updated_at", "2023-02-17 19:23:25.305147"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.305902"], ["updated_at", "2023-02-17 19:23:25.305902"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.306645"], ["updated_at", "2023-02-17 19:23:25.306645"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.307364"], ["updated_at", "2023-02-17 19:23:25.307364"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.308100"], ["updated_at", "2023-02-17 19:23:25.308100"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.308956"], ["updated_at", "2023-02-17 19:23:25.308956"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.309742"], ["updated_at", "2023-02-17 19:23:25.309742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.326041"], ["updated_at", "2023-02-17 19:23:25.326041"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.327106"], ["updated_at", "2023-02-17 19:23:25.327106"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.327935"], ["updated_at", "2023-02-17 19:23:25.327935"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.328670"], ["updated_at", "2023-02-17 19:23:25.328670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.329556"], ["updated_at", "2023-02-17 19:23:25.329556"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.330408"], ["updated_at", "2023-02-17 19:23:25.330408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.331144"], ["updated_at", "2023-02-17 19:23:25.331144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.331841"], ["updated_at", "2023-02-17 19:23:25.331841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.332516"], ["updated_at", "2023-02-17 19:23:25.332516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.333346"], ["updated_at", "2023-02-17 19:23:25.333346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.334166"], ["updated_at", "2023-02-17 19:23:25.334166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.334893"], ["updated_at", "2023-02-17 19:23:25.334893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.335579"], ["updated_at", "2023-02-17 19:23:25.335579"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.336288"], ["updated_at", "2023-02-17 19:23:25.336288"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.336998"], ["updated_at", "2023-02-17 19:23:25.336998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.337757"], ["updated_at", "2023-02-17 19:23:25.337757"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.353562"], ["updated_at", "2023-02-17 19:23:25.353562"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.354561"], ["updated_at", "2023-02-17 19:23:25.354561"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.355356"], ["updated_at", "2023-02-17 19:23:25.355356"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.356065"], ["updated_at", "2023-02-17 19:23:25.356065"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.356837"], ["updated_at", "2023-02-17 19:23:25.356837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.357562"], ["updated_at", "2023-02-17 19:23:25.357562"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.358299"], ["updated_at", "2023-02-17 19:23:25.358299"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.359040"], ["updated_at", "2023-02-17 19:23:25.359040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.359750"], ["updated_at", "2023-02-17 19:23:25.359750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.360466"], ["updated_at", "2023-02-17 19:23:25.360466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.361200"], ["updated_at", "2023-02-17 19:23:25.361200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.361884"], ["updated_at", "2023-02-17 19:23:25.361884"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.362835"], ["updated_at", "2023-02-17 19:23:25.362835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.363954"], ["updated_at", "2023-02-17 19:23:25.363954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.364771"], ["updated_at", "2023-02-17 19:23:25.364771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.365478"], ["updated_at", "2023-02-17 19:23:25.365478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.381591"], ["updated_at", "2023-02-17 19:23:25.381591"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.382568"], ["updated_at", "2023-02-17 19:23:25.382568"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.383410"], ["updated_at", "2023-02-17 19:23:25.383410"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.384152"], ["updated_at", "2023-02-17 19:23:25.384152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.384980"], ["updated_at", "2023-02-17 19:23:25.384980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.385769"], ["updated_at", "2023-02-17 19:23:25.385769"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.386501"], ["updated_at", "2023-02-17 19:23:25.386501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.387196"], ["updated_at", "2023-02-17 19:23:25.387196"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.387877"], ["updated_at", "2023-02-17 19:23:25.387877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.388598"], ["updated_at", "2023-02-17 19:23:25.388598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.389384"], ["updated_at", "2023-02-17 19:23:25.389384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.390251"], ["updated_at", "2023-02-17 19:23:25.390251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.390972"], ["updated_at", "2023-02-17 19:23:25.390972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.391667"], ["updated_at", "2023-02-17 19:23:25.391667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.392407"], ["updated_at", "2023-02-17 19:23:25.392407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.393311"], ["updated_at", "2023-02-17 19:23:25.393311"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.409969"], ["updated_at", "2023-02-17 19:23:25.409969"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.411003"], ["updated_at", "2023-02-17 19:23:25.411003"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.411774"], ["updated_at", "2023-02-17 19:23:25.411774"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.412526"], ["updated_at", "2023-02-17 19:23:25.412526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.413448"], ["updated_at", "2023-02-17 19:23:25.413448"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.414475"], ["updated_at", "2023-02-17 19:23:25.414475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.415325"], ["updated_at", "2023-02-17 19:23:25.415325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.416043"], ["updated_at", "2023-02-17 19:23:25.416043"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.416738"], ["updated_at", "2023-02-17 19:23:25.416738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.417451"], ["updated_at", "2023-02-17 19:23:25.417451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.418276"], ["updated_at", "2023-02-17 19:23:25.418276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.419013"], ["updated_at", "2023-02-17 19:23:25.419013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.419704"], ["updated_at", "2023-02-17 19:23:25.419704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.420410"], ["updated_at", "2023-02-17 19:23:25.420410"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.421116"], ["updated_at", "2023-02-17 19:23:25.421116"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.421871"], ["updated_at", "2023-02-17 19:23:25.421871"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.437842"], ["updated_at", "2023-02-17 19:23:25.437842"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.438848"], ["updated_at", "2023-02-17 19:23:25.438848"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.439622"], ["updated_at", "2023-02-17 19:23:25.439622"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.440332"], ["updated_at", "2023-02-17 19:23:25.440332"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.441162"], ["updated_at", "2023-02-17 19:23:25.441162"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.442225"], ["updated_at", "2023-02-17 19:23:25.442225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.443067"], ["updated_at", "2023-02-17 19:23:25.443067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.443929"], ["updated_at", "2023-02-17 19:23:25.443929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.444683"], ["updated_at", "2023-02-17 19:23:25.444683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.445454"], ["updated_at", "2023-02-17 19:23:25.445454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.446173"], ["updated_at", "2023-02-17 19:23:25.446173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.446949"], ["updated_at", "2023-02-17 19:23:25.446949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.447711"], ["updated_at", "2023-02-17 19:23:25.447711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.448436"], ["updated_at", "2023-02-17 19:23:25.448436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.449167"], ["updated_at", "2023-02-17 19:23:25.449167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.449865"], ["updated_at", "2023-02-17 19:23:25.449865"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.466480"], ["updated_at", "2023-02-17 19:23:25.466480"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.467540"], ["updated_at", "2023-02-17 19:23:25.467540"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.468377"], ["updated_at", "2023-02-17 19:23:25.468377"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.469132"], ["updated_at", "2023-02-17 19:23:25.469132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.469913"], ["updated_at", "2023-02-17 19:23:25.469913"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.470697"], ["updated_at", "2023-02-17 19:23:25.470697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.471468"], ["updated_at", "2023-02-17 19:23:25.471468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.472243"], ["updated_at", "2023-02-17 19:23:25.472243"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.473013"], ["updated_at", "2023-02-17 19:23:25.473013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.473822"], ["updated_at", "2023-02-17 19:23:25.473822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.474596"], ["updated_at", "2023-02-17 19:23:25.474596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.475605"], ["updated_at", "2023-02-17 19:23:25.475605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.476545"], ["updated_at", "2023-02-17 19:23:25.476545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.477297"], ["updated_at", "2023-02-17 19:23:25.477297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.478011"], ["updated_at", "2023-02-17 19:23:25.478011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.478717"], ["updated_at", "2023-02-17 19:23:25.478717"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:23:25 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:25.488646"], ["updated_at", "2023-02-17 19:23:25.488646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:25.490128"], ["updated_at", "2023-02-17 19:23:25.490128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:25.493849"], ["updated_at", "2023-02-17 19:23:25.493849"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:25.495134"], ["updated_at", "2023-02-17 19:23:25.495134"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:25.497964"], ["updated_at", "2023-02-17 19:23:25.497964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:25.499169"], ["updated_at", "2023-02-17 19:23:25.499169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:25.501320"], ["updated_at", "2023-02-17 19:23:25.501320"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:25.502773"], ["updated_at", "2023-02-17 19:23:25.502773"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:25.504513"], ["updated_at", "2023-02-17 19:23:25.504513"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:25.505937"], ["updated_at", "2023-02-17 19:23:25.505937"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:25.507425"], ["updated_at", "2023-02-17 19:23:25.507425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:25.508822"], ["updated_at", "2023-02-17 19:23:25.508822"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:25.510588"], ["updated_at", "2023-02-17 19:23:25.510588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:25.511854"], ["updated_at", "2023-02-17 19:23:25.511854"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:25.513308"], ["updated_at", "2023-02-17 19:23:25.513308"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:25.514666"], ["updated_at", "2023-02-17 19:23:25.514666"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:25.516253"], ["updated_at", "2023-02-17 19:23:25.516253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:25.517546"], ["updated_at", "2023-02-17 19:23:25.517546"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:25.519094"], ["updated_at", "2023-02-17 19:23:25.519094"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:25.520397"], ["updated_at", "2023-02-17 19:23:25.520397"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:25.521925"], ["updated_at", "2023-02-17 19:23:25.521925"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:25.523219"], ["updated_at", "2023-02-17 19:23:25.523219"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:25.524734"], ["updated_at", "2023-02-17 19:23:25.524734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:25.526362"], ["updated_at", "2023-02-17 19:23:25.526362"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:25.527842"], ["updated_at", "2023-02-17 19:23:25.527842"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:25.529067"], ["updated_at", "2023-02-17 19:23:25.529067"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:25.530581"], ["updated_at", "2023-02-17 19:23:25.530581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:25.531805"], ["updated_at", "2023-02-17 19:23:25.531805"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:25.533190"], ["updated_at", "2023-02-17 19:23:25.533190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:25.534590"], ["updated_at", "2023-02-17 19:23:25.534590"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:25.536017"], ["updated_at", "2023-02-17 19:23:25.536017"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:25.537256"], ["updated_at", "2023-02-17 19:23:25.537256"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:25.538818"], ["updated_at", "2023-02-17 19:23:25.538818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:25.540032"], ["updated_at", "2023-02-17 19:23:25.540032"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:25.541521"], ["updated_at", "2023-02-17 19:23:25.541521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:25.543126"], ["updated_at", "2023-02-17 19:23:25.543126"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:25.544682"], ["updated_at", "2023-02-17 19:23:25.544682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:25.545944"], ["updated_at", "2023-02-17 19:23:25.545944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:25.547487"], ["updated_at", "2023-02-17 19:23:25.547487"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:25.549326"], ["updated_at", "2023-02-17 19:23:25.549326"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:25.551254"], ["updated_at", "2023-02-17 19:23:25.551254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:25.552847"], ["updated_at", "2023-02-17 19:23:25.552847"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:25.554529"], ["updated_at", "2023-02-17 19:23:25.554529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:25.555776"], ["updated_at", "2023-02-17 19:23:25.555776"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:25.557333"], ["updated_at", "2023-02-17 19:23:25.557333"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:25.558928"], ["updated_at", "2023-02-17 19:23:25.558928"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:25.560923"], ["updated_at", "2023-02-17 19:23:25.560923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:25.562382"], ["updated_at", "2023-02-17 19:23:25.562382"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:25.563873"], ["updated_at", "2023-02-17 19:23:25.563873"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:25.565616"], ["updated_at", "2023-02-17 19:23:25.565616"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:25.567713"], ["updated_at", "2023-02-17 19:23:25.567713"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:25.569178"], ["updated_at", "2023-02-17 19:23:25.569178"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:25.571072"], ["updated_at", "2023-02-17 19:23:25.571072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:25.572397"], ["updated_at", "2023-02-17 19:23:25.572397"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:25.574122"], ["updated_at", "2023-02-17 19:23:25.574122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:25.575809"], ["updated_at", "2023-02-17 19:23:25.575809"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:25.577708"], ["updated_at", "2023-02-17 19:23:25.577708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:25.579066"], ["updated_at", "2023-02-17 19:23:25.579066"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:25.580475"], ["updated_at", "2023-02-17 19:23:25.580475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:25.581836"], ["updated_at", "2023-02-17 19:23:25.581836"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:25.583419"], ["updated_at", "2023-02-17 19:23:25.583419"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:25.584939"], ["updated_at", "2023-02-17 19:23:25.584939"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:25.586845"], ["updated_at", "2023-02-17 19:23:25.586845"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:25.588199"], ["updated_at", "2023-02-17 19:23:25.588199"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:25.589834"], ["updated_at", "2023-02-17 19:23:25.589834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:25.591171"], ["updated_at", "2023-02-17 19:23:25.591171"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:25.593281"], ["updated_at", "2023-02-17 19:23:25.593281"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:25.595121"], ["updated_at", "2023-02-17 19:23:25.595121"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:25.596818"], ["updated_at", "2023-02-17 19:23:25.596818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:25.598141"], ["updated_at", "2023-02-17 19:23:25.598141"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:25.599638"], ["updated_at", "2023-02-17 19:23:25.599638"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:25.601222"], ["updated_at", "2023-02-17 19:23:25.601222"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:25.602863"], ["updated_at", "2023-02-17 19:23:25.602863"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:25.604543"], ["updated_at", "2023-02-17 19:23:25.604543"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:25.606261"], ["updated_at", "2023-02-17 19:23:25.606261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:25.607737"], ["updated_at", "2023-02-17 19:23:25.607737"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:25.610345"], ["updated_at", "2023-02-17 19:23:25.610345"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:25.612513"], ["updated_at", "2023-02-17 19:23:25.612513"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:25.614620"], ["updated_at", "2023-02-17 19:23:25.614620"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:25.617861"], ["updated_at", "2023-02-17 19:23:25.617861"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:25.620333"], ["updated_at", "2023-02-17 19:23:25.620333"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:25.622193"], ["updated_at", "2023-02-17 19:23:25.622193"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:25.624680"], ["updated_at", "2023-02-17 19:23:25.624680"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:25.626923"], ["updated_at", "2023-02-17 19:23:25.626923"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:25.629284"], ["updated_at", "2023-02-17 19:23:25.629284"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:25.631147"], ["updated_at", "2023-02-17 19:23:25.631147"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:25.633124"], ["updated_at", "2023-02-17 19:23:25.633124"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:25.634933"], ["updated_at", "2023-02-17 19:23:25.634933"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:25.636991"], ["updated_at", "2023-02-17 19:23:25.636991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:25.638768"], ["updated_at", "2023-02-17 19:23:25.638768"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:25.640684"], ["updated_at", "2023-02-17 19:23:25.640684"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:25.642587"], ["updated_at", "2023-02-17 19:23:25.642587"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:25.644999"], ["updated_at", "2023-02-17 19:23:25.644999"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:25.647142"], ["updated_at", "2023-02-17 19:23:25.647142"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:25.649032"], ["updated_at", "2023-02-17 19:23:25.649032"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:25.650623"], ["updated_at", "2023-02-17 19:23:25.650623"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:25.652297"], ["updated_at", "2023-02-17 19:23:25.652297"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:25.654552"], ["updated_at", "2023-02-17 19:23:25.654552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.5ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:25.656821"], ["updated_at", "2023-02-17 19:23:25.656821"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:25.659080"], ["updated_at", "2023-02-17 19:23:25.659080"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:25.661083"], ["updated_at", "2023-02-17 19:23:25.661083"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.0ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:25.675188"], ["updated_at", "2023-02-17 19:23:25.675188"], ["role_id", 2]]
SurveyQuestion Create (1.4ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:25.677874"], ["updated_at", "2023-02-17 19:23:25.677874"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:25.680368"], ["updated_at", "2023-02-17 19:23:25.680368"]]
QuestionOption Create (1.0ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.681578"], ["updated_at", "2023-02-17 19:23:25.681578"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.683778"], ["updated_at", "2023-02-17 19:23:25.683778"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.684845"], ["updated_at", "2023-02-17 19:23:25.684845"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.685876"], ["updated_at", "2023-02-17 19:23:25.685876"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.686841"], ["updated_at", "2023-02-17 19:23:25.686841"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:25.687804"], ["updated_at", "2023-02-17 19:23:25.687804"]]
LikertScaleQuestion Create (0.9ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.688894"], ["updated_at", "2023-02-17 19:23:25.688894"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.690724"], ["updated_at", "2023-02-17 19:23:25.690724"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.692125"], ["updated_at", "2023-02-17 19:23:25.692125"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.693525"], ["updated_at", "2023-02-17 19:23:25.693525"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.694639"], ["updated_at", "2023-02-17 19:23:25.694639"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.695781"], ["updated_at", "2023-02-17 19:23:25.695781"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.696786"], ["updated_at", "2023-02-17 19:23:25.696786"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.697720"], ["updated_at", "2023-02-17 19:23:25.697720"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.698854"], ["updated_at", "2023-02-17 19:23:25.698854"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.699882"], ["updated_at", "2023-02-17 19:23:25.699882"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.700811"], ["updated_at", "2023-02-17 19:23:25.700811"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.701862"], ["updated_at", "2023-02-17 19:23:25.701862"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:25.716323"], ["updated_at", "2023-02-17 19:23:25.716323"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:25.718059"], ["updated_at", "2023-02-17 19:23:25.718059"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:25.719610"], ["updated_at", "2023-02-17 19:23:25.719610"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:25.720708"], ["updated_at", "2023-02-17 19:23:25.720708"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:25.721944"], ["updated_at", "2023-02-17 19:23:25.721944"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:25.723021"], ["updated_at", "2023-02-17 19:23:25.723021"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:25.724096"], ["updated_at", "2023-02-17 19:23:25.724096"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:25.725070"], ["updated_at", "2023-02-17 19:23:25.725070"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:25.726248"], ["updated_at", "2023-02-17 19:23:25.726248"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.727763"], ["updated_at", "2023-02-17 19:23:25.727763"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.729024"], ["updated_at", "2023-02-17 19:23:25.729024"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.730072"], ["updated_at", "2023-02-17 19:23:25.730072"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.730999"], ["updated_at", "2023-02-17 19:23:25.730999"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.732177"], ["updated_at", "2023-02-17 19:23:25.732177"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.733497"], ["updated_at", "2023-02-17 19:23:25.733497"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.734515"], ["updated_at", "2023-02-17 19:23:25.734515"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.735424"], ["updated_at", "2023-02-17 19:23:25.735424"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.736543"], ["updated_at", "2023-02-17 19:23:25.736543"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.737570"], ["updated_at", "2023-02-17 19:23:25.737570"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.738524"], ["updated_at", "2023-02-17 19:23:25.738524"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:25.739451"], ["updated_at", "2023-02-17 19:23:25.739451"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.8ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.761653"], ["updated_at", "2023-02-17 19:23:25.761653"]]
QuestionAnswer Create (1.4ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.764772"], ["updated_at", "2023-02-17 19:23:25.764772"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.767228"], ["updated_at", "2023-02-17 19:23:25.767228"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.768241"], ["updated_at", "2023-02-17 19:23:25.768241"]]
LikertScaleAnswer Create (1.5ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.769259"], ["updated_at", "2023-02-17 19:23:25.769259"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.771799"], ["updated_at", "2023-02-17 19:23:25.771799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.773149"], ["updated_at", "2023-02-17 19:23:25.773149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.774469"], ["updated_at", "2023-02-17 19:23:25.774469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.775461"], ["updated_at", "2023-02-17 19:23:25.775461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.776766"], ["updated_at", "2023-02-17 19:23:25.776766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.777949"], ["updated_at", "2023-02-17 19:23:25.777949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.778937"], ["updated_at", "2023-02-17 19:23:25.778937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.779843"], ["updated_at", "2023-02-17 19:23:25.779843"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.780703"], ["updated_at", "2023-02-17 19:23:25.780703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.781809"], ["updated_at", "2023-02-17 19:23:25.781809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:25.783060"], ["updated_at", "2023-02-17 19:23:25.783060"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.804966"], ["updated_at", "2023-02-17 19:23:25.804966"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.806198"], ["updated_at", "2023-02-17 19:23:25.806198"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.807247"], ["updated_at", "2023-02-17 19:23:25.807247"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.808247"], ["updated_at", "2023-02-17 19:23:25.808247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.809626"], ["updated_at", "2023-02-17 19:23:25.809626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.810797"], ["updated_at", "2023-02-17 19:23:25.810797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.811966"], ["updated_at", "2023-02-17 19:23:25.811966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.813153"], ["updated_at", "2023-02-17 19:23:25.813153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.814100"], ["updated_at", "2023-02-17 19:23:25.814100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.815065"], ["updated_at", "2023-02-17 19:23:25.815065"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.816209"], ["updated_at", "2023-02-17 19:23:25.816209"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.817215"], ["updated_at", "2023-02-17 19:23:25.817215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.818093"], ["updated_at", "2023-02-17 19:23:25.818093"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.819463"], ["updated_at", "2023-02-17 19:23:25.819463"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.821522"], ["updated_at", "2023-02-17 19:23:25.821522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:25.822793"], ["updated_at", "2023-02-17 19:23:25.822793"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.845742"], ["updated_at", "2023-02-17 19:23:25.845742"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.847177"], ["updated_at", "2023-02-17 19:23:25.847177"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.848382"], ["updated_at", "2023-02-17 19:23:25.848382"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.849523"], ["updated_at", "2023-02-17 19:23:25.849523"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.850658"], ["updated_at", "2023-02-17 19:23:25.850658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.851772"], ["updated_at", "2023-02-17 19:23:25.851772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.853164"], ["updated_at", "2023-02-17 19:23:25.853164"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.854293"], ["updated_at", "2023-02-17 19:23:25.854293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.855452"], ["updated_at", "2023-02-17 19:23:25.855452"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.856436"], ["updated_at", "2023-02-17 19:23:25.856436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.857413"], ["updated_at", "2023-02-17 19:23:25.857413"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.858320"], ["updated_at", "2023-02-17 19:23:25.858320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.859436"], ["updated_at", "2023-02-17 19:23:25.859436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.860846"], ["updated_at", "2023-02-17 19:23:25.860846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.861917"], ["updated_at", "2023-02-17 19:23:25.861917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:25.863284"], ["updated_at", "2023-02-17 19:23:25.863284"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.887796"], ["updated_at", "2023-02-17 19:23:25.887796"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.888995"], ["updated_at", "2023-02-17 19:23:25.888995"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.889988"], ["updated_at", "2023-02-17 19:23:25.889988"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.890992"], ["updated_at", "2023-02-17 19:23:25.890992"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.892051"], ["updated_at", "2023-02-17 19:23:25.892051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.893561"], ["updated_at", "2023-02-17 19:23:25.893561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.894864"], ["updated_at", "2023-02-17 19:23:25.894864"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.895925"], ["updated_at", "2023-02-17 19:23:25.895925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.896860"], ["updated_at", "2023-02-17 19:23:25.896860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.897758"], ["updated_at", "2023-02-17 19:23:25.897758"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.898895"], ["updated_at", "2023-02-17 19:23:25.898895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.899931"], ["updated_at", "2023-02-17 19:23:25.899931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.900868"], ["updated_at", "2023-02-17 19:23:25.900868"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.901798"], ["updated_at", "2023-02-17 19:23:25.901798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.902936"], ["updated_at", "2023-02-17 19:23:25.902936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:25.903956"], ["updated_at", "2023-02-17 19:23:25.903956"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.922965"], ["updated_at", "2023-02-17 19:23:25.922965"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.923997"], ["updated_at", "2023-02-17 19:23:25.923997"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.924866"], ["updated_at", "2023-02-17 19:23:25.924866"]]
QuestionAnswer Create (0.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.925783"], ["updated_at", "2023-02-17 19:23:25.925783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.927030"], ["updated_at", "2023-02-17 19:23:25.927030"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.927924"], ["updated_at", "2023-02-17 19:23:25.927924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.928793"], ["updated_at", "2023-02-17 19:23:25.928793"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.929623"], ["updated_at", "2023-02-17 19:23:25.929623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.930365"], ["updated_at", "2023-02-17 19:23:25.930365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.931100"], ["updated_at", "2023-02-17 19:23:25.931100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.931801"], ["updated_at", "2023-02-17 19:23:25.931801"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.932648"], ["updated_at", "2023-02-17 19:23:25.932648"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.933516"], ["updated_at", "2023-02-17 19:23:25.933516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.934278"], ["updated_at", "2023-02-17 19:23:25.934278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.935002"], ["updated_at", "2023-02-17 19:23:25.935002"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:25.935792"], ["updated_at", "2023-02-17 19:23:25.935792"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:25.964230"], ["updated_at", "2023-02-17 19:23:25.964230"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:25.965264"], ["updated_at", "2023-02-17 19:23:25.965264"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:25.966268"], ["updated_at", "2023-02-17 19:23:25.966268"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:25.967149"], ["updated_at", "2023-02-17 19:23:25.967149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.967940"], ["updated_at", "2023-02-17 19:23:25.967940"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.968657"], ["updated_at", "2023-02-17 19:23:25.968657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.969389"], ["updated_at", "2023-02-17 19:23:25.969389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.970585"], ["updated_at", "2023-02-17 19:23:25.970585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.971576"], ["updated_at", "2023-02-17 19:23:25.971576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.972985"], ["updated_at", "2023-02-17 19:23:25.972985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.974671"], ["updated_at", "2023-02-17 19:23:25.974671"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.975734"], ["updated_at", "2023-02-17 19:23:25.975734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.976536"], ["updated_at", "2023-02-17 19:23:25.976536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.977293"], ["updated_at", "2023-02-17 19:23:25.977293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.978201"], ["updated_at", "2023-02-17 19:23:25.978201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:25.979050"], ["updated_at", "2023-02-17 19:23:25.979050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:23:25 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.5ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 16ms (Views: 11.9ms | ActiveRecord: 0.8ms | Allocations: 9578)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:26.006159"], ["updated_at", "2023-02-17 19:23:26.006159"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:26.007829"], ["updated_at", "2023-02-17 19:23:26.007829"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:26.011439"], ["updated_at", "2023-02-17 19:23:26.011439"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:26.012703"], ["updated_at", "2023-02-17 19:23:26.012703"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:26.016198"], ["updated_at", "2023-02-17 19:23:26.016198"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:26.017440"], ["updated_at", "2023-02-17 19:23:26.017440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:26.019728"], ["updated_at", "2023-02-17 19:23:26.019728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:26.021236"], ["updated_at", "2023-02-17 19:23:26.021236"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:26.024004"], ["updated_at", "2023-02-17 19:23:26.024004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:26.027142"], ["updated_at", "2023-02-17 19:23:26.027142"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:26.028831"], ["updated_at", "2023-02-17 19:23:26.028831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:26.030140"], ["updated_at", "2023-02-17 19:23:26.030140"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:26.031467"], ["updated_at", "2023-02-17 19:23:26.031467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:26.033033"], ["updated_at", "2023-02-17 19:23:26.033033"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:26.034895"], ["updated_at", "2023-02-17 19:23:26.034895"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:26.036547"], ["updated_at", "2023-02-17 19:23:26.036547"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:26.038478"], ["updated_at", "2023-02-17 19:23:26.038478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:26.039704"], ["updated_at", "2023-02-17 19:23:26.039704"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:26.042269"], ["updated_at", "2023-02-17 19:23:26.042269"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.6ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:26.043980"], ["updated_at", "2023-02-17 19:23:26.043980"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:26.046308"], ["updated_at", "2023-02-17 19:23:26.046308"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:26.047552"], ["updated_at", "2023-02-17 19:23:26.047552"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:26.048892"], ["updated_at", "2023-02-17 19:23:26.048892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:26.050223"], ["updated_at", "2023-02-17 19:23:26.050223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:26.051627"], ["updated_at", "2023-02-17 19:23:26.051627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:26.053001"], ["updated_at", "2023-02-17 19:23:26.053001"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:26.054933"], ["updated_at", "2023-02-17 19:23:26.054933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:26.056234"], ["updated_at", "2023-02-17 19:23:26.056234"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:26.057983"], ["updated_at", "2023-02-17 19:23:26.057983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:26.059536"], ["updated_at", "2023-02-17 19:23:26.059536"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:26.061267"], ["updated_at", "2023-02-17 19:23:26.061267"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:26.062585"], ["updated_at", "2023-02-17 19:23:26.062585"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:26.064252"], ["updated_at", "2023-02-17 19:23:26.064252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:26.066128"], ["updated_at", "2023-02-17 19:23:26.066128"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:26.067601"], ["updated_at", "2023-02-17 19:23:26.067601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:26.068781"], ["updated_at", "2023-02-17 19:23:26.068781"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:26.070508"], ["updated_at", "2023-02-17 19:23:26.070508"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:26.071846"], ["updated_at", "2023-02-17 19:23:26.071846"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:26.073221"], ["updated_at", "2023-02-17 19:23:26.073221"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:26.075039"], ["updated_at", "2023-02-17 19:23:26.075039"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:26.077313"], ["updated_at", "2023-02-17 19:23:26.077313"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:26.078599"], ["updated_at", "2023-02-17 19:23:26.078599"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:26.080042"], ["updated_at", "2023-02-17 19:23:26.080042"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.081226"], ["updated_at", "2023-02-17 19:23:26.081226"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:26.082600"], ["updated_at", "2023-02-17 19:23:26.082600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:26.084284"], ["updated_at", "2023-02-17 19:23:26.084284"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:26.085905"], ["updated_at", "2023-02-17 19:23:26.085905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:26.087542"], ["updated_at", "2023-02-17 19:23:26.087542"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:26.089016"], ["updated_at", "2023-02-17 19:23:26.089016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:26.090295"], ["updated_at", "2023-02-17 19:23:26.090295"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:26.092128"], ["updated_at", "2023-02-17 19:23:26.092128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:26.093737"], ["updated_at", "2023-02-17 19:23:26.093737"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:26.095540"], ["updated_at", "2023-02-17 19:23:26.095540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:26.096836"], ["updated_at", "2023-02-17 19:23:26.096836"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:26.098245"], ["updated_at", "2023-02-17 19:23:26.098245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:26.099458"], ["updated_at", "2023-02-17 19:23:26.099458"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:26.100909"], ["updated_at", "2023-02-17 19:23:26.100909"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:26.102108"], ["updated_at", "2023-02-17 19:23:26.102108"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:26.103851"], ["updated_at", "2023-02-17 19:23:26.103851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:26.105863"], ["updated_at", "2023-02-17 19:23:26.105863"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:26.107572"], ["updated_at", "2023-02-17 19:23:26.107572"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:26.109332"], ["updated_at", "2023-02-17 19:23:26.109332"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:26.110841"], ["updated_at", "2023-02-17 19:23:26.110841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.112079"], ["updated_at", "2023-02-17 19:23:26.112079"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:26.113660"], ["updated_at", "2023-02-17 19:23:26.113660"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:26.115135"], ["updated_at", "2023-02-17 19:23:26.115135"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:26.116658"], ["updated_at", "2023-02-17 19:23:26.116658"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:26.117977"], ["updated_at", "2023-02-17 19:23:26.117977"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:26.119421"], ["updated_at", "2023-02-17 19:23:26.119421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.121084"], ["updated_at", "2023-02-17 19:23:26.121084"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:26.122573"], ["updated_at", "2023-02-17 19:23:26.122573"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:26.124165"], ["updated_at", "2023-02-17 19:23:26.124165"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:26.126191"], ["updated_at", "2023-02-17 19:23:26.126191"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:26.128364"], ["updated_at", "2023-02-17 19:23:26.128364"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:26.130022"], ["updated_at", "2023-02-17 19:23:26.130022"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:26.131767"], ["updated_at", "2023-02-17 19:23:26.131767"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:26.133428"], ["updated_at", "2023-02-17 19:23:26.133428"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:26.135110"], ["updated_at", "2023-02-17 19:23:26.135110"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:26.136752"], ["updated_at", "2023-02-17 19:23:26.136752"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:26.138017"], ["updated_at", "2023-02-17 19:23:26.138017"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:26.139457"], ["updated_at", "2023-02-17 19:23:26.139457"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.140791"], ["updated_at", "2023-02-17 19:23:26.140791"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:26.142599"], ["updated_at", "2023-02-17 19:23:26.142599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:26.143887"], ["updated_at", "2023-02-17 19:23:26.143887"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:26.145913"], ["updated_at", "2023-02-17 19:23:26.145913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:26.147314"], ["updated_at", "2023-02-17 19:23:26.147314"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:26.148732"], ["updated_at", "2023-02-17 19:23:26.148732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:26.149921"], ["updated_at", "2023-02-17 19:23:26.149921"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:26.151378"], ["updated_at", "2023-02-17 19:23:26.151378"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:26.152953"], ["updated_at", "2023-02-17 19:23:26.152953"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:26.154689"], ["updated_at", "2023-02-17 19:23:26.154689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:26.156147"], ["updated_at", "2023-02-17 19:23:26.156147"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:26.158088"], ["updated_at", "2023-02-17 19:23:26.158088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:26.159826"], ["updated_at", "2023-02-17 19:23:26.159826"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:26.161422"], ["updated_at", "2023-02-17 19:23:26.161422"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:26.162658"], ["updated_at", "2023-02-17 19:23:26.162658"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:26.164443"], ["updated_at", "2023-02-17 19:23:26.164443"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:26.166690"], ["updated_at", "2023-02-17 19:23:26.166690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:26.168225"], ["updated_at", "2023-02-17 19:23:26.168225"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:26.169440"], ["updated_at", "2023-02-17 19:23:26.169440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:26.170856"], ["updated_at", "2023-02-17 19:23:26.170856"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:26.183179"], ["updated_at", "2023-02-17 19:23:26.183179"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:26.184662"], ["updated_at", "2023-02-17 19:23:26.184662"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:26.186546"], ["updated_at", "2023-02-17 19:23:26.186546"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.187636"], ["updated_at", "2023-02-17 19:23:26.187636"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.188460"], ["updated_at", "2023-02-17 19:23:26.188460"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.189225"], ["updated_at", "2023-02-17 19:23:26.189225"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.189953"], ["updated_at", "2023-02-17 19:23:26.189953"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.190823"], ["updated_at", "2023-02-17 19:23:26.190823"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:26.191842"], ["updated_at", "2023-02-17 19:23:26.191842"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.192758"], ["updated_at", "2023-02-17 19:23:26.192758"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.193923"], ["updated_at", "2023-02-17 19:23:26.193923"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.195014"], ["updated_at", "2023-02-17 19:23:26.195014"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.195798"], ["updated_at", "2023-02-17 19:23:26.195798"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.196893"], ["updated_at", "2023-02-17 19:23:26.196893"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.198008"], ["updated_at", "2023-02-17 19:23:26.198008"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.199056"], ["updated_at", "2023-02-17 19:23:26.199056"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.199987"], ["updated_at", "2023-02-17 19:23:26.199987"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.200727"], ["updated_at", "2023-02-17 19:23:26.200727"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.201515"], ["updated_at", "2023-02-17 19:23:26.201515"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.202308"], ["updated_at", "2023-02-17 19:23:26.202308"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.203925"], ["updated_at", "2023-02-17 19:23:26.203925"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:26.216726"], ["updated_at", "2023-02-17 19:23:26.216726"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:26.217986"], ["updated_at", "2023-02-17 19:23:26.217986"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:26.218960"], ["updated_at", "2023-02-17 19:23:26.218960"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:26.220145"], ["updated_at", "2023-02-17 19:23:26.220145"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:26.220975"], ["updated_at", "2023-02-17 19:23:26.220975"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:26.221686"], ["updated_at", "2023-02-17 19:23:26.221686"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:26.222420"], ["updated_at", "2023-02-17 19:23:26.222420"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:26.223119"], ["updated_at", "2023-02-17 19:23:26.223119"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:26.223914"], ["updated_at", "2023-02-17 19:23:26.223914"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.224790"], ["updated_at", "2023-02-17 19:23:26.224790"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.225760"], ["updated_at", "2023-02-17 19:23:26.225760"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.226849"], ["updated_at", "2023-02-17 19:23:26.226849"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.227771"], ["updated_at", "2023-02-17 19:23:26.227771"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.228612"], ["updated_at", "2023-02-17 19:23:26.228612"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.229707"], ["updated_at", "2023-02-17 19:23:26.229707"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.230764"], ["updated_at", "2023-02-17 19:23:26.230764"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.231670"], ["updated_at", "2023-02-17 19:23:26.231670"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.232429"], ["updated_at", "2023-02-17 19:23:26.232429"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.233198"], ["updated_at", "2023-02-17 19:23:26.233198"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.233945"], ["updated_at", "2023-02-17 19:23:26.233945"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.234684"], ["updated_at", "2023-02-17 19:23:26.234684"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.251735"], ["updated_at", "2023-02-17 19:23:26.251735"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.253029"], ["updated_at", "2023-02-17 19:23:26.253029"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.254207"], ["updated_at", "2023-02-17 19:23:26.254207"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.254983"], ["updated_at", "2023-02-17 19:23:26.254983"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.255806"], ["updated_at", "2023-02-17 19:23:26.255806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.256595"], ["updated_at", "2023-02-17 19:23:26.256595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.257306"], ["updated_at", "2023-02-17 19:23:26.257306"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.258002"], ["updated_at", "2023-02-17 19:23:26.258002"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.258730"], ["updated_at", "2023-02-17 19:23:26.258730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.259703"], ["updated_at", "2023-02-17 19:23:26.259703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.260723"], ["updated_at", "2023-02-17 19:23:26.260723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.261498"], ["updated_at", "2023-02-17 19:23:26.261498"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.262197"], ["updated_at", "2023-02-17 19:23:26.262197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.263011"], ["updated_at", "2023-02-17 19:23:26.263011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.263804"], ["updated_at", "2023-02-17 19:23:26.263804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.264530"], ["updated_at", "2023-02-17 19:23:26.264530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.281044"], ["updated_at", "2023-02-17 19:23:26.281044"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.282109"], ["updated_at", "2023-02-17 19:23:26.282109"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.282938"], ["updated_at", "2023-02-17 19:23:26.282938"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.283686"], ["updated_at", "2023-02-17 19:23:26.283686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.284466"], ["updated_at", "2023-02-17 19:23:26.284466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.285215"], ["updated_at", "2023-02-17 19:23:26.285215"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.285922"], ["updated_at", "2023-02-17 19:23:26.285922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.286995"], ["updated_at", "2023-02-17 19:23:26.286995"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.287825"], ["updated_at", "2023-02-17 19:23:26.287825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.288556"], ["updated_at", "2023-02-17 19:23:26.288556"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.289264"], ["updated_at", "2023-02-17 19:23:26.289264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.290014"], ["updated_at", "2023-02-17 19:23:26.290014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.290719"], ["updated_at", "2023-02-17 19:23:26.290719"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.291398"], ["updated_at", "2023-02-17 19:23:26.291398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.292137"], ["updated_at", "2023-02-17 19:23:26.292137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.293162"], ["updated_at", "2023-02-17 19:23:26.293162"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.310108"], ["updated_at", "2023-02-17 19:23:26.310108"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.311112"], ["updated_at", "2023-02-17 19:23:26.311112"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.311845"], ["updated_at", "2023-02-17 19:23:26.311845"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.312706"], ["updated_at", "2023-02-17 19:23:26.312706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.313752"], ["updated_at", "2023-02-17 19:23:26.313752"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.314686"], ["updated_at", "2023-02-17 19:23:26.314686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.315421"], ["updated_at", "2023-02-17 19:23:26.315421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.316128"], ["updated_at", "2023-02-17 19:23:26.316128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.316821"], ["updated_at", "2023-02-17 19:23:26.316821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.317526"], ["updated_at", "2023-02-17 19:23:26.317526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.318256"], ["updated_at", "2023-02-17 19:23:26.318256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.318963"], ["updated_at", "2023-02-17 19:23:26.318963"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.319961"], ["updated_at", "2023-02-17 19:23:26.319961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.320971"], ["updated_at", "2023-02-17 19:23:26.320971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.321716"], ["updated_at", "2023-02-17 19:23:26.321716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.322428"], ["updated_at", "2023-02-17 19:23:26.322428"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.338985"], ["updated_at", "2023-02-17 19:23:26.338985"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.339982"], ["updated_at", "2023-02-17 19:23:26.339982"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.340727"], ["updated_at", "2023-02-17 19:23:26.340727"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.341615"], ["updated_at", "2023-02-17 19:23:26.341615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.342541"], ["updated_at", "2023-02-17 19:23:26.342541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.343286"], ["updated_at", "2023-02-17 19:23:26.343286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.344029"], ["updated_at", "2023-02-17 19:23:26.344029"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.344750"], ["updated_at", "2023-02-17 19:23:26.344750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.345448"], ["updated_at", "2023-02-17 19:23:26.345448"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.346239"], ["updated_at", "2023-02-17 19:23:26.346239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.346971"], ["updated_at", "2023-02-17 19:23:26.346971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.347698"], ["updated_at", "2023-02-17 19:23:26.347698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.348431"], ["updated_at", "2023-02-17 19:23:26.348431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.349156"], ["updated_at", "2023-02-17 19:23:26.349156"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.349873"], ["updated_at", "2023-02-17 19:23:26.349873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.350580"], ["updated_at", "2023-02-17 19:23:26.350580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.367200"], ["updated_at", "2023-02-17 19:23:26.367200"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.368218"], ["updated_at", "2023-02-17 19:23:26.368218"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.369002"], ["updated_at", "2023-02-17 19:23:26.369002"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.369851"], ["updated_at", "2023-02-17 19:23:26.369851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.370684"], ["updated_at", "2023-02-17 19:23:26.370684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.371466"], ["updated_at", "2023-02-17 19:23:26.371466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.372212"], ["updated_at", "2023-02-17 19:23:26.372212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.372920"], ["updated_at", "2023-02-17 19:23:26.372920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.373620"], ["updated_at", "2023-02-17 19:23:26.373620"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.374347"], ["updated_at", "2023-02-17 19:23:26.374347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.375085"], ["updated_at", "2023-02-17 19:23:26.375085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.376108"], ["updated_at", "2023-02-17 19:23:26.376108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.376950"], ["updated_at", "2023-02-17 19:23:26.376950"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.377657"], ["updated_at", "2023-02-17 19:23:26.377657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.378366"], ["updated_at", "2023-02-17 19:23:26.378366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.379160"], ["updated_at", "2023-02-17 19:23:26.379160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.395228"], ["updated_at", "2023-02-17 19:23:26.395228"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.396177"], ["updated_at", "2023-02-17 19:23:26.396177"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.396921"], ["updated_at", "2023-02-17 19:23:26.396921"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.397613"], ["updated_at", "2023-02-17 19:23:26.397613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.398395"], ["updated_at", "2023-02-17 19:23:26.398395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.399125"], ["updated_at", "2023-02-17 19:23:26.399125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.399772"], ["updated_at", "2023-02-17 19:23:26.399772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.400405"], ["updated_at", "2023-02-17 19:23:26.400405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.401138"], ["updated_at", "2023-02-17 19:23:26.401138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.401881"], ["updated_at", "2023-02-17 19:23:26.401881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.402561"], ["updated_at", "2023-02-17 19:23:26.402561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.403365"], ["updated_at", "2023-02-17 19:23:26.403365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.404103"], ["updated_at", "2023-02-17 19:23:26.404103"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.404814"], ["updated_at", "2023-02-17 19:23:26.404814"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.405552"], ["updated_at", "2023-02-17 19:23:26.405552"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.406265"], ["updated_at", "2023-02-17 19:23:26.406265"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:23:26 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:26.423893"], ["updated_at", "2023-02-17 19:23:26.423893"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:26.425472"], ["updated_at", "2023-02-17 19:23:26.425472"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:26.428647"], ["updated_at", "2023-02-17 19:23:26.428647"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:26.429908"], ["updated_at", "2023-02-17 19:23:26.429908"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:26.432685"], ["updated_at", "2023-02-17 19:23:26.432685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:26.434153"], ["updated_at", "2023-02-17 19:23:26.434153"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:26.436803"], ["updated_at", "2023-02-17 19:23:26.436803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:26.438445"], ["updated_at", "2023-02-17 19:23:26.438445"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:26.440159"], ["updated_at", "2023-02-17 19:23:26.440159"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:26.441614"], ["updated_at", "2023-02-17 19:23:26.441614"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:26.443497"], ["updated_at", "2023-02-17 19:23:26.443497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:26.444895"], ["updated_at", "2023-02-17 19:23:26.444895"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:26.446376"], ["updated_at", "2023-02-17 19:23:26.446376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:26.447563"], ["updated_at", "2023-02-17 19:23:26.447563"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:26.448954"], ["updated_at", "2023-02-17 19:23:26.448954"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:26.450156"], ["updated_at", "2023-02-17 19:23:26.450156"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:26.451554"], ["updated_at", "2023-02-17 19:23:26.451554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:26.452740"], ["updated_at", "2023-02-17 19:23:26.452740"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:26.454567"], ["updated_at", "2023-02-17 19:23:26.454567"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:26.455777"], ["updated_at", "2023-02-17 19:23:26.455777"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:26.457178"], ["updated_at", "2023-02-17 19:23:26.457178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:26.458352"], ["updated_at", "2023-02-17 19:23:26.458352"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:26.460038"], ["updated_at", "2023-02-17 19:23:26.460038"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:26.461393"], ["updated_at", "2023-02-17 19:23:26.461393"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:26.462779"], ["updated_at", "2023-02-17 19:23:26.462779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:26.464004"], ["updated_at", "2023-02-17 19:23:26.464004"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:26.465393"], ["updated_at", "2023-02-17 19:23:26.465393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:26.466557"], ["updated_at", "2023-02-17 19:23:26.466557"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:26.467868"], ["updated_at", "2023-02-17 19:23:26.467868"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:26.469011"], ["updated_at", "2023-02-17 19:23:26.469011"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:26.470730"], ["updated_at", "2023-02-17 19:23:26.470730"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:26.472017"], ["updated_at", "2023-02-17 19:23:26.472017"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:26.473431"], ["updated_at", "2023-02-17 19:23:26.473431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:26.474644"], ["updated_at", "2023-02-17 19:23:26.474644"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:26.476309"], ["updated_at", "2023-02-17 19:23:26.476309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:26.477642"], ["updated_at", "2023-02-17 19:23:26.477642"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:26.479046"], ["updated_at", "2023-02-17 19:23:26.479046"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:26.480240"], ["updated_at", "2023-02-17 19:23:26.480240"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:26.481605"], ["updated_at", "2023-02-17 19:23:26.481605"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:26.482805"], ["updated_at", "2023-02-17 19:23:26.482805"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:26.484192"], ["updated_at", "2023-02-17 19:23:26.484192"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:26.485378"], ["updated_at", "2023-02-17 19:23:26.485378"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:26.487117"], ["updated_at", "2023-02-17 19:23:26.487117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.488382"], ["updated_at", "2023-02-17 19:23:26.488382"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:26.489753"], ["updated_at", "2023-02-17 19:23:26.489753"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:26.490900"], ["updated_at", "2023-02-17 19:23:26.490900"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:26.492422"], ["updated_at", "2023-02-17 19:23:26.492422"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:26.493965"], ["updated_at", "2023-02-17 19:23:26.493965"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:26.495480"], ["updated_at", "2023-02-17 19:23:26.495480"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:26.496656"], ["updated_at", "2023-02-17 19:23:26.496656"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:26.497985"], ["updated_at", "2023-02-17 19:23:26.497985"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:26.499114"], ["updated_at", "2023-02-17 19:23:26.499114"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:26.500438"], ["updated_at", "2023-02-17 19:23:26.500438"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:26.501665"], ["updated_at", "2023-02-17 19:23:26.501665"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:26.503344"], ["updated_at", "2023-02-17 19:23:26.503344"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:26.504693"], ["updated_at", "2023-02-17 19:23:26.504693"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:26.506063"], ["updated_at", "2023-02-17 19:23:26.506063"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:26.507224"], ["updated_at", "2023-02-17 19:23:26.507224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:26.508548"], ["updated_at", "2023-02-17 19:23:26.508548"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:26.510086"], ["updated_at", "2023-02-17 19:23:26.510086"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:26.511571"], ["updated_at", "2023-02-17 19:23:26.511571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:26.512803"], ["updated_at", "2023-02-17 19:23:26.512803"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:26.514165"], ["updated_at", "2023-02-17 19:23:26.514165"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.515313"], ["updated_at", "2023-02-17 19:23:26.515313"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:26.516631"], ["updated_at", "2023-02-17 19:23:26.516631"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:26.517788"], ["updated_at", "2023-02-17 19:23:26.517788"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:26.519117"], ["updated_at", "2023-02-17 19:23:26.519117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:26.520657"], ["updated_at", "2023-02-17 19:23:26.520657"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:26.522119"], ["updated_at", "2023-02-17 19:23:26.522119"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.523307"], ["updated_at", "2023-02-17 19:23:26.523307"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:26.524614"], ["updated_at", "2023-02-17 19:23:26.524614"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:26.525944"], ["updated_at", "2023-02-17 19:23:26.525944"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:26.527623"], ["updated_at", "2023-02-17 19:23:26.527623"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:26.528828"], ["updated_at", "2023-02-17 19:23:26.528828"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:26.530274"], ["updated_at", "2023-02-17 19:23:26.530274"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:26.531428"], ["updated_at", "2023-02-17 19:23:26.531428"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:26.532802"], ["updated_at", "2023-02-17 19:23:26.532802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:26.533982"], ["updated_at", "2023-02-17 19:23:26.533982"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:26.535293"], ["updated_at", "2023-02-17 19:23:26.535293"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:26.536699"], ["updated_at", "2023-02-17 19:23:26.536699"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:26.538214"], ["updated_at", "2023-02-17 19:23:26.538214"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.539397"], ["updated_at", "2023-02-17 19:23:26.539397"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:26.540726"], ["updated_at", "2023-02-17 19:23:26.540726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:26.541966"], ["updated_at", "2023-02-17 19:23:26.541966"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:26.543763"], ["updated_at", "2023-02-17 19:23:26.543763"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:26.544992"], ["updated_at", "2023-02-17 19:23:26.544992"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:26.546438"], ["updated_at", "2023-02-17 19:23:26.546438"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:26.547602"], ["updated_at", "2023-02-17 19:23:26.547602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:26.548948"], ["updated_at", "2023-02-17 19:23:26.548948"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:26.550112"], ["updated_at", "2023-02-17 19:23:26.550112"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:26.551457"], ["updated_at", "2023-02-17 19:23:26.551457"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:26.552619"], ["updated_at", "2023-02-17 19:23:26.552619"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:26.554369"], ["updated_at", "2023-02-17 19:23:26.554369"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:26.555544"], ["updated_at", "2023-02-17 19:23:26.555544"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:26.556870"], ["updated_at", "2023-02-17 19:23:26.556870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:26.557964"], ["updated_at", "2023-02-17 19:23:26.557964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:26.559547"], ["updated_at", "2023-02-17 19:23:26.559547"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:26.561030"], ["updated_at", "2023-02-17 19:23:26.561030"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:26.562475"], ["updated_at", "2023-02-17 19:23:26.562475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:26.563601"], ["updated_at", "2023-02-17 19:23:26.563601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:26.564595"], ["updated_at", "2023-02-17 19:23:26.564595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:26.576178"], ["updated_at", "2023-02-17 19:23:26.576178"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:26.577757"], ["updated_at", "2023-02-17 19:23:26.577757"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:26.578774"], ["updated_at", "2023-02-17 19:23:26.578774"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.579626"], ["updated_at", "2023-02-17 19:23:26.579626"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.580371"], ["updated_at", "2023-02-17 19:23:26.580371"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.581072"], ["updated_at", "2023-02-17 19:23:26.581072"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.581749"], ["updated_at", "2023-02-17 19:23:26.581749"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.582431"], ["updated_at", "2023-02-17 19:23:26.582431"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:26.583208"], ["updated_at", "2023-02-17 19:23:26.583208"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.584049"], ["updated_at", "2023-02-17 19:23:26.584049"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.584850"], ["updated_at", "2023-02-17 19:23:26.584850"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.585608"], ["updated_at", "2023-02-17 19:23:26.585608"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.586580"], ["updated_at", "2023-02-17 19:23:26.586580"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.587420"], ["updated_at", "2023-02-17 19:23:26.587420"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.588152"], ["updated_at", "2023-02-17 19:23:26.588152"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.588877"], ["updated_at", "2023-02-17 19:23:26.588877"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.589604"], ["updated_at", "2023-02-17 19:23:26.589604"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.590319"], ["updated_at", "2023-02-17 19:23:26.590319"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.591039"], ["updated_at", "2023-02-17 19:23:26.591039"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.591767"], ["updated_at", "2023-02-17 19:23:26.591767"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.592707"], ["updated_at", "2023-02-17 19:23:26.592707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:26.604865"], ["updated_at", "2023-02-17 19:23:26.604865"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:26.606152"], ["updated_at", "2023-02-17 19:23:26.606152"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:26.607054"], ["updated_at", "2023-02-17 19:23:26.607054"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:26.607886"], ["updated_at", "2023-02-17 19:23:26.607886"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:26.608760"], ["updated_at", "2023-02-17 19:23:26.608760"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:26.609810"], ["updated_at", "2023-02-17 19:23:26.609810"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:26.610579"], ["updated_at", "2023-02-17 19:23:26.610579"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:26.611278"], ["updated_at", "2023-02-17 19:23:26.611278"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:26.612024"], ["updated_at", "2023-02-17 19:23:26.612024"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.612889"], ["updated_at", "2023-02-17 19:23:26.612889"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.613685"], ["updated_at", "2023-02-17 19:23:26.613685"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.614424"], ["updated_at", "2023-02-17 19:23:26.614424"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.615137"], ["updated_at", "2023-02-17 19:23:26.615137"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.615881"], ["updated_at", "2023-02-17 19:23:26.615881"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.616595"], ["updated_at", "2023-02-17 19:23:26.616595"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.617368"], ["updated_at", "2023-02-17 19:23:26.617368"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.618086"], ["updated_at", "2023-02-17 19:23:26.618086"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.618832"], ["updated_at", "2023-02-17 19:23:26.618832"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.619748"], ["updated_at", "2023-02-17 19:23:26.619748"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.620725"], ["updated_at", "2023-02-17 19:23:26.620725"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:26.621507"], ["updated_at", "2023-02-17 19:23:26.621507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.637967"], ["updated_at", "2023-02-17 19:23:26.637967"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.639097"], ["updated_at", "2023-02-17 19:23:26.639097"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.639980"], ["updated_at", "2023-02-17 19:23:26.639980"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.640705"], ["updated_at", "2023-02-17 19:23:26.640705"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.641500"], ["updated_at", "2023-02-17 19:23:26.641500"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.642387"], ["updated_at", "2023-02-17 19:23:26.642387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.643232"], ["updated_at", "2023-02-17 19:23:26.643232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.643977"], ["updated_at", "2023-02-17 19:23:26.643977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.644715"], ["updated_at", "2023-02-17 19:23:26.644715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.645453"], ["updated_at", "2023-02-17 19:23:26.645453"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.646146"], ["updated_at", "2023-02-17 19:23:26.646146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.646855"], ["updated_at", "2023-02-17 19:23:26.646855"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.647581"], ["updated_at", "2023-02-17 19:23:26.647581"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.648289"], ["updated_at", "2023-02-17 19:23:26.648289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.649028"], ["updated_at", "2023-02-17 19:23:26.649028"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:26.649757"], ["updated_at", "2023-02-17 19:23:26.649757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.665576"], ["updated_at", "2023-02-17 19:23:26.665576"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.666634"], ["updated_at", "2023-02-17 19:23:26.666634"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.667380"], ["updated_at", "2023-02-17 19:23:26.667380"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.668097"], ["updated_at", "2023-02-17 19:23:26.668097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.668848"], ["updated_at", "2023-02-17 19:23:26.668848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.669679"], ["updated_at", "2023-02-17 19:23:26.669679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.670421"], ["updated_at", "2023-02-17 19:23:26.670421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.671128"], ["updated_at", "2023-02-17 19:23:26.671128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.671838"], ["updated_at", "2023-02-17 19:23:26.671838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.672538"], ["updated_at", "2023-02-17 19:23:26.672538"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.673242"], ["updated_at", "2023-02-17 19:23:26.673242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.673962"], ["updated_at", "2023-02-17 19:23:26.673962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.674708"], ["updated_at", "2023-02-17 19:23:26.674708"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.675483"], ["updated_at", "2023-02-17 19:23:26.675483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.676214"], ["updated_at", "2023-02-17 19:23:26.676214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:26.676946"], ["updated_at", "2023-02-17 19:23:26.676946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.692682"], ["updated_at", "2023-02-17 19:23:26.692682"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.693700"], ["updated_at", "2023-02-17 19:23:26.693700"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.694497"], ["updated_at", "2023-02-17 19:23:26.694497"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.695209"], ["updated_at", "2023-02-17 19:23:26.695209"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.695959"], ["updated_at", "2023-02-17 19:23:26.695959"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.696691"], ["updated_at", "2023-02-17 19:23:26.696691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.697417"], ["updated_at", "2023-02-17 19:23:26.697417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.698126"], ["updated_at", "2023-02-17 19:23:26.698126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.698876"], ["updated_at", "2023-02-17 19:23:26.698876"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.699588"], ["updated_at", "2023-02-17 19:23:26.699588"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.700311"], ["updated_at", "2023-02-17 19:23:26.700311"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.701031"], ["updated_at", "2023-02-17 19:23:26.701031"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.701750"], ["updated_at", "2023-02-17 19:23:26.701750"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.702453"], ["updated_at", "2023-02-17 19:23:26.702453"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.703253"], ["updated_at", "2023-02-17 19:23:26.703253"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:26.703986"], ["updated_at", "2023-02-17 19:23:26.703986"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.719663"], ["updated_at", "2023-02-17 19:23:26.719663"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.720666"], ["updated_at", "2023-02-17 19:23:26.720666"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.721442"], ["updated_at", "2023-02-17 19:23:26.721442"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.722153"], ["updated_at", "2023-02-17 19:23:26.722153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.722905"], ["updated_at", "2023-02-17 19:23:26.722905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.723644"], ["updated_at", "2023-02-17 19:23:26.723644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.724384"], ["updated_at", "2023-02-17 19:23:26.724384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.725120"], ["updated_at", "2023-02-17 19:23:26.725120"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.725909"], ["updated_at", "2023-02-17 19:23:26.725909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.726675"], ["updated_at", "2023-02-17 19:23:26.726675"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.727391"], ["updated_at", "2023-02-17 19:23:26.727391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.728100"], ["updated_at", "2023-02-17 19:23:26.728100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.728803"], ["updated_at", "2023-02-17 19:23:26.728803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.729514"], ["updated_at", "2023-02-17 19:23:26.729514"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.730210"], ["updated_at", "2023-02-17 19:23:26.730210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:26.730908"], ["updated_at", "2023-02-17 19:23:26.730908"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.748245"], ["updated_at", "2023-02-17 19:23:26.748245"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.749322"], ["updated_at", "2023-02-17 19:23:26.749322"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.750317"], ["updated_at", "2023-02-17 19:23:26.750317"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.751126"], ["updated_at", "2023-02-17 19:23:26.751126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.751920"], ["updated_at", "2023-02-17 19:23:26.751920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.752917"], ["updated_at", "2023-02-17 19:23:26.752917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.753712"], ["updated_at", "2023-02-17 19:23:26.753712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.754619"], ["updated_at", "2023-02-17 19:23:26.754619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.755561"], ["updated_at", "2023-02-17 19:23:26.755561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.756479"], ["updated_at", "2023-02-17 19:23:26.756479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.757419"], ["updated_at", "2023-02-17 19:23:26.757419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.758346"], ["updated_at", "2023-02-17 19:23:26.758346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.759345"], ["updated_at", "2023-02-17 19:23:26.759345"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.760387"], ["updated_at", "2023-02-17 19:23:26.760387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.761611"], ["updated_at", "2023-02-17 19:23:26.761611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:26.762611"], ["updated_at", "2023-02-17 19:23:26.762611"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:26.781705"], ["updated_at", "2023-02-17 19:23:26.781705"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:26.782674"], ["updated_at", "2023-02-17 19:23:26.782674"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.783593"], ["updated_at", "2023-02-17 19:23:26.783593"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.784418"], ["updated_at", "2023-02-17 19:23:26.784418"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.785436"], ["updated_at", "2023-02-17 19:23:26.785436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.786490"], ["updated_at", "2023-02-17 19:23:26.786490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.787456"], ["updated_at", "2023-02-17 19:23:26.787456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.788371"], ["updated_at", "2023-02-17 19:23:26.788371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.789268"], ["updated_at", "2023-02-17 19:23:26.789268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.790205"], ["updated_at", "2023-02-17 19:23:26.790205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.791105"], ["updated_at", "2023-02-17 19:23:26.791105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.792005"], ["updated_at", "2023-02-17 19:23:26.792005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.792874"], ["updated_at", "2023-02-17 19:23:26.792874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.793824"], ["updated_at", "2023-02-17 19:23:26.793824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.794750"], ["updated_at", "2023-02-17 19:23:26.794750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:26.795734"], ["updated_at", "2023-02-17 19:23:26.795734"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:23:26 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:26.805611"], ["updated_at", "2023-02-17 19:23:26.805611"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:26.807128"], ["updated_at", "2023-02-17 19:23:26.807128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:26.810223"], ["updated_at", "2023-02-17 19:23:26.810223"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:26.811803"], ["updated_at", "2023-02-17 19:23:26.811803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:26.814938"], ["updated_at", "2023-02-17 19:23:26.814938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:26.816189"], ["updated_at", "2023-02-17 19:23:26.816189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:26.818399"], ["updated_at", "2023-02-17 19:23:26.818399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:26.820203"], ["updated_at", "2023-02-17 19:23:26.820203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:26.821973"], ["updated_at", "2023-02-17 19:23:26.821973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:26.823402"], ["updated_at", "2023-02-17 19:23:26.823402"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:26.824949"], ["updated_at", "2023-02-17 19:23:26.824949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:26.826326"], ["updated_at", "2023-02-17 19:23:26.826326"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:26.828101"], ["updated_at", "2023-02-17 19:23:26.828101"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:26.829729"], ["updated_at", "2023-02-17 19:23:26.829729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:26.831279"], ["updated_at", "2023-02-17 19:23:26.831279"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:26.832599"], ["updated_at", "2023-02-17 19:23:26.832599"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:26.834117"], ["updated_at", "2023-02-17 19:23:26.834117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:26.835426"], ["updated_at", "2023-02-17 19:23:26.835426"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:26.837216"], ["updated_at", "2023-02-17 19:23:26.837216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:26.838546"], ["updated_at", "2023-02-17 19:23:26.838546"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:26.839980"], ["updated_at", "2023-02-17 19:23:26.839980"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:26.841296"], ["updated_at", "2023-02-17 19:23:26.841296"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:26.842822"], ["updated_at", "2023-02-17 19:23:26.842822"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:26.844335"], ["updated_at", "2023-02-17 19:23:26.844335"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:26.846101"], ["updated_at", "2023-02-17 19:23:26.846101"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:26.847572"], ["updated_at", "2023-02-17 19:23:26.847572"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:26.849037"], ["updated_at", "2023-02-17 19:23:26.849037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:26.850362"], ["updated_at", "2023-02-17 19:23:26.850362"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:26.851879"], ["updated_at", "2023-02-17 19:23:26.851879"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:26.853425"], ["updated_at", "2023-02-17 19:23:26.853425"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:26.855062"], ["updated_at", "2023-02-17 19:23:26.855062"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:26.856355"], ["updated_at", "2023-02-17 19:23:26.856355"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:26.857876"], ["updated_at", "2023-02-17 19:23:26.857876"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:26.859169"], ["updated_at", "2023-02-17 19:23:26.859169"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:26.860681"], ["updated_at", "2023-02-17 19:23:26.860681"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:26.862418"], ["updated_at", "2023-02-17 19:23:26.862418"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:26.864075"], ["updated_at", "2023-02-17 19:23:26.864075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:26.865396"], ["updated_at", "2023-02-17 19:23:26.865396"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:26.866902"], ["updated_at", "2023-02-17 19:23:26.866902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:26.868202"], ["updated_at", "2023-02-17 19:23:26.868202"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:26.870297"], ["updated_at", "2023-02-17 19:23:26.870297"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:26.872053"], ["updated_at", "2023-02-17 19:23:26.872053"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:26.873565"], ["updated_at", "2023-02-17 19:23:26.873565"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.874864"], ["updated_at", "2023-02-17 19:23:26.874864"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:26.876442"], ["updated_at", "2023-02-17 19:23:26.876442"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:26.877773"], ["updated_at", "2023-02-17 19:23:26.877773"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:26.879760"], ["updated_at", "2023-02-17 19:23:26.879760"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:26.881169"], ["updated_at", "2023-02-17 19:23:26.881169"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:26.882679"], ["updated_at", "2023-02-17 19:23:26.882679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:26.884002"], ["updated_at", "2023-02-17 19:23:26.884002"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:26.885526"], ["updated_at", "2023-02-17 19:23:26.885526"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:26.887291"], ["updated_at", "2023-02-17 19:23:26.887291"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:26.888841"], ["updated_at", "2023-02-17 19:23:26.888841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:26.890175"], ["updated_at", "2023-02-17 19:23:26.890175"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:26.891699"], ["updated_at", "2023-02-17 19:23:26.891699"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:26.893076"], ["updated_at", "2023-02-17 19:23:26.893076"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:26.894597"], ["updated_at", "2023-02-17 19:23:26.894597"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:26.896341"], ["updated_at", "2023-02-17 19:23:26.896341"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:26.897938"], ["updated_at", "2023-02-17 19:23:26.897938"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:26.899284"], ["updated_at", "2023-02-17 19:23:26.899284"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:26.900783"], ["updated_at", "2023-02-17 19:23:26.900783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:26.902111"], ["updated_at", "2023-02-17 19:23:26.902111"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:26.903934"], ["updated_at", "2023-02-17 19:23:26.903934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.905260"], ["updated_at", "2023-02-17 19:23:26.905260"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:26.906822"], ["updated_at", "2023-02-17 19:23:26.906822"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:26.908116"], ["updated_at", "2023-02-17 19:23:26.908116"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:26.909743"], ["updated_at", "2023-02-17 19:23:26.909743"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:26.911157"], ["updated_at", "2023-02-17 19:23:26.911157"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:26.912967"], ["updated_at", "2023-02-17 19:23:26.912967"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.914357"], ["updated_at", "2023-02-17 19:23:26.914357"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:26.915871"], ["updated_at", "2023-02-17 19:23:26.915871"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:26.917189"], ["updated_at", "2023-02-17 19:23:26.917189"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:26.918704"], ["updated_at", "2023-02-17 19:23:26.918704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:26.920146"], ["updated_at", "2023-02-17 19:23:26.920146"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:26.921664"], ["updated_at", "2023-02-17 19:23:26.921664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:26.922968"], ["updated_at", "2023-02-17 19:23:26.922968"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:26.924462"], ["updated_at", "2023-02-17 19:23:26.924462"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:26.925903"], ["updated_at", "2023-02-17 19:23:26.925903"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:26.927580"], ["updated_at", "2023-02-17 19:23:26.927580"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:26.928948"], ["updated_at", "2023-02-17 19:23:26.928948"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:26.930460"], ["updated_at", "2023-02-17 19:23:26.930460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:26.931764"], ["updated_at", "2023-02-17 19:23:26.931764"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:26.933235"], ["updated_at", "2023-02-17 19:23:26.933235"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:26.934516"], ["updated_at", "2023-02-17 19:23:26.934516"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:26.935997"], ["updated_at", "2023-02-17 19:23:26.935997"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:26.937354"], ["updated_at", "2023-02-17 19:23:26.937354"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:26.938843"], ["updated_at", "2023-02-17 19:23:26.938843"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:26.940077"], ["updated_at", "2023-02-17 19:23:26.940077"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:26.941572"], ["updated_at", "2023-02-17 19:23:26.941572"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:26.943331"], ["updated_at", "2023-02-17 19:23:26.943331"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:26.945131"], ["updated_at", "2023-02-17 19:23:26.945131"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:26.946877"], ["updated_at", "2023-02-17 19:23:26.946877"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:26.948386"], ["updated_at", "2023-02-17 19:23:26.948386"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:26.949707"], ["updated_at", "2023-02-17 19:23:26.949707"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:26.951232"], ["updated_at", "2023-02-17 19:23:26.951232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:26.952464"], ["updated_at", "2023-02-17 19:23:26.952464"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:26.954233"], ["updated_at", "2023-02-17 19:23:26.954233"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:26.963055"], ["updated_at", "2023-02-17 19:23:26.963055"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:26.964600"], ["updated_at", "2023-02-17 19:23:26.964600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:26.965744"], ["updated_at", "2023-02-17 19:23:26.965744"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:26.966826"], ["updated_at", "2023-02-17 19:23:26.966826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:26.979064"], ["updated_at", "2023-02-17 19:23:26.979064"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:26.980363"], ["updated_at", "2023-02-17 19:23:26.980363"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:26.981347"], ["updated_at", "2023-02-17 19:23:26.981347"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.982211"], ["updated_at", "2023-02-17 19:23:26.982211"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.983006"], ["updated_at", "2023-02-17 19:23:26.983006"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.983805"], ["updated_at", "2023-02-17 19:23:26.983805"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.984641"], ["updated_at", "2023-02-17 19:23:26.984641"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:26.985353"], ["updated_at", "2023-02-17 19:23:26.985353"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:26.986123"], ["updated_at", "2023-02-17 19:23:26.986123"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.987100"], ["updated_at", "2023-02-17 19:23:26.987100"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.987935"], ["updated_at", "2023-02-17 19:23:26.987935"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.988694"], ["updated_at", "2023-02-17 19:23:26.988694"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.989522"], ["updated_at", "2023-02-17 19:23:26.989522"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.990317"], ["updated_at", "2023-02-17 19:23:26.990317"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.991034"], ["updated_at", "2023-02-17 19:23:26.991034"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.992013"], ["updated_at", "2023-02-17 19:23:26.992013"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.993044"], ["updated_at", "2023-02-17 19:23:26.993044"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.994037"], ["updated_at", "2023-02-17 19:23:26.994037"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.995076"], ["updated_at", "2023-02-17 19:23:26.995076"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.996219"], ["updated_at", "2023-02-17 19:23:26.996219"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:26.997235"], ["updated_at", "2023-02-17 19:23:26.997235"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:27.008971"], ["updated_at", "2023-02-17 19:23:27.008971"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:27.010413"], ["updated_at", "2023-02-17 19:23:27.010413"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:27.011396"], ["updated_at", "2023-02-17 19:23:27.011396"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.012296"], ["updated_at", "2023-02-17 19:23:27.012296"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.013098"], ["updated_at", "2023-02-17 19:23:27.013098"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.013812"], ["updated_at", "2023-02-17 19:23:27.013812"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.014530"], ["updated_at", "2023-02-17 19:23:27.014530"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.015246"], ["updated_at", "2023-02-17 19:23:27.015246"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:27.016041"], ["updated_at", "2023-02-17 19:23:27.016041"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.016941"], ["updated_at", "2023-02-17 19:23:27.016941"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.017779"], ["updated_at", "2023-02-17 19:23:27.017779"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.018521"], ["updated_at", "2023-02-17 19:23:27.018521"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.019274"], ["updated_at", "2023-02-17 19:23:27.019274"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.020154"], ["updated_at", "2023-02-17 19:23:27.020154"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.020941"], ["updated_at", "2023-02-17 19:23:27.020941"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.021689"], ["updated_at", "2023-02-17 19:23:27.021689"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.022423"], ["updated_at", "2023-02-17 19:23:27.022423"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.023167"], ["updated_at", "2023-02-17 19:23:27.023167"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.023972"], ["updated_at", "2023-02-17 19:23:27.023972"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.024857"], ["updated_at", "2023-02-17 19:23:27.024857"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.026002"], ["updated_at", "2023-02-17 19:23:27.026002"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.044788"], ["updated_at", "2023-02-17 19:23:27.044788"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.045945"], ["updated_at", "2023-02-17 19:23:27.045945"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.046780"], ["updated_at", "2023-02-17 19:23:27.046780"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.047619"], ["updated_at", "2023-02-17 19:23:27.047619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.048481"], ["updated_at", "2023-02-17 19:23:27.048481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.049289"], ["updated_at", "2023-02-17 19:23:27.049289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.050006"], ["updated_at", "2023-02-17 19:23:27.050006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.050693"], ["updated_at", "2023-02-17 19:23:27.050693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.051406"], ["updated_at", "2023-02-17 19:23:27.051406"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.052203"], ["updated_at", "2023-02-17 19:23:27.052203"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.053520"], ["updated_at", "2023-02-17 19:23:27.053520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.054389"], ["updated_at", "2023-02-17 19:23:27.054389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.055139"], ["updated_at", "2023-02-17 19:23:27.055139"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.055860"], ["updated_at", "2023-02-17 19:23:27.055860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.056549"], ["updated_at", "2023-02-17 19:23:27.056549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.057553"], ["updated_at", "2023-02-17 19:23:27.057553"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.075898"], ["updated_at", "2023-02-17 19:23:27.075898"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.077117"], ["updated_at", "2023-02-17 19:23:27.077117"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.078295"], ["updated_at", "2023-02-17 19:23:27.078295"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.079058"], ["updated_at", "2023-02-17 19:23:27.079058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.079817"], ["updated_at", "2023-02-17 19:23:27.079817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.080570"], ["updated_at", "2023-02-17 19:23:27.080570"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.081290"], ["updated_at", "2023-02-17 19:23:27.081290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.082046"], ["updated_at", "2023-02-17 19:23:27.082046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.082856"], ["updated_at", "2023-02-17 19:23:27.082856"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.083600"], ["updated_at", "2023-02-17 19:23:27.083600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.084312"], ["updated_at", "2023-02-17 19:23:27.084312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.085048"], ["updated_at", "2023-02-17 19:23:27.085048"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.085745"], ["updated_at", "2023-02-17 19:23:27.085745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.086730"], ["updated_at", "2023-02-17 19:23:27.086730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.087472"], ["updated_at", "2023-02-17 19:23:27.087472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.088296"], ["updated_at", "2023-02-17 19:23:27.088296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.105201"], ["updated_at", "2023-02-17 19:23:27.105201"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.106251"], ["updated_at", "2023-02-17 19:23:27.106251"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.107158"], ["updated_at", "2023-02-17 19:23:27.107158"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.107880"], ["updated_at", "2023-02-17 19:23:27.107880"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.108938"], ["updated_at", "2023-02-17 19:23:27.108938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.110059"], ["updated_at", "2023-02-17 19:23:27.110059"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.111281"], ["updated_at", "2023-02-17 19:23:27.111281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.112273"], ["updated_at", "2023-02-17 19:23:27.112273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.113216"], ["updated_at", "2023-02-17 19:23:27.113216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.114049"], ["updated_at", "2023-02-17 19:23:27.114049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.114785"], ["updated_at", "2023-02-17 19:23:27.114785"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.115473"], ["updated_at", "2023-02-17 19:23:27.115473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.116175"], ["updated_at", "2023-02-17 19:23:27.116175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.116874"], ["updated_at", "2023-02-17 19:23:27.116874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.117563"], ["updated_at", "2023-02-17 19:23:27.117563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.118370"], ["updated_at", "2023-02-17 19:23:27.118370"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.135793"], ["updated_at", "2023-02-17 19:23:27.135793"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.137117"], ["updated_at", "2023-02-17 19:23:27.137117"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.137929"], ["updated_at", "2023-02-17 19:23:27.137929"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.138648"], ["updated_at", "2023-02-17 19:23:27.138648"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.139398"], ["updated_at", "2023-02-17 19:23:27.139398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.140220"], ["updated_at", "2023-02-17 19:23:27.140220"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.141029"], ["updated_at", "2023-02-17 19:23:27.141029"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.141862"], ["updated_at", "2023-02-17 19:23:27.141862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.142855"], ["updated_at", "2023-02-17 19:23:27.142855"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.143917"], ["updated_at", "2023-02-17 19:23:27.143917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.145153"], ["updated_at", "2023-02-17 19:23:27.145153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.145987"], ["updated_at", "2023-02-17 19:23:27.145987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.146698"], ["updated_at", "2023-02-17 19:23:27.146698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.147438"], ["updated_at", "2023-02-17 19:23:27.147438"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.148152"], ["updated_at", "2023-02-17 19:23:27.148152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.148856"], ["updated_at", "2023-02-17 19:23:27.148856"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.165991"], ["updated_at", "2023-02-17 19:23:27.165991"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.166994"], ["updated_at", "2023-02-17 19:23:27.166994"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.167755"], ["updated_at", "2023-02-17 19:23:27.167755"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.168435"], ["updated_at", "2023-02-17 19:23:27.168435"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.169206"], ["updated_at", "2023-02-17 19:23:27.169206"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.170231"], ["updated_at", "2023-02-17 19:23:27.170231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.170958"], ["updated_at", "2023-02-17 19:23:27.170958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.171668"], ["updated_at", "2023-02-17 19:23:27.171668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.172355"], ["updated_at", "2023-02-17 19:23:27.172355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.173058"], ["updated_at", "2023-02-17 19:23:27.173058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.173879"], ["updated_at", "2023-02-17 19:23:27.173879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.174590"], ["updated_at", "2023-02-17 19:23:27.174590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.175303"], ["updated_at", "2023-02-17 19:23:27.175303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.176127"], ["updated_at", "2023-02-17 19:23:27.176127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.176860"], ["updated_at", "2023-02-17 19:23:27.176860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.177560"], ["updated_at", "2023-02-17 19:23:27.177560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.194529"], ["updated_at", "2023-02-17 19:23:27.194529"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.195730"], ["updated_at", "2023-02-17 19:23:27.195730"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.196520"], ["updated_at", "2023-02-17 19:23:27.196520"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.197248"], ["updated_at", "2023-02-17 19:23:27.197248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.197989"], ["updated_at", "2023-02-17 19:23:27.197989"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.198706"], ["updated_at", "2023-02-17 19:23:27.198706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.199563"], ["updated_at", "2023-02-17 19:23:27.199563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.200442"], ["updated_at", "2023-02-17 19:23:27.200442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.201197"], ["updated_at", "2023-02-17 19:23:27.201197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.201919"], ["updated_at", "2023-02-17 19:23:27.201919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.202761"], ["updated_at", "2023-02-17 19:23:27.202761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.203853"], ["updated_at", "2023-02-17 19:23:27.203853"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.204616"], ["updated_at", "2023-02-17 19:23:27.204616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.205348"], ["updated_at", "2023-02-17 19:23:27.205348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.206056"], ["updated_at", "2023-02-17 19:23:27.206056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.206761"], ["updated_at", "2023-02-17 19:23:27.206761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:23:27 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:27.216108"], ["updated_at", "2023-02-17 19:23:27.216108"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:27.217559"], ["updated_at", "2023-02-17 19:23:27.217559"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:27.220790"], ["updated_at", "2023-02-17 19:23:27.220790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:27.222011"], ["updated_at", "2023-02-17 19:23:27.222011"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:27.224854"], ["updated_at", "2023-02-17 19:23:27.224854"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:27.226406"], ["updated_at", "2023-02-17 19:23:27.226406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:27.228852"], ["updated_at", "2023-02-17 19:23:27.228852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:27.230303"], ["updated_at", "2023-02-17 19:23:27.230303"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:27.231854"], ["updated_at", "2023-02-17 19:23:27.231854"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:27.233341"], ["updated_at", "2023-02-17 19:23:27.233341"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:27.234752"], ["updated_at", "2023-02-17 19:23:27.234752"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:27.235915"], ["updated_at", "2023-02-17 19:23:27.235915"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:27.237647"], ["updated_at", "2023-02-17 19:23:27.237647"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:27.238849"], ["updated_at", "2023-02-17 19:23:27.238849"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:27.240299"], ["updated_at", "2023-02-17 19:23:27.240299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:27.241590"], ["updated_at", "2023-02-17 19:23:27.241590"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:27.243328"], ["updated_at", "2023-02-17 19:23:27.243328"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:27.244547"], ["updated_at", "2023-02-17 19:23:27.244547"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:27.245905"], ["updated_at", "2023-02-17 19:23:27.245905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:27.247113"], ["updated_at", "2023-02-17 19:23:27.247113"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:27.248513"], ["updated_at", "2023-02-17 19:23:27.248513"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:27.249699"], ["updated_at", "2023-02-17 19:23:27.249699"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:27.251052"], ["updated_at", "2023-02-17 19:23:27.251052"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:27.252217"], ["updated_at", "2023-02-17 19:23:27.252217"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:27.253735"], ["updated_at", "2023-02-17 19:23:27.253735"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:27.254944"], ["updated_at", "2023-02-17 19:23:27.254944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:27.256346"], ["updated_at", "2023-02-17 19:23:27.256346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:27.257544"], ["updated_at", "2023-02-17 19:23:27.257544"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:27.258909"], ["updated_at", "2023-02-17 19:23:27.258909"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:27.260115"], ["updated_at", "2023-02-17 19:23:27.260115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:27.261509"], ["updated_at", "2023-02-17 19:23:27.261509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:27.262678"], ["updated_at", "2023-02-17 19:23:27.262678"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:27.264018"], ["updated_at", "2023-02-17 19:23:27.264018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:27.265179"], ["updated_at", "2023-02-17 19:23:27.265179"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:27.266578"], ["updated_at", "2023-02-17 19:23:27.266578"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:27.267756"], ["updated_at", "2023-02-17 19:23:27.267756"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:27.269100"], ["updated_at", "2023-02-17 19:23:27.269100"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:27.270430"], ["updated_at", "2023-02-17 19:23:27.270430"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:27.271788"], ["updated_at", "2023-02-17 19:23:27.271788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:27.272948"], ["updated_at", "2023-02-17 19:23:27.272948"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:27.274295"], ["updated_at", "2023-02-17 19:23:27.274295"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:27.275585"], ["updated_at", "2023-02-17 19:23:27.275585"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:27.277087"], ["updated_at", "2023-02-17 19:23:27.277087"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:27.278270"], ["updated_at", "2023-02-17 19:23:27.278270"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:27.279615"], ["updated_at", "2023-02-17 19:23:27.279615"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:27.280793"], ["updated_at", "2023-02-17 19:23:27.280793"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:27.282161"], ["updated_at", "2023-02-17 19:23:27.282161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:27.283322"], ["updated_at", "2023-02-17 19:23:27.283322"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:27.284652"], ["updated_at", "2023-02-17 19:23:27.284652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:27.285814"], ["updated_at", "2023-02-17 19:23:27.285814"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:27.287321"], ["updated_at", "2023-02-17 19:23:27.287321"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:27.288521"], ["updated_at", "2023-02-17 19:23:27.288521"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:27.289855"], ["updated_at", "2023-02-17 19:23:27.289855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:27.291027"], ["updated_at", "2023-02-17 19:23:27.291027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:27.292617"], ["updated_at", "2023-02-17 19:23:27.292617"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:27.293930"], ["updated_at", "2023-02-17 19:23:27.293930"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:27.295308"], ["updated_at", "2023-02-17 19:23:27.295308"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:27.296500"], ["updated_at", "2023-02-17 19:23:27.296500"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:27.297845"], ["updated_at", "2023-02-17 19:23:27.297845"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:27.299010"], ["updated_at", "2023-02-17 19:23:27.299010"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:27.300375"], ["updated_at", "2023-02-17 19:23:27.300375"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:27.301545"], ["updated_at", "2023-02-17 19:23:27.301545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:27.302977"], ["updated_at", "2023-02-17 19:23:27.302977"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:27.304198"], ["updated_at", "2023-02-17 19:23:27.304198"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:27.305586"], ["updated_at", "2023-02-17 19:23:27.305586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:27.306778"], ["updated_at", "2023-02-17 19:23:27.306778"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:27.308178"], ["updated_at", "2023-02-17 19:23:27.308178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:27.309601"], ["updated_at", "2023-02-17 19:23:27.309601"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:27.311030"], ["updated_at", "2023-02-17 19:23:27.311030"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:27.312223"], ["updated_at", "2023-02-17 19:23:27.312223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:27.313606"], ["updated_at", "2023-02-17 19:23:27.313606"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:27.314764"], ["updated_at", "2023-02-17 19:23:27.314764"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:27.316077"], ["updated_at", "2023-02-17 19:23:27.316077"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:27.317218"], ["updated_at", "2023-02-17 19:23:27.317218"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:27.318540"], ["updated_at", "2023-02-17 19:23:27.318540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:27.319762"], ["updated_at", "2023-02-17 19:23:27.319762"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:27.321154"], ["updated_at", "2023-02-17 19:23:27.321154"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:27.322382"], ["updated_at", "2023-02-17 19:23:27.322382"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:27.323717"], ["updated_at", "2023-02-17 19:23:27.323717"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:27.324862"], ["updated_at", "2023-02-17 19:23:27.324862"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:27.326625"], ["updated_at", "2023-02-17 19:23:27.326625"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:27.328194"], ["updated_at", "2023-02-17 19:23:27.328194"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:27.329947"], ["updated_at", "2023-02-17 19:23:27.329947"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:27.331222"], ["updated_at", "2023-02-17 19:23:27.331222"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:27.332611"], ["updated_at", "2023-02-17 19:23:27.332611"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:27.333803"], ["updated_at", "2023-02-17 19:23:27.333803"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:27.335140"], ["updated_at", "2023-02-17 19:23:27.335140"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:27.336390"], ["updated_at", "2023-02-17 19:23:27.336390"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:27.337898"], ["updated_at", "2023-02-17 19:23:27.337898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:27.339069"], ["updated_at", "2023-02-17 19:23:27.339069"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:27.340438"], ["updated_at", "2023-02-17 19:23:27.340438"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:27.341619"], ["updated_at", "2023-02-17 19:23:27.341619"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:27.343186"], ["updated_at", "2023-02-17 19:23:27.343186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:27.344592"], ["updated_at", "2023-02-17 19:23:27.344592"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:27.345970"], ["updated_at", "2023-02-17 19:23:27.345970"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:27.347000"], ["updated_at", "2023-02-17 19:23:27.347000"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:27.348191"], ["updated_at", "2023-02-17 19:23:27.348191"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:27.349570"], ["updated_at", "2023-02-17 19:23:27.349570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:27.350981"], ["updated_at", "2023-02-17 19:23:27.350981"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:27.352119"], ["updated_at", "2023-02-17 19:23:27.352119"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:27.353262"], ["updated_at", "2023-02-17 19:23:27.353262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:27.365503"], ["updated_at", "2023-02-17 19:23:27.365503"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:27.366911"], ["updated_at", "2023-02-17 19:23:27.366911"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:27.367904"], ["updated_at", "2023-02-17 19:23:27.367904"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.368766"], ["updated_at", "2023-02-17 19:23:27.368766"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.369672"], ["updated_at", "2023-02-17 19:23:27.369672"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.370602"], ["updated_at", "2023-02-17 19:23:27.370602"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.371330"], ["updated_at", "2023-02-17 19:23:27.371330"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.372038"], ["updated_at", "2023-02-17 19:23:27.372038"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:27.372781"], ["updated_at", "2023-02-17 19:23:27.372781"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.373774"], ["updated_at", "2023-02-17 19:23:27.373774"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.374658"], ["updated_at", "2023-02-17 19:23:27.374658"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.375669"], ["updated_at", "2023-02-17 19:23:27.375669"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.376779"], ["updated_at", "2023-02-17 19:23:27.376779"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.377641"], ["updated_at", "2023-02-17 19:23:27.377641"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.378397"], ["updated_at", "2023-02-17 19:23:27.378397"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.379140"], ["updated_at", "2023-02-17 19:23:27.379140"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.379862"], ["updated_at", "2023-02-17 19:23:27.379862"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.380586"], ["updated_at", "2023-02-17 19:23:27.380586"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.381453"], ["updated_at", "2023-02-17 19:23:27.381453"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.382251"], ["updated_at", "2023-02-17 19:23:27.382251"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.383036"], ["updated_at", "2023-02-17 19:23:27.383036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:27.395785"], ["updated_at", "2023-02-17 19:23:27.395785"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:27.397061"], ["updated_at", "2023-02-17 19:23:27.397061"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:27.397958"], ["updated_at", "2023-02-17 19:23:27.397958"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.398775"], ["updated_at", "2023-02-17 19:23:27.398775"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.399490"], ["updated_at", "2023-02-17 19:23:27.399490"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.400220"], ["updated_at", "2023-02-17 19:23:27.400220"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.400886"], ["updated_at", "2023-02-17 19:23:27.400886"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.401584"], ["updated_at", "2023-02-17 19:23:27.401584"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:27.402475"], ["updated_at", "2023-02-17 19:23:27.402475"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.403658"], ["updated_at", "2023-02-17 19:23:27.403658"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.404573"], ["updated_at", "2023-02-17 19:23:27.404573"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.405373"], ["updated_at", "2023-02-17 19:23:27.405373"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.406158"], ["updated_at", "2023-02-17 19:23:27.406158"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.406935"], ["updated_at", "2023-02-17 19:23:27.406935"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.407694"], ["updated_at", "2023-02-17 19:23:27.407694"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.408433"], ["updated_at", "2023-02-17 19:23:27.408433"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.409348"], ["updated_at", "2023-02-17 19:23:27.409348"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.410382"], ["updated_at", "2023-02-17 19:23:27.410382"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.411178"], ["updated_at", "2023-02-17 19:23:27.411178"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.411920"], ["updated_at", "2023-02-17 19:23:27.411920"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.412644"], ["updated_at", "2023-02-17 19:23:27.412644"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.429682"], ["updated_at", "2023-02-17 19:23:27.429682"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.430771"], ["updated_at", "2023-02-17 19:23:27.430771"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.431616"], ["updated_at", "2023-02-17 19:23:27.431616"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.432346"], ["updated_at", "2023-02-17 19:23:27.432346"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.433151"], ["updated_at", "2023-02-17 19:23:27.433151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.434069"], ["updated_at", "2023-02-17 19:23:27.434069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.434818"], ["updated_at", "2023-02-17 19:23:27.434818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.435528"], ["updated_at", "2023-02-17 19:23:27.435528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.436284"], ["updated_at", "2023-02-17 19:23:27.436284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.437018"], ["updated_at", "2023-02-17 19:23:27.437018"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.437732"], ["updated_at", "2023-02-17 19:23:27.437732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.438443"], ["updated_at", "2023-02-17 19:23:27.438443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.439147"], ["updated_at", "2023-02-17 19:23:27.439147"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.439840"], ["updated_at", "2023-02-17 19:23:27.439840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.440746"], ["updated_at", "2023-02-17 19:23:27.440746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.441539"], ["updated_at", "2023-02-17 19:23:27.441539"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.459268"], ["updated_at", "2023-02-17 19:23:27.459268"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.460507"], ["updated_at", "2023-02-17 19:23:27.460507"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.461521"], ["updated_at", "2023-02-17 19:23:27.461521"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.462451"], ["updated_at", "2023-02-17 19:23:27.462451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.463342"], ["updated_at", "2023-02-17 19:23:27.463342"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.464355"], ["updated_at", "2023-02-17 19:23:27.464355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.465235"], ["updated_at", "2023-02-17 19:23:27.465235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.465991"], ["updated_at", "2023-02-17 19:23:27.465991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.466887"], ["updated_at", "2023-02-17 19:23:27.466887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.467775"], ["updated_at", "2023-02-17 19:23:27.467775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.468517"], ["updated_at", "2023-02-17 19:23:27.468517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.469356"], ["updated_at", "2023-02-17 19:23:27.469356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.470282"], ["updated_at", "2023-02-17 19:23:27.470282"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.471080"], ["updated_at", "2023-02-17 19:23:27.471080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.471929"], ["updated_at", "2023-02-17 19:23:27.471929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.472681"], ["updated_at", "2023-02-17 19:23:27.472681"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.489961"], ["updated_at", "2023-02-17 19:23:27.489961"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.491008"], ["updated_at", "2023-02-17 19:23:27.491008"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.492034"], ["updated_at", "2023-02-17 19:23:27.492034"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.493094"], ["updated_at", "2023-02-17 19:23:27.493094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.494267"], ["updated_at", "2023-02-17 19:23:27.494267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.495386"], ["updated_at", "2023-02-17 19:23:27.495386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.497037"], ["updated_at", "2023-02-17 19:23:27.497037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.498174"], ["updated_at", "2023-02-17 19:23:27.498174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.499267"], ["updated_at", "2023-02-17 19:23:27.499267"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.500333"], ["updated_at", "2023-02-17 19:23:27.500333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.501404"], ["updated_at", "2023-02-17 19:23:27.501404"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.502443"], ["updated_at", "2023-02-17 19:23:27.502443"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.503631"], ["updated_at", "2023-02-17 19:23:27.503631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.504672"], ["updated_at", "2023-02-17 19:23:27.504672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.505613"], ["updated_at", "2023-02-17 19:23:27.505613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.506623"], ["updated_at", "2023-02-17 19:23:27.506623"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.527064"], ["updated_at", "2023-02-17 19:23:27.527064"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.528268"], ["updated_at", "2023-02-17 19:23:27.528268"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.529284"], ["updated_at", "2023-02-17 19:23:27.529284"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.530173"], ["updated_at", "2023-02-17 19:23:27.530173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.531109"], ["updated_at", "2023-02-17 19:23:27.531109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.532015"], ["updated_at", "2023-02-17 19:23:27.532015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.532920"], ["updated_at", "2023-02-17 19:23:27.532920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.533814"], ["updated_at", "2023-02-17 19:23:27.533814"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.534682"], ["updated_at", "2023-02-17 19:23:27.534682"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.535509"], ["updated_at", "2023-02-17 19:23:27.535509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.536532"], ["updated_at", "2023-02-17 19:23:27.536532"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.537462"], ["updated_at", "2023-02-17 19:23:27.537462"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.538290"], ["updated_at", "2023-02-17 19:23:27.538290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.539128"], ["updated_at", "2023-02-17 19:23:27.539128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.539988"], ["updated_at", "2023-02-17 19:23:27.539988"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.540807"], ["updated_at", "2023-02-17 19:23:27.540807"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.559736"], ["updated_at", "2023-02-17 19:23:27.559736"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.560910"], ["updated_at", "2023-02-17 19:23:27.560910"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.561877"], ["updated_at", "2023-02-17 19:23:27.561877"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.562881"], ["updated_at", "2023-02-17 19:23:27.562881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.564023"], ["updated_at", "2023-02-17 19:23:27.564023"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.565159"], ["updated_at", "2023-02-17 19:23:27.565159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.566271"], ["updated_at", "2023-02-17 19:23:27.566271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.567418"], ["updated_at", "2023-02-17 19:23:27.567418"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.568586"], ["updated_at", "2023-02-17 19:23:27.568586"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.569851"], ["updated_at", "2023-02-17 19:23:27.569851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.570939"], ["updated_at", "2023-02-17 19:23:27.570939"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.572004"], ["updated_at", "2023-02-17 19:23:27.572004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.573110"], ["updated_at", "2023-02-17 19:23:27.573110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.574297"], ["updated_at", "2023-02-17 19:23:27.574297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.575544"], ["updated_at", "2023-02-17 19:23:27.575544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.576749"], ["updated_at", "2023-02-17 19:23:27.576749"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.601556"], ["updated_at", "2023-02-17 19:23:27.601556"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.602695"], ["updated_at", "2023-02-17 19:23:27.602695"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.603721"], ["updated_at", "2023-02-17 19:23:27.603721"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.604971"], ["updated_at", "2023-02-17 19:23:27.604971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.606057"], ["updated_at", "2023-02-17 19:23:27.606057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.606957"], ["updated_at", "2023-02-17 19:23:27.606957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.607861"], ["updated_at", "2023-02-17 19:23:27.607861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.608820"], ["updated_at", "2023-02-17 19:23:27.608820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.609725"], ["updated_at", "2023-02-17 19:23:27.609725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.610585"], ["updated_at", "2023-02-17 19:23:27.610585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.611482"], ["updated_at", "2023-02-17 19:23:27.611482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.612428"], ["updated_at", "2023-02-17 19:23:27.612428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.613300"], ["updated_at", "2023-02-17 19:23:27.613300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.614281"], ["updated_at", "2023-02-17 19:23:27.614281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.615236"], ["updated_at", "2023-02-17 19:23:27.615236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:27.616128"], ["updated_at", "2023-02-17 19:23:27.616128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:23:27 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (1.9ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:27.627838"], ["updated_at", "2023-02-17 19:23:27.627838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:27.631287"], ["updated_at", "2023-02-17 19:23:27.631287"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:27.636389"], ["updated_at", "2023-02-17 19:23:27.636389"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:27.637915"], ["updated_at", "2023-02-17 19:23:27.637915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:27.641721"], ["updated_at", "2023-02-17 19:23:27.641721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:27.643190"], ["updated_at", "2023-02-17 19:23:27.643190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:27.645932"], ["updated_at", "2023-02-17 19:23:27.645932"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (1.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:27.648137"], ["updated_at", "2023-02-17 19:23:27.648137"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (1.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:27.651375"], ["updated_at", "2023-02-17 19:23:27.651375"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:27.654568"], ["updated_at", "2023-02-17 19:23:27.654568"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:27.656640"], ["updated_at", "2023-02-17 19:23:27.656640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:27.658337"], ["updated_at", "2023-02-17 19:23:27.658337"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:27.660196"], ["updated_at", "2023-02-17 19:23:27.660196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:27.661831"], ["updated_at", "2023-02-17 19:23:27.661831"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:27.663593"], ["updated_at", "2023-02-17 19:23:27.663593"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:27.665609"], ["updated_at", "2023-02-17 19:23:27.665609"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:27.667495"], ["updated_at", "2023-02-17 19:23:27.667495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:27.669224"], ["updated_at", "2023-02-17 19:23:27.669224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:27.671215"], ["updated_at", "2023-02-17 19:23:27.671215"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:27.672811"], ["updated_at", "2023-02-17 19:23:27.672811"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:27.674726"], ["updated_at", "2023-02-17 19:23:27.674726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:27.676513"], ["updated_at", "2023-02-17 19:23:27.676513"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:27.678340"], ["updated_at", "2023-02-17 19:23:27.678340"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:27.679964"], ["updated_at", "2023-02-17 19:23:27.679964"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:27.681707"], ["updated_at", "2023-02-17 19:23:27.681707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:27.683330"], ["updated_at", "2023-02-17 19:23:27.683330"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:27.685408"], ["updated_at", "2023-02-17 19:23:27.685408"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:27.687240"], ["updated_at", "2023-02-17 19:23:27.687240"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:27.689053"], ["updated_at", "2023-02-17 19:23:27.689053"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:27.690336"], ["updated_at", "2023-02-17 19:23:27.690336"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:27.691688"], ["updated_at", "2023-02-17 19:23:27.691688"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:27.692861"], ["updated_at", "2023-02-17 19:23:27.692861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:27.694272"], ["updated_at", "2023-02-17 19:23:27.694272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:27.695502"], ["updated_at", "2023-02-17 19:23:27.695502"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:27.696859"], ["updated_at", "2023-02-17 19:23:27.696859"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:27.698056"], ["updated_at", "2023-02-17 19:23:27.698056"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:27.699410"], ["updated_at", "2023-02-17 19:23:27.699410"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:27.700580"], ["updated_at", "2023-02-17 19:23:27.700580"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:27.701961"], ["updated_at", "2023-02-17 19:23:27.701961"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:27.703272"], ["updated_at", "2023-02-17 19:23:27.703272"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:27.704709"], ["updated_at", "2023-02-17 19:23:27.704709"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:27.705936"], ["updated_at", "2023-02-17 19:23:27.705936"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:27.707283"], ["updated_at", "2023-02-17 19:23:27.707283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:27.708433"], ["updated_at", "2023-02-17 19:23:27.708433"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:27.709807"], ["updated_at", "2023-02-17 19:23:27.709807"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:27.711016"], ["updated_at", "2023-02-17 19:23:27.711016"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:27.712362"], ["updated_at", "2023-02-17 19:23:27.712362"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:27.713548"], ["updated_at", "2023-02-17 19:23:27.713548"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:27.714960"], ["updated_at", "2023-02-17 19:23:27.714960"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:27.716147"], ["updated_at", "2023-02-17 19:23:27.716147"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:27.717492"], ["updated_at", "2023-02-17 19:23:27.717492"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:27.718665"], ["updated_at", "2023-02-17 19:23:27.718665"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:27.720108"], ["updated_at", "2023-02-17 19:23:27.720108"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:27.721290"], ["updated_at", "2023-02-17 19:23:27.721290"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:27.722672"], ["updated_at", "2023-02-17 19:23:27.722672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:27.723856"], ["updated_at", "2023-02-17 19:23:27.723856"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:27.725248"], ["updated_at", "2023-02-17 19:23:27.725248"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:27.726455"], ["updated_at", "2023-02-17 19:23:27.726455"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:27.727794"], ["updated_at", "2023-02-17 19:23:27.727794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:27.728952"], ["updated_at", "2023-02-17 19:23:27.728952"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:27.730333"], ["updated_at", "2023-02-17 19:23:27.730333"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:27.731515"], ["updated_at", "2023-02-17 19:23:27.731515"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:27.732907"], ["updated_at", "2023-02-17 19:23:27.732907"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:27.734096"], ["updated_at", "2023-02-17 19:23:27.734096"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:27.735490"], ["updated_at", "2023-02-17 19:23:27.735490"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:27.736747"], ["updated_at", "2023-02-17 19:23:27.736747"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:27.738123"], ["updated_at", "2023-02-17 19:23:27.738123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:27.739291"], ["updated_at", "2023-02-17 19:23:27.739291"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:27.740726"], ["updated_at", "2023-02-17 19:23:27.740726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:27.741901"], ["updated_at", "2023-02-17 19:23:27.741901"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:27.743228"], ["updated_at", "2023-02-17 19:23:27.743228"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:27.744391"], ["updated_at", "2023-02-17 19:23:27.744391"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:27.745784"], ["updated_at", "2023-02-17 19:23:27.745784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:27.746945"], ["updated_at", "2023-02-17 19:23:27.746945"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:27.748277"], ["updated_at", "2023-02-17 19:23:27.748277"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:27.749467"], ["updated_at", "2023-02-17 19:23:27.749467"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:27.750870"], ["updated_at", "2023-02-17 19:23:27.750870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:27.752034"], ["updated_at", "2023-02-17 19:23:27.752034"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:27.753508"], ["updated_at", "2023-02-17 19:23:27.753508"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:27.754736"], ["updated_at", "2023-02-17 19:23:27.754736"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:27.756129"], ["updated_at", "2023-02-17 19:23:27.756129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:27.757313"], ["updated_at", "2023-02-17 19:23:27.757313"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:27.758654"], ["updated_at", "2023-02-17 19:23:27.758654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:27.759822"], ["updated_at", "2023-02-17 19:23:27.759822"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:27.761271"], ["updated_at", "2023-02-17 19:23:27.761271"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:27.762468"], ["updated_at", "2023-02-17 19:23:27.762468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:27.763808"], ["updated_at", "2023-02-17 19:23:27.763808"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:27.765050"], ["updated_at", "2023-02-17 19:23:27.765050"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:27.766518"], ["updated_at", "2023-02-17 19:23:27.766518"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:27.767694"], ["updated_at", "2023-02-17 19:23:27.767694"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:27.769147"], ["updated_at", "2023-02-17 19:23:27.769147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:27.770674"], ["updated_at", "2023-02-17 19:23:27.770674"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:27.772227"], ["updated_at", "2023-02-17 19:23:27.772227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:27.773451"], ["updated_at", "2023-02-17 19:23:27.773451"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:27.774835"], ["updated_at", "2023-02-17 19:23:27.774835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:27.775919"], ["updated_at", "2023-02-17 19:23:27.775919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:27.777129"], ["updated_at", "2023-02-17 19:23:27.777129"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:27.778505"], ["updated_at", "2023-02-17 19:23:27.778505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:27.779979"], ["updated_at", "2023-02-17 19:23:27.779979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:27.781110"], ["updated_at", "2023-02-17 19:23:27.781110"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:27.782141"], ["updated_at", "2023-02-17 19:23:27.782141"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:27.793296"], ["updated_at", "2023-02-17 19:23:27.793296"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:27.794571"], ["updated_at", "2023-02-17 19:23:27.794571"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:27.795543"], ["updated_at", "2023-02-17 19:23:27.795543"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.796412"], ["updated_at", "2023-02-17 19:23:27.796412"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.797204"], ["updated_at", "2023-02-17 19:23:27.797204"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.797887"], ["updated_at", "2023-02-17 19:23:27.797887"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.798569"], ["updated_at", "2023-02-17 19:23:27.798569"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.799233"], ["updated_at", "2023-02-17 19:23:27.799233"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:27.799989"], ["updated_at", "2023-02-17 19:23:27.799989"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.800815"], ["updated_at", "2023-02-17 19:23:27.800815"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.801634"], ["updated_at", "2023-02-17 19:23:27.801634"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.802374"], ["updated_at", "2023-02-17 19:23:27.802374"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.803192"], ["updated_at", "2023-02-17 19:23:27.803192"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.803927"], ["updated_at", "2023-02-17 19:23:27.803927"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.804674"], ["updated_at", "2023-02-17 19:23:27.804674"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.805403"], ["updated_at", "2023-02-17 19:23:27.805403"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.806163"], ["updated_at", "2023-02-17 19:23:27.806163"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.806943"], ["updated_at", "2023-02-17 19:23:27.806943"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.807694"], ["updated_at", "2023-02-17 19:23:27.807694"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.808419"], ["updated_at", "2023-02-17 19:23:27.808419"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.809158"], ["updated_at", "2023-02-17 19:23:27.809158"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:27.820625"], ["updated_at", "2023-02-17 19:23:27.820625"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:27.821852"], ["updated_at", "2023-02-17 19:23:27.821852"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:27.822744"], ["updated_at", "2023-02-17 19:23:27.822744"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.823548"], ["updated_at", "2023-02-17 19:23:27.823548"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.824284"], ["updated_at", "2023-02-17 19:23:27.824284"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.824993"], ["updated_at", "2023-02-17 19:23:27.824993"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.825660"], ["updated_at", "2023-02-17 19:23:27.825660"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:27.826350"], ["updated_at", "2023-02-17 19:23:27.826350"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:27.827095"], ["updated_at", "2023-02-17 19:23:27.827095"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.827937"], ["updated_at", "2023-02-17 19:23:27.827937"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.828714"], ["updated_at", "2023-02-17 19:23:27.828714"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.829455"], ["updated_at", "2023-02-17 19:23:27.829455"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.830185"], ["updated_at", "2023-02-17 19:23:27.830185"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.830911"], ["updated_at", "2023-02-17 19:23:27.830911"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.831631"], ["updated_at", "2023-02-17 19:23:27.831631"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.832360"], ["updated_at", "2023-02-17 19:23:27.832360"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.833116"], ["updated_at", "2023-02-17 19:23:27.833116"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.833837"], ["updated_at", "2023-02-17 19:23:27.833837"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.834584"], ["updated_at", "2023-02-17 19:23:27.834584"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.835315"], ["updated_at", "2023-02-17 19:23:27.835315"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:27.836038"], ["updated_at", "2023-02-17 19:23:27.836038"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.851884"], ["updated_at", "2023-02-17 19:23:27.851884"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.853081"], ["updated_at", "2023-02-17 19:23:27.853081"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.853981"], ["updated_at", "2023-02-17 19:23:27.853981"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.854703"], ["updated_at", "2023-02-17 19:23:27.854703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.855482"], ["updated_at", "2023-02-17 19:23:27.855482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.856268"], ["updated_at", "2023-02-17 19:23:27.856268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.857006"], ["updated_at", "2023-02-17 19:23:27.857006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.857725"], ["updated_at", "2023-02-17 19:23:27.857725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.858453"], ["updated_at", "2023-02-17 19:23:27.858453"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.859171"], ["updated_at", "2023-02-17 19:23:27.859171"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.859881"], ["updated_at", "2023-02-17 19:23:27.859881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.860599"], ["updated_at", "2023-02-17 19:23:27.860599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.861334"], ["updated_at", "2023-02-17 19:23:27.861334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.862071"], ["updated_at", "2023-02-17 19:23:27.862071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.862764"], ["updated_at", "2023-02-17 19:23:27.862764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:27.863493"], ["updated_at", "2023-02-17 19:23:27.863493"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.880761"], ["updated_at", "2023-02-17 19:23:27.880761"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.881829"], ["updated_at", "2023-02-17 19:23:27.881829"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.882629"], ["updated_at", "2023-02-17 19:23:27.882629"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.883361"], ["updated_at", "2023-02-17 19:23:27.883361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.884136"], ["updated_at", "2023-02-17 19:23:27.884136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.884910"], ["updated_at", "2023-02-17 19:23:27.884910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.885686"], ["updated_at", "2023-02-17 19:23:27.885686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.886646"], ["updated_at", "2023-02-17 19:23:27.886646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.887425"], ["updated_at", "2023-02-17 19:23:27.887425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.888167"], ["updated_at", "2023-02-17 19:23:27.888167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.888868"], ["updated_at", "2023-02-17 19:23:27.888868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.889589"], ["updated_at", "2023-02-17 19:23:27.889589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.890300"], ["updated_at", "2023-02-17 19:23:27.890300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.890989"], ["updated_at", "2023-02-17 19:23:27.890989"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.891697"], ["updated_at", "2023-02-17 19:23:27.891697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:27.892503"], ["updated_at", "2023-02-17 19:23:27.892503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.908187"], ["updated_at", "2023-02-17 19:23:27.908187"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.909266"], ["updated_at", "2023-02-17 19:23:27.909266"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.910042"], ["updated_at", "2023-02-17 19:23:27.910042"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.910746"], ["updated_at", "2023-02-17 19:23:27.910746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.911511"], ["updated_at", "2023-02-17 19:23:27.911511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.912236"], ["updated_at", "2023-02-17 19:23:27.912236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.912934"], ["updated_at", "2023-02-17 19:23:27.912934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.913616"], ["updated_at", "2023-02-17 19:23:27.913616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.914318"], ["updated_at", "2023-02-17 19:23:27.914318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.915014"], ["updated_at", "2023-02-17 19:23:27.915014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.915712"], ["updated_at", "2023-02-17 19:23:27.915712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.916415"], ["updated_at", "2023-02-17 19:23:27.916415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.917166"], ["updated_at", "2023-02-17 19:23:27.917166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.917886"], ["updated_at", "2023-02-17 19:23:27.917886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.918597"], ["updated_at", "2023-02-17 19:23:27.918597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:27.919315"], ["updated_at", "2023-02-17 19:23:27.919315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.934987"], ["updated_at", "2023-02-17 19:23:27.934987"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.936045"], ["updated_at", "2023-02-17 19:23:27.936045"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.936921"], ["updated_at", "2023-02-17 19:23:27.936921"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.937644"], ["updated_at", "2023-02-17 19:23:27.937644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.938445"], ["updated_at", "2023-02-17 19:23:27.938445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.939205"], ["updated_at", "2023-02-17 19:23:27.939205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.939895"], ["updated_at", "2023-02-17 19:23:27.939895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.940604"], ["updated_at", "2023-02-17 19:23:27.940604"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.941343"], ["updated_at", "2023-02-17 19:23:27.941343"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.942089"], ["updated_at", "2023-02-17 19:23:27.942089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.942854"], ["updated_at", "2023-02-17 19:23:27.942854"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.943621"], ["updated_at", "2023-02-17 19:23:27.943621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.944401"], ["updated_at", "2023-02-17 19:23:27.944401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.945211"], ["updated_at", "2023-02-17 19:23:27.945211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.946267"], ["updated_at", "2023-02-17 19:23:27.946267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:27.947334"], ["updated_at", "2023-02-17 19:23:27.947334"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:27.972493"], ["updated_at", "2023-02-17 19:23:27.972493"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:27.973537"], ["updated_at", "2023-02-17 19:23:27.973537"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:27.974433"], ["updated_at", "2023-02-17 19:23:27.974433"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:27.975339"], ["updated_at", "2023-02-17 19:23:27.975339"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.976129"], ["updated_at", "2023-02-17 19:23:27.976129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.976891"], ["updated_at", "2023-02-17 19:23:27.976891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.977663"], ["updated_at", "2023-02-17 19:23:27.977663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.978358"], ["updated_at", "2023-02-17 19:23:27.978358"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.979057"], ["updated_at", "2023-02-17 19:23:27.979057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.979753"], ["updated_at", "2023-02-17 19:23:27.979753"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.980440"], ["updated_at", "2023-02-17 19:23:27.980440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.981148"], ["updated_at", "2023-02-17 19:23:27.981148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.981842"], ["updated_at", "2023-02-17 19:23:27.981842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.982520"], ["updated_at", "2023-02-17 19:23:27.982520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.983218"], ["updated_at", "2023-02-17 19:23:27.983218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:27.983910"], ["updated_at", "2023-02-17 19:23:27.983910"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:28.001723"], ["updated_at", "2023-02-17 19:23:28.001723"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:28.002750"], ["updated_at", "2023-02-17 19:23:28.002750"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:28.003802"], ["updated_at", "2023-02-17 19:23:28.003802"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:28.004705"], ["updated_at", "2023-02-17 19:23:28.004705"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.005747"], ["updated_at", "2023-02-17 19:23:28.005747"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.006548"], ["updated_at", "2023-02-17 19:23:28.006548"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.007287"], ["updated_at", "2023-02-17 19:23:28.007287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.008115"], ["updated_at", "2023-02-17 19:23:28.008115"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.009121"], ["updated_at", "2023-02-17 19:23:28.009121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.010098"], ["updated_at", "2023-02-17 19:23:28.010098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.010886"], ["updated_at", "2023-02-17 19:23:28.010886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.011814"], ["updated_at", "2023-02-17 19:23:28.011814"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.012609"], ["updated_at", "2023-02-17 19:23:28.012609"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.013355"], ["updated_at", "2023-02-17 19:23:28.013355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.014136"], ["updated_at", "2023-02-17 19:23:28.014136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:28.015229"], ["updated_at", "2023-02-17 19:23:28.015229"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:23:28 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:23:28 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:23:28 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (2.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:53.364726"], ["updated_at", "2023-02-17 19:23:53.364726"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (1.0ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:53.381501"], ["updated_at", "2023-02-17 19:23:53.381501"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:23:53.388812"], ["updated_at", "2023-02-17 19:23:53.388812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:53.399337"], ["updated_at", "2023-02-17 19:23:53.399337"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

Enrollment Create (1.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:53.408141"], ["updated_at", "2023-02-17 19:23:53.408141"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:23:53.413802"], ["updated_at", "2023-02-17 19:23:53.413802"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:53.416715"], ["updated_at", "2023-02-17 19:23:53.416715"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 64ms (Views: 0.2ms | ActiveRecord: 10.4ms | Allocations: 28604)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (1.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:23:53.435454"], ["updated_at", "2023-02-17 19:23:53.435454"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML

SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2360) Completed 200 OK in 12ms (Views: 6.4ms | ActiveRecord: 1.9ms | Allocations: 4603)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055ff08bb5b90>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]

Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 149)

Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:53.460037"], ["updated_at", "2023-02-17 19:23:53.460037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.4ms | Allocations: 658)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:53.476575"], ["updated_at", "2023-02-17 19:23:53.476575"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:23:53.483412"], ["updated_at", "2023-02-17 19:23:53.483412"]]

Processing by UsersController#create as HTML

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:53.493926"], ["updated_at", "2023-02-17 19:23:53.493926"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:53.501112"], ["updated_at", "2023-02-17 19:23:53.501112"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:23:53.505273"], ["updated_at", "2023-02-17 19:23:53.505273"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:53.508018"], ["updated_at", "2023-02-17 19:23:53.508018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 61ms (Views: 0.2ms | ActiveRecord: 5.4ms | Allocations: 28608)

Member Load (0.2ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.2ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (1.9ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:53.517576"], ["updated_at", "2023-02-17 19:23:53.517576"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:53.521108"], ["updated_at", "2023-02-17 19:23:53.521108"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:53.525862"], ["updated_at", "2023-02-17 19:23:53.525862"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:23:53.527145"], ["updated_at", "2023-02-17 19:23:53.527145"], ["role_id", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:53.527516"], ["updated_at", "2023-02-17 19:23:53.527516"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.6ms | Allocations: 1408)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Subject Exists? (0.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00005571b9bd9450>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:53.532050"], ["updated_at", "2023-02-17 19:23:53.532050"]]

Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:53.534155"], ["updated_at", "2023-02-17 19:23:53.534155"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:53.537741"], ["updated_at", "2023-02-17 19:23:53.537741"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (1.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:53.540612"], ["updated_at", "2023-02-17 19:23:53.540612"], ["role_id", 34]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.3ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:53.545265"], ["updated_at", "2023-02-17 19:23:53.545265"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:53.549000"], ["updated_at", "2023-02-17 19:23:53.549000"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.5ms | Allocations: 3026)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:53.551351"], ["updated_at", "2023-02-17 19:23:53.551351"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:53.553689"], ["updated_at", "2023-02-17 19:23:53.553689"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:53.556064"], ["updated_at", "2023-02-17 19:23:53.556064"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:53.558207"], ["updated_at", "2023-02-17 19:23:53.558207"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:53.560244"], ["updated_at", "2023-02-17 19:23:53.560244"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:53.562067"], ["updated_at", "2023-02-17 19:23:53.562067"], ["role_id", 34]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:53.565622"], ["updated_at", "2023-02-17 19:23:53.565622"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:53.567923"], ["updated_at", "2023-02-17 19:23:53.567923"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:53.570457"], ["updated_at", "2023-02-17 19:23:53.570457"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:53.572699"], ["updated_at", "2023-02-17 19:23:53.572699"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:53.575034"], ["updated_at", "2023-02-17 19:23:53.575034"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:53.577169"], ["updated_at", "2023-02-17 19:23:53.577169"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:53.579338"], ["updated_at", "2023-02-17 19:23:53.579338"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:53.581320"], ["updated_at", "2023-02-17 19:23:53.581320"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:53.583874"], ["updated_at", "2023-02-17 19:23:53.583874"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 5762)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:53.586055"], ["updated_at", "2023-02-17 19:23:53.586055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:53.587877"], ["updated_at", "2023-02-17 19:23:53.587877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:53.590023"], ["updated_at", "2023-02-17 19:23:53.590023"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:53.592289"], ["updated_at", "2023-02-17 19:23:53.592289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:53.594330"], ["updated_at", "2023-02-17 19:23:53.594330"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:53.596327"], ["updated_at", "2023-02-17 19:23:53.596327"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:53.598185"], ["updated_at", "2023-02-17 19:23:53.598185"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:53.600455"], ["updated_at", "2023-02-17 19:23:53.600455"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:53.600696"], ["updated_at", "2023-02-17 19:23:53.600696"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:53.602853"], ["updated_at", "2023-02-17 19:23:53.602853"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:53.605272"], ["updated_at", "2023-02-17 19:23:53.605272"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:53.606533"], ["updated_at", "2023-02-17 19:23:53.606533"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:53.607389"], ["updated_at", "2023-02-17 19:23:53.607389"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:53.609814"], ["updated_at", "2023-02-17 19:23:53.609814"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:53.611390"], ["updated_at", "2023-02-17 19:23:53.611390"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:53.612125"], ["updated_at", "2023-02-17 19:23:53.612125"], ["role_id", 34]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:53.614669"], ["updated_at", "2023-02-17 19:23:53.614669"]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:53.616409"], ["updated_at", "2023-02-17 19:23:53.616409"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:53.616745"], ["updated_at", "2023-02-17 19:23:53.616745"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:53.619064"], ["updated_at", "2023-02-17 19:23:53.619064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:53.621237"], ["updated_at", "2023-02-17 19:23:53.621237"], ["role_id", 34]]
Subject Create (0.7ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:53.621152"], ["updated_at", "2023-02-17 19:23:53.621152"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:53.623793"], ["updated_at", "2023-02-17 19:23:53.623793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:53.626178"], ["updated_at", "2023-02-17 19:23:53.626178"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:53.627493"], ["updated_at", "2023-02-17 19:23:53.627493"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:53.628761"], ["updated_at", "2023-02-17 19:23:53.628761"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.6ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:53.631306"], ["updated_at", "2023-02-17 19:23:53.631306"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:53.633371"], ["updated_at", "2023-02-17 19:23:53.633371"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:53.634860"], ["updated_at", "2023-02-17 19:23:53.634860"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:53.637268"], ["updated_at", "2023-02-17 19:23:53.637268"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:53.638700"], ["updated_at", "2023-02-17 19:23:53.638700"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:53.639872"], ["updated_at", "2023-02-17 19:23:53.639872"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:53.641860"], ["updated_at", "2023-02-17 19:23:53.641860"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:53.644029"], ["updated_at", "2023-02-17 19:23:53.644029"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:53.645631"], ["updated_at", "2023-02-17 19:23:53.645631"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:53.647480"], ["updated_at", "2023-02-17 19:23:53.647480"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:23:53 -0300

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.6ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:53.649941"], ["updated_at", "2023-02-17 19:23:53.649941"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:53.652794"], ["updated_at", "2023-02-17 19:23:53.652794"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:53.655203"], ["updated_at", "2023-02-17 19:23:53.655203"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 232)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:53.657706"], ["updated_at", "2023-02-17 19:23:53.657706"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:53.659932"], ["updated_at", "2023-02-17 19:23:53.659932"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:53.662406"], ["updated_at", "2023-02-17 19:23:53.662406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:53.664263"], ["updated_at", "2023-02-17 19:23:53.664263"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:53.666064"], ["updated_at", "2023-02-17 19:23:53.666064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:23:53 -0300

TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:53.667960"], ["updated_at", "2023-02-17 19:23:53.667960"], ["role_id", 34]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 180)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:53.670142"], ["updated_at", "2023-02-17 19:23:53.670142"]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:53.672258"], ["updated_at", "2023-02-17 19:23:53.672258"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:53.674363"], ["updated_at", "2023-02-17 19:23:53.674363"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:53.676239"], ["updated_at", "2023-02-17 19:23:53.676239"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:53.678404"], ["updated_at", "2023-02-17 19:23:53.678404"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:53.680434"], ["updated_at", "2023-02-17 19:23:53.680434"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:53.682970"], ["updated_at", "2023-02-17 19:23:53.682970"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:53.685046"], ["updated_at", "2023-02-17 19:23:53.685046"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:53.687126"], ["updated_at", "2023-02-17 19:23:53.687126"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:53.688893"], ["updated_at", "2023-02-17 19:23:53.688893"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:53.691002"], ["updated_at", "2023-02-17 19:23:53.691002"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:53.693139"], ["updated_at", "2023-02-17 19:23:53.693139"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:53.695585"], ["updated_at", "2023-02-17 19:23:53.695585"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:53.698745"], ["updated_at", "2023-02-17 19:23:53.698745"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:53.700995"], ["updated_at", "2023-02-17 19:23:53.700995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:53.702629"], ["updated_at", "2023-02-17 19:23:53.702629"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:53.705161"], ["updated_at", "2023-02-17 19:23:53.705161"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:53.708894"], ["updated_at", "2023-02-17 19:23:53.708894"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:53.711468"], ["updated_at", "2023-02-17 19:23:53.711468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:53.713205"], ["updated_at", "2023-02-17 19:23:53.713205"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:53.715136"], ["updated_at", "2023-02-17 19:23:53.715136"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:53.716977"], ["updated_at", "2023-02-17 19:23:53.716977"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:53.718812"], ["updated_at", "2023-02-17 19:23:53.718812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:53.720450"], ["updated_at", "2023-02-17 19:23:53.720450"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:53.722601"], ["updated_at", "2023-02-17 19:23:53.722601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:53.724435"], ["updated_at", "2023-02-17 19:23:53.724435"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:53.726514"], ["updated_at", "2023-02-17 19:23:53.726514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:53.728102"], ["updated_at", "2023-02-17 19:23:53.728102"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:53.729503"], ["updated_at", "2023-02-17 19:23:53.729503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:53.730674"], ["updated_at", "2023-02-17 19:23:53.730674"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:53.732130"], ["updated_at", "2023-02-17 19:23:53.732130"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:53.733525"], ["updated_at", "2023-02-17 19:23:53.733525"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:53.735298"], ["updated_at", "2023-02-17 19:23:53.735298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:53.736820"], ["updated_at", "2023-02-17 19:23:53.736820"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:53.738631"], ["updated_at", "2023-02-17 19:23:53.738631"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:53.740352"], ["updated_at", "2023-02-17 19:23:53.740352"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:53.752701"], ["updated_at", "2023-02-17 19:23:53.752701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:53.754449"], ["updated_at", "2023-02-17 19:23:53.754449"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:53.755733"], ["updated_at", "2023-02-17 19:23:53.755733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.2ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:53.847794"], ["updated_at", "2023-02-17 19:23:53.847794"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:53.849495"], ["updated_at", "2023-02-17 19:23:53.849495"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:53.850614"], ["updated_at", "2023-02-17 19:23:53.850614"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:53.851506"], ["updated_at", "2023-02-17 19:23:53.851506"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:53.852352"], ["updated_at", "2023-02-17 19:23:53.852352"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:53.853119"], ["updated_at", "2023-02-17 19:23:53.853119"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:53.853823"], ["updated_at", "2023-02-17 19:23:53.853823"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:53.854667"], ["updated_at", "2023-02-17 19:23:53.854667"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:53.855450"], ["updated_at", "2023-02-17 19:23:53.855450"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.856328"], ["updated_at", "2023-02-17 19:23:53.856328"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.857967"], ["updated_at", "2023-02-17 19:23:53.857967"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.859313"], ["updated_at", "2023-02-17 19:23:53.859313"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.860259"], ["updated_at", "2023-02-17 19:23:53.860259"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.861045"], ["updated_at", "2023-02-17 19:23:53.861045"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.861870"], ["updated_at", "2023-02-17 19:23:53.861870"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.862704"], ["updated_at", "2023-02-17 19:23:53.862704"]]
LikertScaleQuestion Create (1.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.863433"], ["updated_at", "2023-02-17 19:23:53.863433"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.866590"], ["updated_at", "2023-02-17 19:23:53.866590"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.867982"], ["updated_at", "2023-02-17 19:23:53.867982"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.869155"], ["updated_at", "2023-02-17 19:23:53.869155"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.871258"], ["updated_at", "2023-02-17 19:23:53.871258"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.4ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:53.887550"], ["updated_at", "2023-02-17 19:23:53.887550"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:53.889805"], ["updated_at", "2023-02-17 19:23:53.889805"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:53.891442"], ["updated_at", "2023-02-17 19:23:53.891442"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:53.893122"], ["updated_at", "2023-02-17 19:23:53.893122"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:53.894530"], ["updated_at", "2023-02-17 19:23:53.894530"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:53.895886"], ["updated_at", "2023-02-17 19:23:53.895886"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:53.897247"], ["updated_at", "2023-02-17 19:23:53.897247"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:53.898662"], ["updated_at", "2023-02-17 19:23:53.898662"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:53.900111"], ["updated_at", "2023-02-17 19:23:53.900111"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.904254"], ["updated_at", "2023-02-17 19:23:53.904254"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.912030"], ["updated_at", "2023-02-17 19:23:53.912030"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.913335"], ["updated_at", "2023-02-17 19:23:53.913335"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.914619"], ["updated_at", "2023-02-17 19:23:53.914619"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.916790"], ["updated_at", "2023-02-17 19:23:53.916790"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.917963"], ["updated_at", "2023-02-17 19:23:53.917963"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.919303"], ["updated_at", "2023-02-17 19:23:53.919303"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.920445"], ["updated_at", "2023-02-17 19:23:53.920445"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.921598"], ["updated_at", "2023-02-17 19:23:53.921598"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.922953"], ["updated_at", "2023-02-17 19:23:53.922953"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.924582"], ["updated_at", "2023-02-17 19:23:53.924582"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:53.925867"], ["updated_at", "2023-02-17 19:23:53.925867"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:53.970612"], ["updated_at", "2023-02-17 19:23:53.970612"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:53.972069"], ["updated_at", "2023-02-17 19:23:53.972069"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:53.973492"], ["updated_at", "2023-02-17 19:23:53.973492"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:53.974818"], ["updated_at", "2023-02-17 19:23:53.974818"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.976038"], ["updated_at", "2023-02-17 19:23:53.976038"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.977118"], ["updated_at", "2023-02-17 19:23:53.977118"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.978207"], ["updated_at", "2023-02-17 19:23:53.978207"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.979202"], ["updated_at", "2023-02-17 19:23:53.979202"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.980307"], ["updated_at", "2023-02-17 19:23:53.980307"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.981557"], ["updated_at", "2023-02-17 19:23:53.981557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.982443"], ["updated_at", "2023-02-17 19:23:53.982443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.983216"], ["updated_at", "2023-02-17 19:23:53.983216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.984710"], ["updated_at", "2023-02-17 19:23:53.984710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.985691"], ["updated_at", "2023-02-17 19:23:53.985691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.986525"], ["updated_at", "2023-02-17 19:23:53.986525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:53.987441"], ["updated_at", "2023-02-17 19:23:53.987441"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.011754"], ["updated_at", "2023-02-17 19:23:54.011754"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.012762"], ["updated_at", "2023-02-17 19:23:54.012762"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.013652"], ["updated_at", "2023-02-17 19:23:54.013652"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.014560"], ["updated_at", "2023-02-17 19:23:54.014560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.015508"], ["updated_at", "2023-02-17 19:23:54.015508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.016237"], ["updated_at", "2023-02-17 19:23:54.016237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.016950"], ["updated_at", "2023-02-17 19:23:54.016950"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.017647"], ["updated_at", "2023-02-17 19:23:54.017647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.018349"], ["updated_at", "2023-02-17 19:23:54.018349"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.019405"], ["updated_at", "2023-02-17 19:23:54.019405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.020214"], ["updated_at", "2023-02-17 19:23:54.020214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.021050"], ["updated_at", "2023-02-17 19:23:54.021050"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.021798"], ["updated_at", "2023-02-17 19:23:54.021798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.022616"], ["updated_at", "2023-02-17 19:23:54.022616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.023363"], ["updated_at", "2023-02-17 19:23:54.023363"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.024837"], ["updated_at", "2023-02-17 19:23:54.024837"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.043000"], ["updated_at", "2023-02-17 19:23:54.043000"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.044445"], ["updated_at", "2023-02-17 19:23:54.044445"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.045580"], ["updated_at", "2023-02-17 19:23:54.045580"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.046431"], ["updated_at", "2023-02-17 19:23:54.046431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.047459"], ["updated_at", "2023-02-17 19:23:54.047459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.048432"], ["updated_at", "2023-02-17 19:23:54.048432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.049548"], ["updated_at", "2023-02-17 19:23:54.049548"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.050493"], ["updated_at", "2023-02-17 19:23:54.050493"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.051346"], ["updated_at", "2023-02-17 19:23:54.051346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.052236"], ["updated_at", "2023-02-17 19:23:54.052236"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.053190"], ["updated_at", "2023-02-17 19:23:54.053190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.054276"], ["updated_at", "2023-02-17 19:23:54.054276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.055329"], ["updated_at", "2023-02-17 19:23:54.055329"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.056108"], ["updated_at", "2023-02-17 19:23:54.056108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.057267"], ["updated_at", "2023-02-17 19:23:54.057267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.058154"], ["updated_at", "2023-02-17 19:23:54.058154"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.077580"], ["updated_at", "2023-02-17 19:23:54.077580"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.079244"], ["updated_at", "2023-02-17 19:23:54.079244"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.080509"], ["updated_at", "2023-02-17 19:23:54.080509"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.081820"], ["updated_at", "2023-02-17 19:23:54.081820"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.083059"], ["updated_at", "2023-02-17 19:23:54.083059"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.084597"], ["updated_at", "2023-02-17 19:23:54.084597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.085946"], ["updated_at", "2023-02-17 19:23:54.085946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.087571"], ["updated_at", "2023-02-17 19:23:54.087571"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.088728"], ["updated_at", "2023-02-17 19:23:54.088728"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.090058"], ["updated_at", "2023-02-17 19:23:54.090058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.091415"], ["updated_at", "2023-02-17 19:23:54.091415"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.092682"], ["updated_at", "2023-02-17 19:23:54.092682"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.094162"], ["updated_at", "2023-02-17 19:23:54.094162"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.095464"], ["updated_at", "2023-02-17 19:23:54.095464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.096769"], ["updated_at", "2023-02-17 19:23:54.096769"]]
LikertScaleAnswer Create (0.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.098130"], ["updated_at", "2023-02-17 19:23:54.098130"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (1.7ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.122281"], ["updated_at", "2023-02-17 19:23:54.122281"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.123440"], ["updated_at", "2023-02-17 19:23:54.123440"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.124758"], ["updated_at", "2023-02-17 19:23:54.124758"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.126268"], ["updated_at", "2023-02-17 19:23:54.126268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.127475"], ["updated_at", "2023-02-17 19:23:54.127475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.128602"], ["updated_at", "2023-02-17 19:23:54.128602"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.129589"], ["updated_at", "2023-02-17 19:23:54.129589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.130636"], ["updated_at", "2023-02-17 19:23:54.130636"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.131781"], ["updated_at", "2023-02-17 19:23:54.131781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.132739"], ["updated_at", "2023-02-17 19:23:54.132739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.133625"], ["updated_at", "2023-02-17 19:23:54.133625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.134564"], ["updated_at", "2023-02-17 19:23:54.134564"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.135626"], ["updated_at", "2023-02-17 19:23:54.135626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.136462"], ["updated_at", "2023-02-17 19:23:54.136462"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.137351"], ["updated_at", "2023-02-17 19:23:54.137351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.138243"], ["updated_at", "2023-02-17 19:23:54.138243"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.3ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.169734"], ["updated_at", "2023-02-17 19:23:54.169734"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.170975"], ["updated_at", "2023-02-17 19:23:54.170975"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.171928"], ["updated_at", "2023-02-17 19:23:54.171928"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.172800"], ["updated_at", "2023-02-17 19:23:54.172800"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.174132"], ["updated_at", "2023-02-17 19:23:54.174132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.175563"], ["updated_at", "2023-02-17 19:23:54.175563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.176715"], ["updated_at", "2023-02-17 19:23:54.176715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.177832"], ["updated_at", "2023-02-17 19:23:54.177832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.179011"], ["updated_at", "2023-02-17 19:23:54.179011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.180296"], ["updated_at", "2023-02-17 19:23:54.180296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.181320"], ["updated_at", "2023-02-17 19:23:54.181320"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.182480"], ["updated_at", "2023-02-17 19:23:54.182480"]]
LikertScaleAnswer Create (0.9ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.184221"], ["updated_at", "2023-02-17 19:23:54.184221"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.188771"], ["updated_at", "2023-02-17 19:23:54.188771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.190146"], ["updated_at", "2023-02-17 19:23:54.190146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.191297"], ["updated_at", "2023-02-17 19:23:54.191297"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:23:54 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.4ms | Allocations: 3126)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:54.222204"], ["updated_at", "2023-02-17 19:23:54.222204"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:54.224975"], ["updated_at", "2023-02-17 19:23:54.224975"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:54.228363"], ["updated_at", "2023-02-17 19:23:54.228363"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:54.229714"], ["updated_at", "2023-02-17 19:23:54.229714"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:54.234672"], ["updated_at", "2023-02-17 19:23:54.234672"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:54.236523"], ["updated_at", "2023-02-17 19:23:54.236523"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:54.239136"], ["updated_at", "2023-02-17 19:23:54.239136"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:54.240803"], ["updated_at", "2023-02-17 19:23:54.240803"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:54.248131"], ["updated_at", "2023-02-17 19:23:54.248131"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:54.249934"], ["updated_at", "2023-02-17 19:23:54.249934"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:54.252936"], ["updated_at", "2023-02-17 19:23:54.252936"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:54.256588"], ["updated_at", "2023-02-17 19:23:54.256588"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:54.259895"], ["updated_at", "2023-02-17 19:23:54.259895"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:54.261566"], ["updated_at", "2023-02-17 19:23:54.261566"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:54.263553"], ["updated_at", "2023-02-17 19:23:54.263553"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:54.265750"], ["updated_at", "2023-02-17 19:23:54.265750"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:54.267474"], ["updated_at", "2023-02-17 19:23:54.267474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:54.268723"], ["updated_at", "2023-02-17 19:23:54.268723"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:54.270105"], ["updated_at", "2023-02-17 19:23:54.270105"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:54.271595"], ["updated_at", "2023-02-17 19:23:54.271595"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:54.273353"], ["updated_at", "2023-02-17 19:23:54.273353"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:54.274896"], ["updated_at", "2023-02-17 19:23:54.274896"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:54.277036"], ["updated_at", "2023-02-17 19:23:54.277036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:54.278348"], ["updated_at", "2023-02-17 19:23:54.278348"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:54.279716"], ["updated_at", "2023-02-17 19:23:54.279716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:54.281163"], ["updated_at", "2023-02-17 19:23:54.281163"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:54.282683"], ["updated_at", "2023-02-17 19:23:54.282683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:54.284017"], ["updated_at", "2023-02-17 19:23:54.284017"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:54.285504"], ["updated_at", "2023-02-17 19:23:54.285504"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:54.286730"], ["updated_at", "2023-02-17 19:23:54.286730"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:54.288501"], ["updated_at", "2023-02-17 19:23:54.288501"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:54.289923"], ["updated_at", "2023-02-17 19:23:54.289923"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:54.291688"], ["updated_at", "2023-02-17 19:23:54.291688"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:54.293225"], ["updated_at", "2023-02-17 19:23:54.293225"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:54.294978"], ["updated_at", "2023-02-17 19:23:54.294978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:54.296266"], ["updated_at", "2023-02-17 19:23:54.296266"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:54.297893"], ["updated_at", "2023-02-17 19:23:54.297893"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:54.299135"], ["updated_at", "2023-02-17 19:23:54.299135"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:54.300560"], ["updated_at", "2023-02-17 19:23:54.300560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:54.302016"], ["updated_at", "2023-02-17 19:23:54.302016"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:54.303541"], ["updated_at", "2023-02-17 19:23:54.303541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:54.304954"], ["updated_at", "2023-02-17 19:23:54.304954"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:54.306422"], ["updated_at", "2023-02-17 19:23:54.306422"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:54.307710"], ["updated_at", "2023-02-17 19:23:54.307710"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:54.309464"], ["updated_at", "2023-02-17 19:23:54.309464"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:54.310737"], ["updated_at", "2023-02-17 19:23:54.310737"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:54.312164"], ["updated_at", "2023-02-17 19:23:54.312164"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:54.313496"], ["updated_at", "2023-02-17 19:23:54.313496"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:54.314922"], ["updated_at", "2023-02-17 19:23:54.314922"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:54.316211"], ["updated_at", "2023-02-17 19:23:54.316211"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:54.317678"], ["updated_at", "2023-02-17 19:23:54.317678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:54.318880"], ["updated_at", "2023-02-17 19:23:54.318880"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:54.320262"], ["updated_at", "2023-02-17 19:23:54.320262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:54.321542"], ["updated_at", "2023-02-17 19:23:54.321542"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:54.323661"], ["updated_at", "2023-02-17 19:23:54.323661"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:54.325137"], ["updated_at", "2023-02-17 19:23:54.325137"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:54.326550"], ["updated_at", "2023-02-17 19:23:54.326550"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:54.327779"], ["updated_at", "2023-02-17 19:23:54.327779"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:54.329170"], ["updated_at", "2023-02-17 19:23:54.329170"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:54.330428"], ["updated_at", "2023-02-17 19:23:54.330428"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:54.332067"], ["updated_at", "2023-02-17 19:23:54.332067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:54.333408"], ["updated_at", "2023-02-17 19:23:54.333408"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:54.335052"], ["updated_at", "2023-02-17 19:23:54.335052"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:54.336833"], ["updated_at", "2023-02-17 19:23:54.336833"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:54.338863"], ["updated_at", "2023-02-17 19:23:54.338863"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:54.340814"], ["updated_at", "2023-02-17 19:23:54.340814"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:54.343122"], ["updated_at", "2023-02-17 19:23:54.343122"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:54.358593"], ["updated_at", "2023-02-17 19:23:54.358593"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:54.360375"], ["updated_at", "2023-02-17 19:23:54.360375"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:54.363422"], ["updated_at", "2023-02-17 19:23:54.363422"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:54.365582"], ["updated_at", "2023-02-17 19:23:54.365582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:54.367209"], ["updated_at", "2023-02-17 19:23:54.367209"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:54.369028"], ["updated_at", "2023-02-17 19:23:54.369028"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:54.370472"], ["updated_at", "2023-02-17 19:23:54.370472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:54.373018"], ["updated_at", "2023-02-17 19:23:54.373018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:54.375122"], ["updated_at", "2023-02-17 19:23:54.375122"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:54.376751"], ["updated_at", "2023-02-17 19:23:54.376751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:54.378323"], ["updated_at", "2023-02-17 19:23:54.378323"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:54.380155"], ["updated_at", "2023-02-17 19:23:54.380155"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:54.381861"], ["updated_at", "2023-02-17 19:23:54.381861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:54.383674"], ["updated_at", "2023-02-17 19:23:54.383674"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:54.385345"], ["updated_at", "2023-02-17 19:23:54.385345"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:54.387011"], ["updated_at", "2023-02-17 19:23:54.387011"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:54.388322"], ["updated_at", "2023-02-17 19:23:54.388322"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:54.390051"], ["updated_at", "2023-02-17 19:23:54.390051"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:54.391367"], ["updated_at", "2023-02-17 19:23:54.391367"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:54.392749"], ["updated_at", "2023-02-17 19:23:54.392749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:54.393995"], ["updated_at", "2023-02-17 19:23:54.393995"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:54.395379"], ["updated_at", "2023-02-17 19:23:54.395379"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:54.396532"], ["updated_at", "2023-02-17 19:23:54.396532"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:54.397904"], ["updated_at", "2023-02-17 19:23:54.397904"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:54.399072"], ["updated_at", "2023-02-17 19:23:54.399072"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:54.400395"], ["updated_at", "2023-02-17 19:23:54.400395"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:54.401629"], ["updated_at", "2023-02-17 19:23:54.401629"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:54.403020"], ["updated_at", "2023-02-17 19:23:54.403020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:54.404127"], ["updated_at", "2023-02-17 19:23:54.404127"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:54.405384"], ["updated_at", "2023-02-17 19:23:54.405384"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:54.407232"], ["updated_at", "2023-02-17 19:23:54.407232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:54.408870"], ["updated_at", "2023-02-17 19:23:54.408870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:54.410083"], ["updated_at", "2023-02-17 19:23:54.410083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:54.411077"], ["updated_at", "2023-02-17 19:23:54.411077"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:54.422539"], ["updated_at", "2023-02-17 19:23:54.422539"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:54.423854"], ["updated_at", "2023-02-17 19:23:54.423854"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:54.424855"], ["updated_at", "2023-02-17 19:23:54.424855"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.425705"], ["updated_at", "2023-02-17 19:23:54.425705"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.426495"], ["updated_at", "2023-02-17 19:23:54.426495"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.427363"], ["updated_at", "2023-02-17 19:23:54.427363"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.428044"], ["updated_at", "2023-02-17 19:23:54.428044"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.428712"], ["updated_at", "2023-02-17 19:23:54.428712"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:54.429467"], ["updated_at", "2023-02-17 19:23:54.429467"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.430308"], ["updated_at", "2023-02-17 19:23:54.430308"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.431150"], ["updated_at", "2023-02-17 19:23:54.431150"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.431944"], ["updated_at", "2023-02-17 19:23:54.431944"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.432660"], ["updated_at", "2023-02-17 19:23:54.432660"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.433422"], ["updated_at", "2023-02-17 19:23:54.433422"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.434474"], ["updated_at", "2023-02-17 19:23:54.434474"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.435278"], ["updated_at", "2023-02-17 19:23:54.435278"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.436030"], ["updated_at", "2023-02-17 19:23:54.436030"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.436781"], ["updated_at", "2023-02-17 19:23:54.436781"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.437528"], ["updated_at", "2023-02-17 19:23:54.437528"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.438267"], ["updated_at", "2023-02-17 19:23:54.438267"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.439026"], ["updated_at", "2023-02-17 19:23:54.439026"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.0ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:54.450213"], ["updated_at", "2023-02-17 19:23:54.450213"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:54.451434"], ["updated_at", "2023-02-17 19:23:54.451434"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:54.452308"], ["updated_at", "2023-02-17 19:23:54.452308"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:54.453219"], ["updated_at", "2023-02-17 19:23:54.453219"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:54.454053"], ["updated_at", "2023-02-17 19:23:54.454053"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:54.454742"], ["updated_at", "2023-02-17 19:23:54.454742"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:54.455441"], ["updated_at", "2023-02-17 19:23:54.455441"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:54.456116"], ["updated_at", "2023-02-17 19:23:54.456116"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:54.456844"], ["updated_at", "2023-02-17 19:23:54.456844"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.457723"], ["updated_at", "2023-02-17 19:23:54.457723"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.458529"], ["updated_at", "2023-02-17 19:23:54.458529"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.459315"], ["updated_at", "2023-02-17 19:23:54.459315"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.460120"], ["updated_at", "2023-02-17 19:23:54.460120"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.460947"], ["updated_at", "2023-02-17 19:23:54.460947"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.461776"], ["updated_at", "2023-02-17 19:23:54.461776"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.462698"], ["updated_at", "2023-02-17 19:23:54.462698"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.463517"], ["updated_at", "2023-02-17 19:23:54.463517"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.464271"], ["updated_at", "2023-02-17 19:23:54.464271"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.465025"], ["updated_at", "2023-02-17 19:23:54.465025"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.466020"], ["updated_at", "2023-02-17 19:23:54.466020"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.466888"], ["updated_at", "2023-02-17 19:23:54.466888"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.484110"], ["updated_at", "2023-02-17 19:23:54.484110"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.485687"], ["updated_at", "2023-02-17 19:23:54.485687"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.486585"], ["updated_at", "2023-02-17 19:23:54.486585"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.487326"], ["updated_at", "2023-02-17 19:23:54.487326"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.488069"], ["updated_at", "2023-02-17 19:23:54.488069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.488804"], ["updated_at", "2023-02-17 19:23:54.488804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.489632"], ["updated_at", "2023-02-17 19:23:54.489632"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.490386"], ["updated_at", "2023-02-17 19:23:54.490386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.491257"], ["updated_at", "2023-02-17 19:23:54.491257"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.492084"], ["updated_at", "2023-02-17 19:23:54.492084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.492790"], ["updated_at", "2023-02-17 19:23:54.492790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.493515"], ["updated_at", "2023-02-17 19:23:54.493515"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.494248"], ["updated_at", "2023-02-17 19:23:54.494248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.494922"], ["updated_at", "2023-02-17 19:23:54.494922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.495605"], ["updated_at", "2023-02-17 19:23:54.495605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.496221"], ["updated_at", "2023-02-17 19:23:54.496221"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.511958"], ["updated_at", "2023-02-17 19:23:54.511958"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.513023"], ["updated_at", "2023-02-17 19:23:54.513023"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.513836"], ["updated_at", "2023-02-17 19:23:54.513836"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.514592"], ["updated_at", "2023-02-17 19:23:54.514592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.515354"], ["updated_at", "2023-02-17 19:23:54.515354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.516097"], ["updated_at", "2023-02-17 19:23:54.516097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.516800"], ["updated_at", "2023-02-17 19:23:54.516800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.517526"], ["updated_at", "2023-02-17 19:23:54.517526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.518209"], ["updated_at", "2023-02-17 19:23:54.518209"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.518919"], ["updated_at", "2023-02-17 19:23:54.518919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.519673"], ["updated_at", "2023-02-17 19:23:54.519673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.520428"], ["updated_at", "2023-02-17 19:23:54.520428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.521162"], ["updated_at", "2023-02-17 19:23:54.521162"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.521857"], ["updated_at", "2023-02-17 19:23:54.521857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.522552"], ["updated_at", "2023-02-17 19:23:54.522552"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.523257"], ["updated_at", "2023-02-17 19:23:54.523257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.538838"], ["updated_at", "2023-02-17 19:23:54.538838"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.539827"], ["updated_at", "2023-02-17 19:23:54.539827"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.540586"], ["updated_at", "2023-02-17 19:23:54.540586"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.541319"], ["updated_at", "2023-02-17 19:23:54.541319"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.542089"], ["updated_at", "2023-02-17 19:23:54.542089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.542910"], ["updated_at", "2023-02-17 19:23:54.542910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.543661"], ["updated_at", "2023-02-17 19:23:54.543661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.544377"], ["updated_at", "2023-02-17 19:23:54.544377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.545098"], ["updated_at", "2023-02-17 19:23:54.545098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.545811"], ["updated_at", "2023-02-17 19:23:54.545811"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.546515"], ["updated_at", "2023-02-17 19:23:54.546515"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.547222"], ["updated_at", "2023-02-17 19:23:54.547222"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.547918"], ["updated_at", "2023-02-17 19:23:54.547918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.548602"], ["updated_at", "2023-02-17 19:23:54.548602"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.549317"], ["updated_at", "2023-02-17 19:23:54.549317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.550105"], ["updated_at", "2023-02-17 19:23:54.550105"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.565901"], ["updated_at", "2023-02-17 19:23:54.565901"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.566887"], ["updated_at", "2023-02-17 19:23:54.566887"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.567676"], ["updated_at", "2023-02-17 19:23:54.567676"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.568399"], ["updated_at", "2023-02-17 19:23:54.568399"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.569159"], ["updated_at", "2023-02-17 19:23:54.569159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.569887"], ["updated_at", "2023-02-17 19:23:54.569887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.570596"], ["updated_at", "2023-02-17 19:23:54.570596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.571280"], ["updated_at", "2023-02-17 19:23:54.571280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.571987"], ["updated_at", "2023-02-17 19:23:54.571987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.572774"], ["updated_at", "2023-02-17 19:23:54.572774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.573516"], ["updated_at", "2023-02-17 19:23:54.573516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.574261"], ["updated_at", "2023-02-17 19:23:54.574261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.574965"], ["updated_at", "2023-02-17 19:23:54.574965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.575650"], ["updated_at", "2023-02-17 19:23:54.575650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.576370"], ["updated_at", "2023-02-17 19:23:54.576370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.577079"], ["updated_at", "2023-02-17 19:23:54.577079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.592765"], ["updated_at", "2023-02-17 19:23:54.592765"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.593825"], ["updated_at", "2023-02-17 19:23:54.593825"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.594760"], ["updated_at", "2023-02-17 19:23:54.594760"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.595814"], ["updated_at", "2023-02-17 19:23:54.595814"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.596789"], ["updated_at", "2023-02-17 19:23:54.596789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.597772"], ["updated_at", "2023-02-17 19:23:54.597772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.598490"], ["updated_at", "2023-02-17 19:23:54.598490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.599173"], ["updated_at", "2023-02-17 19:23:54.599173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.599860"], ["updated_at", "2023-02-17 19:23:54.599860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.600573"], ["updated_at", "2023-02-17 19:23:54.600573"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.601269"], ["updated_at", "2023-02-17 19:23:54.601269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.601972"], ["updated_at", "2023-02-17 19:23:54.601972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.602715"], ["updated_at", "2023-02-17 19:23:54.602715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.603437"], ["updated_at", "2023-02-17 19:23:54.603437"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.604174"], ["updated_at", "2023-02-17 19:23:54.604174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.604881"], ["updated_at", "2023-02-17 19:23:54.604881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.620581"], ["updated_at", "2023-02-17 19:23:54.620581"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.621571"], ["updated_at", "2023-02-17 19:23:54.621571"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.622356"], ["updated_at", "2023-02-17 19:23:54.622356"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.623073"], ["updated_at", "2023-02-17 19:23:54.623073"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.623812"], ["updated_at", "2023-02-17 19:23:54.623812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.624591"], ["updated_at", "2023-02-17 19:23:54.624591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.625451"], ["updated_at", "2023-02-17 19:23:54.625451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.626212"], ["updated_at", "2023-02-17 19:23:54.626212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.626934"], ["updated_at", "2023-02-17 19:23:54.626934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.627658"], ["updated_at", "2023-02-17 19:23:54.627658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.628312"], ["updated_at", "2023-02-17 19:23:54.628312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.629025"], ["updated_at", "2023-02-17 19:23:54.629025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.629729"], ["updated_at", "2023-02-17 19:23:54.629729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.630423"], ["updated_at", "2023-02-17 19:23:54.630423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.631111"], ["updated_at", "2023-02-17 19:23:54.631111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:54.631801"], ["updated_at", "2023-02-17 19:23:54.631801"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:23:54 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:54.641028"], ["updated_at", "2023-02-17 19:23:54.641028"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:54.642507"], ["updated_at", "2023-02-17 19:23:54.642507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:54.645547"], ["updated_at", "2023-02-17 19:23:54.645547"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:54.646752"], ["updated_at", "2023-02-17 19:23:54.646752"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:54.649553"], ["updated_at", "2023-02-17 19:23:54.649553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:54.650731"], ["updated_at", "2023-02-17 19:23:54.650731"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:54.652820"], ["updated_at", "2023-02-17 19:23:54.652820"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:54.654420"], ["updated_at", "2023-02-17 19:23:54.654420"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:54.656274"], ["updated_at", "2023-02-17 19:23:54.656274"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:54.657604"], ["updated_at", "2023-02-17 19:23:54.657604"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:54.658995"], ["updated_at", "2023-02-17 19:23:54.658995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:54.660171"], ["updated_at", "2023-02-17 19:23:54.660171"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:54.661524"], ["updated_at", "2023-02-17 19:23:54.661524"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:54.662754"], ["updated_at", "2023-02-17 19:23:54.662754"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:54.664378"], ["updated_at", "2023-02-17 19:23:54.664378"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:54.665881"], ["updated_at", "2023-02-17 19:23:54.665881"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:54.667290"], ["updated_at", "2023-02-17 19:23:54.667290"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:54.668491"], ["updated_at", "2023-02-17 19:23:54.668491"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:54.669843"], ["updated_at", "2023-02-17 19:23:54.669843"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:54.671166"], ["updated_at", "2023-02-17 19:23:54.671166"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:54.672571"], ["updated_at", "2023-02-17 19:23:54.672571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:54.673775"], ["updated_at", "2023-02-17 19:23:54.673775"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:54.675383"], ["updated_at", "2023-02-17 19:23:54.675383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:54.676584"], ["updated_at", "2023-02-17 19:23:54.676584"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:54.678001"], ["updated_at", "2023-02-17 19:23:54.678001"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:54.679202"], ["updated_at", "2023-02-17 19:23:54.679202"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:54.680538"], ["updated_at", "2023-02-17 19:23:54.680538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:54.681717"], ["updated_at", "2023-02-17 19:23:54.681717"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:54.683194"], ["updated_at", "2023-02-17 19:23:54.683194"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:54.684726"], ["updated_at", "2023-02-17 19:23:54.684726"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:54.686283"], ["updated_at", "2023-02-17 19:23:54.686283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:54.687646"], ["updated_at", "2023-02-17 19:23:54.687646"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:54.689170"], ["updated_at", "2023-02-17 19:23:54.689170"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:54.690371"], ["updated_at", "2023-02-17 19:23:54.690371"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:54.691722"], ["updated_at", "2023-02-17 19:23:54.691722"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:54.692862"], ["updated_at", "2023-02-17 19:23:54.692862"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:54.694383"], ["updated_at", "2023-02-17 19:23:54.694383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:54.695982"], ["updated_at", "2023-02-17 19:23:54.695982"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:54.697383"], ["updated_at", "2023-02-17 19:23:54.697383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:54.698556"], ["updated_at", "2023-02-17 19:23:54.698556"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:54.699870"], ["updated_at", "2023-02-17 19:23:54.699870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:54.701075"], ["updated_at", "2023-02-17 19:23:54.701075"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:54.702563"], ["updated_at", "2023-02-17 19:23:54.702563"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:54.703801"], ["updated_at", "2023-02-17 19:23:54.703801"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:54.705404"], ["updated_at", "2023-02-17 19:23:54.705404"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:54.706652"], ["updated_at", "2023-02-17 19:23:54.706652"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:54.708025"], ["updated_at", "2023-02-17 19:23:54.708025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:54.709232"], ["updated_at", "2023-02-17 19:23:54.709232"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:54.710663"], ["updated_at", "2023-02-17 19:23:54.710663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:54.711841"], ["updated_at", "2023-02-17 19:23:54.711841"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:54.713189"], ["updated_at", "2023-02-17 19:23:54.713189"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:54.714609"], ["updated_at", "2023-02-17 19:23:54.714609"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:54.716261"], ["updated_at", "2023-02-17 19:23:54.716261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:54.717550"], ["updated_at", "2023-02-17 19:23:54.717550"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:54.719012"], ["updated_at", "2023-02-17 19:23:54.719012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:54.720199"], ["updated_at", "2023-02-17 19:23:54.720199"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:54.721549"], ["updated_at", "2023-02-17 19:23:54.721549"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:54.722729"], ["updated_at", "2023-02-17 19:23:54.722729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:54.724105"], ["updated_at", "2023-02-17 19:23:54.724105"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:54.725756"], ["updated_at", "2023-02-17 19:23:54.725756"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:54.727218"], ["updated_at", "2023-02-17 19:23:54.727218"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:54.728396"], ["updated_at", "2023-02-17 19:23:54.728396"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:54.729795"], ["updated_at", "2023-02-17 19:23:54.729795"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:54.730962"], ["updated_at", "2023-02-17 19:23:54.730962"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:54.732366"], ["updated_at", "2023-02-17 19:23:54.732366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:54.733598"], ["updated_at", "2023-02-17 19:23:54.733598"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:54.735136"], ["updated_at", "2023-02-17 19:23:54.735136"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:54.736347"], ["updated_at", "2023-02-17 19:23:54.736347"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:54.737734"], ["updated_at", "2023-02-17 19:23:54.737734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:54.739146"], ["updated_at", "2023-02-17 19:23:54.739146"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:54.740544"], ["updated_at", "2023-02-17 19:23:54.740544"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:54.741738"], ["updated_at", "2023-02-17 19:23:54.741738"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:54.743089"], ["updated_at", "2023-02-17 19:23:54.743089"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:54.744383"], ["updated_at", "2023-02-17 19:23:54.744383"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:54.746127"], ["updated_at", "2023-02-17 19:23:54.746127"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:54.747347"], ["updated_at", "2023-02-17 19:23:54.747347"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:54.748679"], ["updated_at", "2023-02-17 19:23:54.748679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:54.749880"], ["updated_at", "2023-02-17 19:23:54.749880"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:54.751283"], ["updated_at", "2023-02-17 19:23:54.751283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:54.752457"], ["updated_at", "2023-02-17 19:23:54.752457"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:54.753906"], ["updated_at", "2023-02-17 19:23:54.753906"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:54.755538"], ["updated_at", "2023-02-17 19:23:54.755538"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:54.756966"], ["updated_at", "2023-02-17 19:23:54.756966"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:54.758132"], ["updated_at", "2023-02-17 19:23:54.758132"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:54.759465"], ["updated_at", "2023-02-17 19:23:54.759465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:54.760714"], ["updated_at", "2023-02-17 19:23:54.760714"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:54.762131"], ["updated_at", "2023-02-17 19:23:54.762131"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:54.763273"], ["updated_at", "2023-02-17 19:23:54.763273"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:54.764740"], ["updated_at", "2023-02-17 19:23:54.764740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:54.765996"], ["updated_at", "2023-02-17 19:23:54.765996"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:54.767368"], ["updated_at", "2023-02-17 19:23:54.767368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:54.768602"], ["updated_at", "2023-02-17 19:23:54.768602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:54.770004"], ["updated_at", "2023-02-17 19:23:54.770004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:54.771179"], ["updated_at", "2023-02-17 19:23:54.771179"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:54.772589"], ["updated_at", "2023-02-17 19:23:54.772589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:54.773664"], ["updated_at", "2023-02-17 19:23:54.773664"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:54.775314"], ["updated_at", "2023-02-17 19:23:54.775314"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:54.776881"], ["updated_at", "2023-02-17 19:23:54.776881"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:54.778390"], ["updated_at", "2023-02-17 19:23:54.778390"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:54.779524"], ["updated_at", "2023-02-17 19:23:54.779524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:54.780510"], ["updated_at", "2023-02-17 19:23:54.780510"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:54.792264"], ["updated_at", "2023-02-17 19:23:54.792264"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:54.793535"], ["updated_at", "2023-02-17 19:23:54.793535"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:54.794646"], ["updated_at", "2023-02-17 19:23:54.794646"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.795630"], ["updated_at", "2023-02-17 19:23:54.795630"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.796456"], ["updated_at", "2023-02-17 19:23:54.796456"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.797215"], ["updated_at", "2023-02-17 19:23:54.797215"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.797925"], ["updated_at", "2023-02-17 19:23:54.797925"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.798628"], ["updated_at", "2023-02-17 19:23:54.798628"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:54.799407"], ["updated_at", "2023-02-17 19:23:54.799407"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.800269"], ["updated_at", "2023-02-17 19:23:54.800269"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.801114"], ["updated_at", "2023-02-17 19:23:54.801114"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.801876"], ["updated_at", "2023-02-17 19:23:54.801876"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.802634"], ["updated_at", "2023-02-17 19:23:54.802634"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.803385"], ["updated_at", "2023-02-17 19:23:54.803385"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.804251"], ["updated_at", "2023-02-17 19:23:54.804251"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.805426"], ["updated_at", "2023-02-17 19:23:54.805426"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.806265"], ["updated_at", "2023-02-17 19:23:54.806265"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.807021"], ["updated_at", "2023-02-17 19:23:54.807021"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.807754"], ["updated_at", "2023-02-17 19:23:54.807754"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.808495"], ["updated_at", "2023-02-17 19:23:54.808495"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.809261"], ["updated_at", "2023-02-17 19:23:54.809261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:54.820884"], ["updated_at", "2023-02-17 19:23:54.820884"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:54.822146"], ["updated_at", "2023-02-17 19:23:54.822146"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:54.823060"], ["updated_at", "2023-02-17 19:23:54.823060"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:54.823890"], ["updated_at", "2023-02-17 19:23:54.823890"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:54.824777"], ["updated_at", "2023-02-17 19:23:54.824777"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:54.825572"], ["updated_at", "2023-02-17 19:23:54.825572"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:54.826302"], ["updated_at", "2023-02-17 19:23:54.826302"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:54.827014"], ["updated_at", "2023-02-17 19:23:54.827014"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:54.827807"], ["updated_at", "2023-02-17 19:23:54.827807"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.828715"], ["updated_at", "2023-02-17 19:23:54.828715"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.829533"], ["updated_at", "2023-02-17 19:23:54.829533"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.830321"], ["updated_at", "2023-02-17 19:23:54.830321"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.831079"], ["updated_at", "2023-02-17 19:23:54.831079"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.831818"], ["updated_at", "2023-02-17 19:23:54.831818"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.832562"], ["updated_at", "2023-02-17 19:23:54.832562"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.833309"], ["updated_at", "2023-02-17 19:23:54.833309"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.834131"], ["updated_at", "2023-02-17 19:23:54.834131"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.835278"], ["updated_at", "2023-02-17 19:23:54.835278"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.836145"], ["updated_at", "2023-02-17 19:23:54.836145"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.836895"], ["updated_at", "2023-02-17 19:23:54.836895"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:54.837665"], ["updated_at", "2023-02-17 19:23:54.837665"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.854244"], ["updated_at", "2023-02-17 19:23:54.854244"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.855467"], ["updated_at", "2023-02-17 19:23:54.855467"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.856353"], ["updated_at", "2023-02-17 19:23:54.856353"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.857153"], ["updated_at", "2023-02-17 19:23:54.857153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.857955"], ["updated_at", "2023-02-17 19:23:54.857955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.858746"], ["updated_at", "2023-02-17 19:23:54.858746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.859467"], ["updated_at", "2023-02-17 19:23:54.859467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.860148"], ["updated_at", "2023-02-17 19:23:54.860148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.860852"], ["updated_at", "2023-02-17 19:23:54.860852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.861562"], ["updated_at", "2023-02-17 19:23:54.861562"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.862257"], ["updated_at", "2023-02-17 19:23:54.862257"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.862952"], ["updated_at", "2023-02-17 19:23:54.862952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.863639"], ["updated_at", "2023-02-17 19:23:54.863639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.864499"], ["updated_at", "2023-02-17 19:23:54.864499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.865731"], ["updated_at", "2023-02-17 19:23:54.865731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:54.866616"], ["updated_at", "2023-02-17 19:23:54.866616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.883005"], ["updated_at", "2023-02-17 19:23:54.883005"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.883977"], ["updated_at", "2023-02-17 19:23:54.883977"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.884839"], ["updated_at", "2023-02-17 19:23:54.884839"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.885722"], ["updated_at", "2023-02-17 19:23:54.885722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.886598"], ["updated_at", "2023-02-17 19:23:54.886598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.887477"], ["updated_at", "2023-02-17 19:23:54.887477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.888258"], ["updated_at", "2023-02-17 19:23:54.888258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.889027"], ["updated_at", "2023-02-17 19:23:54.889027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.889869"], ["updated_at", "2023-02-17 19:23:54.889869"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.890618"], ["updated_at", "2023-02-17 19:23:54.890618"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.891354"], ["updated_at", "2023-02-17 19:23:54.891354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.892055"], ["updated_at", "2023-02-17 19:23:54.892055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.892723"], ["updated_at", "2023-02-17 19:23:54.892723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.893466"], ["updated_at", "2023-02-17 19:23:54.893466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.894222"], ["updated_at", "2023-02-17 19:23:54.894222"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:54.895312"], ["updated_at", "2023-02-17 19:23:54.895312"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.911505"], ["updated_at", "2023-02-17 19:23:54.911505"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.912511"], ["updated_at", "2023-02-17 19:23:54.912511"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.913309"], ["updated_at", "2023-02-17 19:23:54.913309"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.914041"], ["updated_at", "2023-02-17 19:23:54.914041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.914926"], ["updated_at", "2023-02-17 19:23:54.914926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.915769"], ["updated_at", "2023-02-17 19:23:54.915769"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.916511"], ["updated_at", "2023-02-17 19:23:54.916511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.917242"], ["updated_at", "2023-02-17 19:23:54.917242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.917920"], ["updated_at", "2023-02-17 19:23:54.917920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.918625"], ["updated_at", "2023-02-17 19:23:54.918625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.919328"], ["updated_at", "2023-02-17 19:23:54.919328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.920047"], ["updated_at", "2023-02-17 19:23:54.920047"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.920756"], ["updated_at", "2023-02-17 19:23:54.920756"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.921471"], ["updated_at", "2023-02-17 19:23:54.921471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.922202"], ["updated_at", "2023-02-17 19:23:54.922202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:54.922895"], ["updated_at", "2023-02-17 19:23:54.922895"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.939468"], ["updated_at", "2023-02-17 19:23:54.939468"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.940532"], ["updated_at", "2023-02-17 19:23:54.940532"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.941395"], ["updated_at", "2023-02-17 19:23:54.941395"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.942113"], ["updated_at", "2023-02-17 19:23:54.942113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.942895"], ["updated_at", "2023-02-17 19:23:54.942895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.943624"], ["updated_at", "2023-02-17 19:23:54.943624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.944320"], ["updated_at", "2023-02-17 19:23:54.944320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.945178"], ["updated_at", "2023-02-17 19:23:54.945178"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.945926"], ["updated_at", "2023-02-17 19:23:54.945926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.946636"], ["updated_at", "2023-02-17 19:23:54.946636"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.947371"], ["updated_at", "2023-02-17 19:23:54.947371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.948126"], ["updated_at", "2023-02-17 19:23:54.948126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.948830"], ["updated_at", "2023-02-17 19:23:54.948830"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.949554"], ["updated_at", "2023-02-17 19:23:54.949554"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.950275"], ["updated_at", "2023-02-17 19:23:54.950275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:54.950948"], ["updated_at", "2023-02-17 19:23:54.950948"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.968373"], ["updated_at", "2023-02-17 19:23:54.968373"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.969340"], ["updated_at", "2023-02-17 19:23:54.969340"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:54.970143"], ["updated_at", "2023-02-17 19:23:54.970143"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:54.970957"], ["updated_at", "2023-02-17 19:23:54.970957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.971768"], ["updated_at", "2023-02-17 19:23:54.971768"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.972511"], ["updated_at", "2023-02-17 19:23:54.972511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.973705"], ["updated_at", "2023-02-17 19:23:54.973705"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.974902"], ["updated_at", "2023-02-17 19:23:54.974902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.976044"], ["updated_at", "2023-02-17 19:23:54.976044"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.976845"], ["updated_at", "2023-02-17 19:23:54.976845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.977570"], ["updated_at", "2023-02-17 19:23:54.977570"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.978333"], ["updated_at", "2023-02-17 19:23:54.978333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.979085"], ["updated_at", "2023-02-17 19:23:54.979085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.979813"], ["updated_at", "2023-02-17 19:23:54.979813"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.980529"], ["updated_at", "2023-02-17 19:23:54.980529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:54.981224"], ["updated_at", "2023-02-17 19:23:54.981224"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:54.998554"], ["updated_at", "2023-02-17 19:23:54.998554"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:54.999578"], ["updated_at", "2023-02-17 19:23:54.999578"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.000333"], ["updated_at", "2023-02-17 19:23:55.000333"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.001083"], ["updated_at", "2023-02-17 19:23:55.001083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.001854"], ["updated_at", "2023-02-17 19:23:55.001854"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.002592"], ["updated_at", "2023-02-17 19:23:55.002592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.003320"], ["updated_at", "2023-02-17 19:23:55.003320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.004039"], ["updated_at", "2023-02-17 19:23:55.004039"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.004742"], ["updated_at", "2023-02-17 19:23:55.004742"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.005475"], ["updated_at", "2023-02-17 19:23:55.005475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.006221"], ["updated_at", "2023-02-17 19:23:55.006221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.007025"], ["updated_at", "2023-02-17 19:23:55.007025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.007880"], ["updated_at", "2023-02-17 19:23:55.007880"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.008612"], ["updated_at", "2023-02-17 19:23:55.008612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.009347"], ["updated_at", "2023-02-17 19:23:55.009347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.010052"], ["updated_at", "2023-02-17 19:23:55.010052"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:23:55 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 15ms (Views: 11.2ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:55.034652"], ["updated_at", "2023-02-17 19:23:55.034652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:55.036158"], ["updated_at", "2023-02-17 19:23:55.036158"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:55.039136"], ["updated_at", "2023-02-17 19:23:55.039136"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:55.040347"], ["updated_at", "2023-02-17 19:23:55.040347"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:55.043205"], ["updated_at", "2023-02-17 19:23:55.043205"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:55.044442"], ["updated_at", "2023-02-17 19:23:55.044442"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:55.046634"], ["updated_at", "2023-02-17 19:23:55.046634"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:55.048076"], ["updated_at", "2023-02-17 19:23:55.048076"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:55.049647"], ["updated_at", "2023-02-17 19:23:55.049647"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:55.050993"], ["updated_at", "2023-02-17 19:23:55.050993"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:55.052489"], ["updated_at", "2023-02-17 19:23:55.052489"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:55.053729"], ["updated_at", "2023-02-17 19:23:55.053729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:55.055127"], ["updated_at", "2023-02-17 19:23:55.055127"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:55.056395"], ["updated_at", "2023-02-17 19:23:55.056395"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:55.057902"], ["updated_at", "2023-02-17 19:23:55.057902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:55.059357"], ["updated_at", "2023-02-17 19:23:55.059357"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:55.061089"], ["updated_at", "2023-02-17 19:23:55.061089"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:55.062654"], ["updated_at", "2023-02-17 19:23:55.062654"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:55.064370"], ["updated_at", "2023-02-17 19:23:55.064370"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:55.066130"], ["updated_at", "2023-02-17 19:23:55.066130"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:55.067773"], ["updated_at", "2023-02-17 19:23:55.067773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:55.069015"], ["updated_at", "2023-02-17 19:23:55.069015"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:55.070425"], ["updated_at", "2023-02-17 19:23:55.070425"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:55.071649"], ["updated_at", "2023-02-17 19:23:55.071649"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:55.073048"], ["updated_at", "2023-02-17 19:23:55.073048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:55.074268"], ["updated_at", "2023-02-17 19:23:55.074268"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:55.075717"], ["updated_at", "2023-02-17 19:23:55.075717"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:55.076956"], ["updated_at", "2023-02-17 19:23:55.076956"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:55.078330"], ["updated_at", "2023-02-17 19:23:55.078330"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:55.079496"], ["updated_at", "2023-02-17 19:23:55.079496"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:55.080847"], ["updated_at", "2023-02-17 19:23:55.080847"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:55.082125"], ["updated_at", "2023-02-17 19:23:55.082125"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:55.083581"], ["updated_at", "2023-02-17 19:23:55.083581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:55.084755"], ["updated_at", "2023-02-17 19:23:55.084755"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:55.086162"], ["updated_at", "2023-02-17 19:23:55.086162"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:55.087335"], ["updated_at", "2023-02-17 19:23:55.087335"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:55.088689"], ["updated_at", "2023-02-17 19:23:55.088689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:55.090037"], ["updated_at", "2023-02-17 19:23:55.090037"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:55.091505"], ["updated_at", "2023-02-17 19:23:55.091505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:55.092887"], ["updated_at", "2023-02-17 19:23:55.092887"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:55.094320"], ["updated_at", "2023-02-17 19:23:55.094320"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:55.095524"], ["updated_at", "2023-02-17 19:23:55.095524"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:55.096927"], ["updated_at", "2023-02-17 19:23:55.096927"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.098148"], ["updated_at", "2023-02-17 19:23:55.098148"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:55.099548"], ["updated_at", "2023-02-17 19:23:55.099548"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:55.100783"], ["updated_at", "2023-02-17 19:23:55.100783"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:55.102197"], ["updated_at", "2023-02-17 19:23:55.102197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:55.103401"], ["updated_at", "2023-02-17 19:23:55.103401"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:55.104736"], ["updated_at", "2023-02-17 19:23:55.104736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:55.105977"], ["updated_at", "2023-02-17 19:23:55.105977"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:55.107404"], ["updated_at", "2023-02-17 19:23:55.107404"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:55.108632"], ["updated_at", "2023-02-17 19:23:55.108632"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:55.110028"], ["updated_at", "2023-02-17 19:23:55.110028"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:55.111231"], ["updated_at", "2023-02-17 19:23:55.111231"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:55.112628"], ["updated_at", "2023-02-17 19:23:55.112628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:55.113838"], ["updated_at", "2023-02-17 19:23:55.113838"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:55.115365"], ["updated_at", "2023-02-17 19:23:55.115365"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:55.116615"], ["updated_at", "2023-02-17 19:23:55.116615"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:55.118012"], ["updated_at", "2023-02-17 19:23:55.118012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:55.119186"], ["updated_at", "2023-02-17 19:23:55.119186"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:55.120540"], ["updated_at", "2023-02-17 19:23:55.120540"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:55.121748"], ["updated_at", "2023-02-17 19:23:55.121748"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:55.123221"], ["updated_at", "2023-02-17 19:23:55.123221"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.124397"], ["updated_at", "2023-02-17 19:23:55.124397"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:55.125773"], ["updated_at", "2023-02-17 19:23:55.125773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:55.126986"], ["updated_at", "2023-02-17 19:23:55.126986"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:55.128321"], ["updated_at", "2023-02-17 19:23:55.128321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:55.129529"], ["updated_at", "2023-02-17 19:23:55.129529"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:55.130956"], ["updated_at", "2023-02-17 19:23:55.130956"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.132124"], ["updated_at", "2023-02-17 19:23:55.132124"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:55.133472"], ["updated_at", "2023-02-17 19:23:55.133472"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:55.134651"], ["updated_at", "2023-02-17 19:23:55.134651"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:55.136009"], ["updated_at", "2023-02-17 19:23:55.136009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:55.137273"], ["updated_at", "2023-02-17 19:23:55.137273"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:55.138690"], ["updated_at", "2023-02-17 19:23:55.138690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:55.139881"], ["updated_at", "2023-02-17 19:23:55.139881"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:55.141248"], ["updated_at", "2023-02-17 19:23:55.141248"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:55.142465"], ["updated_at", "2023-02-17 19:23:55.142465"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:55.144107"], ["updated_at", "2023-02-17 19:23:55.144107"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:55.145378"], ["updated_at", "2023-02-17 19:23:55.145378"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:55.147015"], ["updated_at", "2023-02-17 19:23:55.147015"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.148235"], ["updated_at", "2023-02-17 19:23:55.148235"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:55.149623"], ["updated_at", "2023-02-17 19:23:55.149623"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:55.150925"], ["updated_at", "2023-02-17 19:23:55.150925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:55.152329"], ["updated_at", "2023-02-17 19:23:55.152329"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:55.153508"], ["updated_at", "2023-02-17 19:23:55.153508"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:55.154856"], ["updated_at", "2023-02-17 19:23:55.154856"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:55.156273"], ["updated_at", "2023-02-17 19:23:55.156273"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:55.157752"], ["updated_at", "2023-02-17 19:23:55.157752"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:55.159049"], ["updated_at", "2023-02-17 19:23:55.159049"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:55.160434"], ["updated_at", "2023-02-17 19:23:55.160434"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:55.161610"], ["updated_at", "2023-02-17 19:23:55.161610"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:55.162969"], ["updated_at", "2023-02-17 19:23:55.162969"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:55.164158"], ["updated_at", "2023-02-17 19:23:55.164158"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:55.165708"], ["updated_at", "2023-02-17 19:23:55.165708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:55.167102"], ["updated_at", "2023-02-17 19:23:55.167102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:55.168402"], ["updated_at", "2023-02-17 19:23:55.168402"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:55.169982"], ["updated_at", "2023-02-17 19:23:55.169982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:55.171532"], ["updated_at", "2023-02-17 19:23:55.171532"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:55.172742"], ["updated_at", "2023-02-17 19:23:55.172742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:55.173835"], ["updated_at", "2023-02-17 19:23:55.173835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:55.185589"], ["updated_at", "2023-02-17 19:23:55.185589"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:55.187032"], ["updated_at", "2023-02-17 19:23:55.187032"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:55.188080"], ["updated_at", "2023-02-17 19:23:55.188080"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.189032"], ["updated_at", "2023-02-17 19:23:55.189032"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.189831"], ["updated_at", "2023-02-17 19:23:55.189831"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.190580"], ["updated_at", "2023-02-17 19:23:55.190580"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.191336"], ["updated_at", "2023-02-17 19:23:55.191336"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.192081"], ["updated_at", "2023-02-17 19:23:55.192081"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:55.192838"], ["updated_at", "2023-02-17 19:23:55.192838"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.193717"], ["updated_at", "2023-02-17 19:23:55.193717"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.194610"], ["updated_at", "2023-02-17 19:23:55.194610"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.195551"], ["updated_at", "2023-02-17 19:23:55.195551"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.196587"], ["updated_at", "2023-02-17 19:23:55.196587"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.197729"], ["updated_at", "2023-02-17 19:23:55.197729"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.198594"], ["updated_at", "2023-02-17 19:23:55.198594"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.199327"], ["updated_at", "2023-02-17 19:23:55.199327"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.200076"], ["updated_at", "2023-02-17 19:23:55.200076"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.200811"], ["updated_at", "2023-02-17 19:23:55.200811"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.201560"], ["updated_at", "2023-02-17 19:23:55.201560"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.202351"], ["updated_at", "2023-02-17 19:23:55.202351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.203104"], ["updated_at", "2023-02-17 19:23:55.203104"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:55.214862"], ["updated_at", "2023-02-17 19:23:55.214862"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:55.216232"], ["updated_at", "2023-02-17 19:23:55.216232"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:55.217157"], ["updated_at", "2023-02-17 19:23:55.217157"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:55.217996"], ["updated_at", "2023-02-17 19:23:55.217996"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:55.218755"], ["updated_at", "2023-02-17 19:23:55.218755"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:55.219519"], ["updated_at", "2023-02-17 19:23:55.219519"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:55.220213"], ["updated_at", "2023-02-17 19:23:55.220213"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:55.220880"], ["updated_at", "2023-02-17 19:23:55.220880"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:55.221669"], ["updated_at", "2023-02-17 19:23:55.221669"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.222549"], ["updated_at", "2023-02-17 19:23:55.222549"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.223361"], ["updated_at", "2023-02-17 19:23:55.223361"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.224114"], ["updated_at", "2023-02-17 19:23:55.224114"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.224855"], ["updated_at", "2023-02-17 19:23:55.224855"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.226020"], ["updated_at", "2023-02-17 19:23:55.226020"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.226983"], ["updated_at", "2023-02-17 19:23:55.226983"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.227774"], ["updated_at", "2023-02-17 19:23:55.227774"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.228542"], ["updated_at", "2023-02-17 19:23:55.228542"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.229339"], ["updated_at", "2023-02-17 19:23:55.229339"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.230095"], ["updated_at", "2023-02-17 19:23:55.230095"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.230844"], ["updated_at", "2023-02-17 19:23:55.230844"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.231607"], ["updated_at", "2023-02-17 19:23:55.231607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.248658"], ["updated_at", "2023-02-17 19:23:55.248658"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.249716"], ["updated_at", "2023-02-17 19:23:55.249716"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.250549"], ["updated_at", "2023-02-17 19:23:55.250549"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.251264"], ["updated_at", "2023-02-17 19:23:55.251264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.252039"], ["updated_at", "2023-02-17 19:23:55.252039"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.252815"], ["updated_at", "2023-02-17 19:23:55.252815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.253535"], ["updated_at", "2023-02-17 19:23:55.253535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.254244"], ["updated_at", "2023-02-17 19:23:55.254244"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.255180"], ["updated_at", "2023-02-17 19:23:55.255180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.256211"], ["updated_at", "2023-02-17 19:23:55.256211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.257005"], ["updated_at", "2023-02-17 19:23:55.257005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.257728"], ["updated_at", "2023-02-17 19:23:55.257728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.258432"], ["updated_at", "2023-02-17 19:23:55.258432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.259166"], ["updated_at", "2023-02-17 19:23:55.259166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.259856"], ["updated_at", "2023-02-17 19:23:55.259856"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.260555"], ["updated_at", "2023-02-17 19:23:55.260555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.276595"], ["updated_at", "2023-02-17 19:23:55.276595"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.277629"], ["updated_at", "2023-02-17 19:23:55.277629"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.278438"], ["updated_at", "2023-02-17 19:23:55.278438"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.279187"], ["updated_at", "2023-02-17 19:23:55.279187"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.279986"], ["updated_at", "2023-02-17 19:23:55.279986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.280715"], ["updated_at", "2023-02-17 19:23:55.280715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.281436"], ["updated_at", "2023-02-17 19:23:55.281436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.282139"], ["updated_at", "2023-02-17 19:23:55.282139"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.282820"], ["updated_at", "2023-02-17 19:23:55.282820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.283543"], ["updated_at", "2023-02-17 19:23:55.283543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.284256"], ["updated_at", "2023-02-17 19:23:55.284256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.285151"], ["updated_at", "2023-02-17 19:23:55.285151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.286215"], ["updated_at", "2023-02-17 19:23:55.286215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.286999"], ["updated_at", "2023-02-17 19:23:55.286999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.287723"], ["updated_at", "2023-02-17 19:23:55.287723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.288434"], ["updated_at", "2023-02-17 19:23:55.288434"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.304812"], ["updated_at", "2023-02-17 19:23:55.304812"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.305927"], ["updated_at", "2023-02-17 19:23:55.305927"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.306749"], ["updated_at", "2023-02-17 19:23:55.306749"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.307483"], ["updated_at", "2023-02-17 19:23:55.307483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.308257"], ["updated_at", "2023-02-17 19:23:55.308257"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.309043"], ["updated_at", "2023-02-17 19:23:55.309043"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.309809"], ["updated_at", "2023-02-17 19:23:55.309809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.310530"], ["updated_at", "2023-02-17 19:23:55.310530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.311235"], ["updated_at", "2023-02-17 19:23:55.311235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.311921"], ["updated_at", "2023-02-17 19:23:55.311921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.312637"], ["updated_at", "2023-02-17 19:23:55.312637"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.313400"], ["updated_at", "2023-02-17 19:23:55.313400"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.314095"], ["updated_at", "2023-02-17 19:23:55.314095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.314803"], ["updated_at", "2023-02-17 19:23:55.314803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.315816"], ["updated_at", "2023-02-17 19:23:55.315816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.316808"], ["updated_at", "2023-02-17 19:23:55.316808"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.333568"], ["updated_at", "2023-02-17 19:23:55.333568"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.334602"], ["updated_at", "2023-02-17 19:23:55.334602"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.335462"], ["updated_at", "2023-02-17 19:23:55.335462"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.336381"], ["updated_at", "2023-02-17 19:23:55.336381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.337204"], ["updated_at", "2023-02-17 19:23:55.337204"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.337965"], ["updated_at", "2023-02-17 19:23:55.337965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.338763"], ["updated_at", "2023-02-17 19:23:55.338763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.339590"], ["updated_at", "2023-02-17 19:23:55.339590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.340366"], ["updated_at", "2023-02-17 19:23:55.340366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.341108"], ["updated_at", "2023-02-17 19:23:55.341108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.341843"], ["updated_at", "2023-02-17 19:23:55.341843"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.342574"], ["updated_at", "2023-02-17 19:23:55.342574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.343281"], ["updated_at", "2023-02-17 19:23:55.343281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.343996"], ["updated_at", "2023-02-17 19:23:55.343996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.344708"], ["updated_at", "2023-02-17 19:23:55.344708"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.345746"], ["updated_at", "2023-02-17 19:23:55.345746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (6.5ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.369535"], ["updated_at", "2023-02-17 19:23:55.369535"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.370601"], ["updated_at", "2023-02-17 19:23:55.370601"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.371617"], ["updated_at", "2023-02-17 19:23:55.371617"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.372455"], ["updated_at", "2023-02-17 19:23:55.372455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.373267"], ["updated_at", "2023-02-17 19:23:55.373267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.374016"], ["updated_at", "2023-02-17 19:23:55.374016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.374734"], ["updated_at", "2023-02-17 19:23:55.374734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.375595"], ["updated_at", "2023-02-17 19:23:55.375595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.376649"], ["updated_at", "2023-02-17 19:23:55.376649"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.377446"], ["updated_at", "2023-02-17 19:23:55.377446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.378140"], ["updated_at", "2023-02-17 19:23:55.378140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.378844"], ["updated_at", "2023-02-17 19:23:55.378844"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.379574"], ["updated_at", "2023-02-17 19:23:55.379574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.380267"], ["updated_at", "2023-02-17 19:23:55.380267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.380976"], ["updated_at", "2023-02-17 19:23:55.380976"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.381686"], ["updated_at", "2023-02-17 19:23:55.381686"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.397946"], ["updated_at", "2023-02-17 19:23:55.397946"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.398973"], ["updated_at", "2023-02-17 19:23:55.398973"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.399718"], ["updated_at", "2023-02-17 19:23:55.399718"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.400443"], ["updated_at", "2023-02-17 19:23:55.400443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.401235"], ["updated_at", "2023-02-17 19:23:55.401235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.401972"], ["updated_at", "2023-02-17 19:23:55.401972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.402689"], ["updated_at", "2023-02-17 19:23:55.402689"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.403395"], ["updated_at", "2023-02-17 19:23:55.403395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.404076"], ["updated_at", "2023-02-17 19:23:55.404076"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.404766"], ["updated_at", "2023-02-17 19:23:55.404766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.405709"], ["updated_at", "2023-02-17 19:23:55.405709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.406734"], ["updated_at", "2023-02-17 19:23:55.406734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.407509"], ["updated_at", "2023-02-17 19:23:55.407509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.408207"], ["updated_at", "2023-02-17 19:23:55.408207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.408884"], ["updated_at", "2023-02-17 19:23:55.408884"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.409595"], ["updated_at", "2023-02-17 19:23:55.409595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:23:55 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:55.427358"], ["updated_at", "2023-02-17 19:23:55.427358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:55.428849"], ["updated_at", "2023-02-17 19:23:55.428849"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:55.431749"], ["updated_at", "2023-02-17 19:23:55.431749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:55.432918"], ["updated_at", "2023-02-17 19:23:55.432918"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:55.435716"], ["updated_at", "2023-02-17 19:23:55.435716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:55.437216"], ["updated_at", "2023-02-17 19:23:55.437216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:55.439331"], ["updated_at", "2023-02-17 19:23:55.439331"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:55.440711"], ["updated_at", "2023-02-17 19:23:55.440711"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:55.442254"], ["updated_at", "2023-02-17 19:23:55.442254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:55.443584"], ["updated_at", "2023-02-17 19:23:55.443584"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:55.444995"], ["updated_at", "2023-02-17 19:23:55.444995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:55.446387"], ["updated_at", "2023-02-17 19:23:55.446387"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:55.448083"], ["updated_at", "2023-02-17 19:23:55.448083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:55.449288"], ["updated_at", "2023-02-17 19:23:55.449288"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:55.450735"], ["updated_at", "2023-02-17 19:23:55.450735"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:55.451910"], ["updated_at", "2023-02-17 19:23:55.451910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:55.453270"], ["updated_at", "2023-02-17 19:23:55.453270"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:55.454437"], ["updated_at", "2023-02-17 19:23:55.454437"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:55.455817"], ["updated_at", "2023-02-17 19:23:55.455817"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:55.457217"], ["updated_at", "2023-02-17 19:23:55.457217"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:55.458656"], ["updated_at", "2023-02-17 19:23:55.458656"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:55.459831"], ["updated_at", "2023-02-17 19:23:55.459831"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:55.461162"], ["updated_at", "2023-02-17 19:23:55.461162"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:55.462348"], ["updated_at", "2023-02-17 19:23:55.462348"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:55.464498"], ["updated_at", "2023-02-17 19:23:55.464498"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:55.465839"], ["updated_at", "2023-02-17 19:23:55.465839"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:55.467668"], ["updated_at", "2023-02-17 19:23:55.467668"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:55.468966"], ["updated_at", "2023-02-17 19:23:55.468966"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:55.470319"], ["updated_at", "2023-02-17 19:23:55.470319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:55.471477"], ["updated_at", "2023-02-17 19:23:55.471477"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:55.472927"], ["updated_at", "2023-02-17 19:23:55.472927"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:55.474151"], ["updated_at", "2023-02-17 19:23:55.474151"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:55.475649"], ["updated_at", "2023-02-17 19:23:55.475649"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:55.477268"], ["updated_at", "2023-02-17 19:23:55.477268"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:55.478687"], ["updated_at", "2023-02-17 19:23:55.478687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:55.479888"], ["updated_at", "2023-02-17 19:23:55.479888"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:55.481317"], ["updated_at", "2023-02-17 19:23:55.481317"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:55.482495"], ["updated_at", "2023-02-17 19:23:55.482495"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:55.483841"], ["updated_at", "2023-02-17 19:23:55.483841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:55.484999"], ["updated_at", "2023-02-17 19:23:55.484999"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:55.486488"], ["updated_at", "2023-02-17 19:23:55.486488"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:55.487780"], ["updated_at", "2023-02-17 19:23:55.487780"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:55.489186"], ["updated_at", "2023-02-17 19:23:55.489186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.490363"], ["updated_at", "2023-02-17 19:23:55.490363"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:55.491860"], ["updated_at", "2023-02-17 19:23:55.491860"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:55.493079"], ["updated_at", "2023-02-17 19:23:55.493079"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:55.494452"], ["updated_at", "2023-02-17 19:23:55.494452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:55.495783"], ["updated_at", "2023-02-17 19:23:55.495783"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:55.497651"], ["updated_at", "2023-02-17 19:23:55.497651"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:55.498976"], ["updated_at", "2023-02-17 19:23:55.498976"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:55.500337"], ["updated_at", "2023-02-17 19:23:55.500337"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:55.501489"], ["updated_at", "2023-02-17 19:23:55.501489"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:55.502834"], ["updated_at", "2023-02-17 19:23:55.502834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:55.504028"], ["updated_at", "2023-02-17 19:23:55.504028"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:55.505511"], ["updated_at", "2023-02-17 19:23:55.505511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:55.507162"], ["updated_at", "2023-02-17 19:23:55.507162"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:55.508635"], ["updated_at", "2023-02-17 19:23:55.508635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:55.509808"], ["updated_at", "2023-02-17 19:23:55.509808"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:55.511156"], ["updated_at", "2023-02-17 19:23:55.511156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:55.512426"], ["updated_at", "2023-02-17 19:23:55.512426"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:55.513815"], ["updated_at", "2023-02-17 19:23:55.513815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:55.514984"], ["updated_at", "2023-02-17 19:23:55.514984"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:55.516442"], ["updated_at", "2023-02-17 19:23:55.516442"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.517759"], ["updated_at", "2023-02-17 19:23:55.517759"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:55.519124"], ["updated_at", "2023-02-17 19:23:55.519124"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:55.520356"], ["updated_at", "2023-02-17 19:23:55.520356"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:55.521719"], ["updated_at", "2023-02-17 19:23:55.521719"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:55.522899"], ["updated_at", "2023-02-17 19:23:55.522899"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:55.524241"], ["updated_at", "2023-02-17 19:23:55.524241"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.525395"], ["updated_at", "2023-02-17 19:23:55.525395"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:55.527183"], ["updated_at", "2023-02-17 19:23:55.527183"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:55.528514"], ["updated_at", "2023-02-17 19:23:55.528514"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:55.529859"], ["updated_at", "2023-02-17 19:23:55.529859"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:55.531038"], ["updated_at", "2023-02-17 19:23:55.531038"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:55.532358"], ["updated_at", "2023-02-17 19:23:55.532358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:55.533510"], ["updated_at", "2023-02-17 19:23:55.533510"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:55.534924"], ["updated_at", "2023-02-17 19:23:55.534924"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:55.536300"], ["updated_at", "2023-02-17 19:23:55.536300"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:55.537975"], ["updated_at", "2023-02-17 19:23:55.537975"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:55.539191"], ["updated_at", "2023-02-17 19:23:55.539191"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:55.540517"], ["updated_at", "2023-02-17 19:23:55.540517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.541723"], ["updated_at", "2023-02-17 19:23:55.541723"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:55.543144"], ["updated_at", "2023-02-17 19:23:55.543144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:55.544295"], ["updated_at", "2023-02-17 19:23:55.544295"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:55.545622"], ["updated_at", "2023-02-17 19:23:55.545622"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:55.547022"], ["updated_at", "2023-02-17 19:23:55.547022"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:55.548525"], ["updated_at", "2023-02-17 19:23:55.548525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:55.549737"], ["updated_at", "2023-02-17 19:23:55.549737"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:55.551327"], ["updated_at", "2023-02-17 19:23:55.551327"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:55.552719"], ["updated_at", "2023-02-17 19:23:55.552719"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:55.554337"], ["updated_at", "2023-02-17 19:23:55.554337"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:55.555755"], ["updated_at", "2023-02-17 19:23:55.555755"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:55.557553"], ["updated_at", "2023-02-17 19:23:55.557553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:55.558790"], ["updated_at", "2023-02-17 19:23:55.558790"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:55.560148"], ["updated_at", "2023-02-17 19:23:55.560148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:55.561218"], ["updated_at", "2023-02-17 19:23:55.561218"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:55.562425"], ["updated_at", "2023-02-17 19:23:55.562425"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:55.563883"], ["updated_at", "2023-02-17 19:23:55.563883"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:55.565362"], ["updated_at", "2023-02-17 19:23:55.565362"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:55.566809"], ["updated_at", "2023-02-17 19:23:55.566809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:55.567970"], ["updated_at", "2023-02-17 19:23:55.567970"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:55.579754"], ["updated_at", "2023-02-17 19:23:55.579754"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:55.581206"], ["updated_at", "2023-02-17 19:23:55.581206"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:55.582200"], ["updated_at", "2023-02-17 19:23:55.582200"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.583066"], ["updated_at", "2023-02-17 19:23:55.583066"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.583831"], ["updated_at", "2023-02-17 19:23:55.583831"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.584536"], ["updated_at", "2023-02-17 19:23:55.584536"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.585308"], ["updated_at", "2023-02-17 19:23:55.585308"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.586171"], ["updated_at", "2023-02-17 19:23:55.586171"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:55.587254"], ["updated_at", "2023-02-17 19:23:55.587254"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.588216"], ["updated_at", "2023-02-17 19:23:55.588216"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.589102"], ["updated_at", "2023-02-17 19:23:55.589102"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.589850"], ["updated_at", "2023-02-17 19:23:55.589850"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.590600"], ["updated_at", "2023-02-17 19:23:55.590600"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.591338"], ["updated_at", "2023-02-17 19:23:55.591338"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.592053"], ["updated_at", "2023-02-17 19:23:55.592053"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.592858"], ["updated_at", "2023-02-17 19:23:55.592858"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.593633"], ["updated_at", "2023-02-17 19:23:55.593633"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.594375"], ["updated_at", "2023-02-17 19:23:55.594375"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.595109"], ["updated_at", "2023-02-17 19:23:55.595109"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.595850"], ["updated_at", "2023-02-17 19:23:55.595850"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.596982"], ["updated_at", "2023-02-17 19:23:55.596982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:55.608820"], ["updated_at", "2023-02-17 19:23:55.608820"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:55.610064"], ["updated_at", "2023-02-17 19:23:55.610064"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:55.610949"], ["updated_at", "2023-02-17 19:23:55.610949"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:55.611763"], ["updated_at", "2023-02-17 19:23:55.611763"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:55.612480"], ["updated_at", "2023-02-17 19:23:55.612480"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:55.613176"], ["updated_at", "2023-02-17 19:23:55.613176"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:55.613852"], ["updated_at", "2023-02-17 19:23:55.613852"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:55.614544"], ["updated_at", "2023-02-17 19:23:55.614544"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:55.615345"], ["updated_at", "2023-02-17 19:23:55.615345"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.616408"], ["updated_at", "2023-02-17 19:23:55.616408"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.617489"], ["updated_at", "2023-02-17 19:23:55.617489"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.618311"], ["updated_at", "2023-02-17 19:23:55.618311"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.619048"], ["updated_at", "2023-02-17 19:23:55.619048"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.619754"], ["updated_at", "2023-02-17 19:23:55.619754"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.620489"], ["updated_at", "2023-02-17 19:23:55.620489"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.621243"], ["updated_at", "2023-02-17 19:23:55.621243"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.621996"], ["updated_at", "2023-02-17 19:23:55.621996"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.622788"], ["updated_at", "2023-02-17 19:23:55.622788"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.623580"], ["updated_at", "2023-02-17 19:23:55.623580"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.624309"], ["updated_at", "2023-02-17 19:23:55.624309"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:55.625045"], ["updated_at", "2023-02-17 19:23:55.625045"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.642332"], ["updated_at", "2023-02-17 19:23:55.642332"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.643599"], ["updated_at", "2023-02-17 19:23:55.643599"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.644503"], ["updated_at", "2023-02-17 19:23:55.644503"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.645399"], ["updated_at", "2023-02-17 19:23:55.645399"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.646426"], ["updated_at", "2023-02-17 19:23:55.646426"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.647534"], ["updated_at", "2023-02-17 19:23:55.647534"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.648396"], ["updated_at", "2023-02-17 19:23:55.648396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.649165"], ["updated_at", "2023-02-17 19:23:55.649165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.649869"], ["updated_at", "2023-02-17 19:23:55.649869"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.650552"], ["updated_at", "2023-02-17 19:23:55.650552"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.651277"], ["updated_at", "2023-02-17 19:23:55.651277"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.652044"], ["updated_at", "2023-02-17 19:23:55.652044"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.652761"], ["updated_at", "2023-02-17 19:23:55.652761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.653475"], ["updated_at", "2023-02-17 19:23:55.653475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.654179"], ["updated_at", "2023-02-17 19:23:55.654179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:55.654923"], ["updated_at", "2023-02-17 19:23:55.654923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.671647"], ["updated_at", "2023-02-17 19:23:55.671647"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.672666"], ["updated_at", "2023-02-17 19:23:55.672666"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.673425"], ["updated_at", "2023-02-17 19:23:55.673425"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.674167"], ["updated_at", "2023-02-17 19:23:55.674167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.675145"], ["updated_at", "2023-02-17 19:23:55.675145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.675952"], ["updated_at", "2023-02-17 19:23:55.675952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.677009"], ["updated_at", "2023-02-17 19:23:55.677009"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.677928"], ["updated_at", "2023-02-17 19:23:55.677928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.678667"], ["updated_at", "2023-02-17 19:23:55.678667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.679376"], ["updated_at", "2023-02-17 19:23:55.679376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.680075"], ["updated_at", "2023-02-17 19:23:55.680075"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.680971"], ["updated_at", "2023-02-17 19:23:55.680971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.681791"], ["updated_at", "2023-02-17 19:23:55.681791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.682906"], ["updated_at", "2023-02-17 19:23:55.682906"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.683782"], ["updated_at", "2023-02-17 19:23:55.683782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:55.684517"], ["updated_at", "2023-02-17 19:23:55.684517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.701842"], ["updated_at", "2023-02-17 19:23:55.701842"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.703137"], ["updated_at", "2023-02-17 19:23:55.703137"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.704044"], ["updated_at", "2023-02-17 19:23:55.704044"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.704805"], ["updated_at", "2023-02-17 19:23:55.704805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.705640"], ["updated_at", "2023-02-17 19:23:55.705640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.706472"], ["updated_at", "2023-02-17 19:23:55.706472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.707311"], ["updated_at", "2023-02-17 19:23:55.707311"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.708095"], ["updated_at", "2023-02-17 19:23:55.708095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.708885"], ["updated_at", "2023-02-17 19:23:55.708885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.709631"], ["updated_at", "2023-02-17 19:23:55.709631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.710361"], ["updated_at", "2023-02-17 19:23:55.710361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.711089"], ["updated_at", "2023-02-17 19:23:55.711089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.711786"], ["updated_at", "2023-02-17 19:23:55.711786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.712762"], ["updated_at", "2023-02-17 19:23:55.712762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.713761"], ["updated_at", "2023-02-17 19:23:55.713761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:55.714588"], ["updated_at", "2023-02-17 19:23:55.714588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.730595"], ["updated_at", "2023-02-17 19:23:55.730595"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.731627"], ["updated_at", "2023-02-17 19:23:55.731627"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.732623"], ["updated_at", "2023-02-17 19:23:55.732623"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.733685"], ["updated_at", "2023-02-17 19:23:55.733685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.734519"], ["updated_at", "2023-02-17 19:23:55.734519"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.735322"], ["updated_at", "2023-02-17 19:23:55.735322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.736123"], ["updated_at", "2023-02-17 19:23:55.736123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.736925"], ["updated_at", "2023-02-17 19:23:55.736925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.737676"], ["updated_at", "2023-02-17 19:23:55.737676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.738406"], ["updated_at", "2023-02-17 19:23:55.738406"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.739116"], ["updated_at", "2023-02-17 19:23:55.739116"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.739784"], ["updated_at", "2023-02-17 19:23:55.739784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.740478"], ["updated_at", "2023-02-17 19:23:55.740478"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.741179"], ["updated_at", "2023-02-17 19:23:55.741179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.741874"], ["updated_at", "2023-02-17 19:23:55.741874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:55.742878"], ["updated_at", "2023-02-17 19:23:55.742878"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.759340"], ["updated_at", "2023-02-17 19:23:55.759340"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.760354"], ["updated_at", "2023-02-17 19:23:55.760354"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.761136"], ["updated_at", "2023-02-17 19:23:55.761136"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.761871"], ["updated_at", "2023-02-17 19:23:55.761871"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.762978"], ["updated_at", "2023-02-17 19:23:55.762978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.763954"], ["updated_at", "2023-02-17 19:23:55.763954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.764699"], ["updated_at", "2023-02-17 19:23:55.764699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.765440"], ["updated_at", "2023-02-17 19:23:55.765440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.766185"], ["updated_at", "2023-02-17 19:23:55.766185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.766949"], ["updated_at", "2023-02-17 19:23:55.766949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.767668"], ["updated_at", "2023-02-17 19:23:55.767668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.768391"], ["updated_at", "2023-02-17 19:23:55.768391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.769110"], ["updated_at", "2023-02-17 19:23:55.769110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.769845"], ["updated_at", "2023-02-17 19:23:55.769845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.770568"], ["updated_at", "2023-02-17 19:23:55.770568"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:55.771296"], ["updated_at", "2023-02-17 19:23:55.771296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:55.787633"], ["updated_at", "2023-02-17 19:23:55.787633"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:55.788671"], ["updated_at", "2023-02-17 19:23:55.788671"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:55.789480"], ["updated_at", "2023-02-17 19:23:55.789480"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:55.790189"], ["updated_at", "2023-02-17 19:23:55.790189"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.790954"], ["updated_at", "2023-02-17 19:23:55.790954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.791700"], ["updated_at", "2023-02-17 19:23:55.791700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.792551"], ["updated_at", "2023-02-17 19:23:55.792551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.793632"], ["updated_at", "2023-02-17 19:23:55.793632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.794445"], ["updated_at", "2023-02-17 19:23:55.794445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.795152"], ["updated_at", "2023-02-17 19:23:55.795152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.796025"], ["updated_at", "2023-02-17 19:23:55.796025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.796794"], ["updated_at", "2023-02-17 19:23:55.796794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.797522"], ["updated_at", "2023-02-17 19:23:55.797522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.798212"], ["updated_at", "2023-02-17 19:23:55.798212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.798907"], ["updated_at", "2023-02-17 19:23:55.798907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:55.799641"], ["updated_at", "2023-02-17 19:23:55.799641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:23:55 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:55.809303"], ["updated_at", "2023-02-17 19:23:55.809303"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:55.811111"], ["updated_at", "2023-02-17 19:23:55.811111"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:55.814237"], ["updated_at", "2023-02-17 19:23:55.814237"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:55.815460"], ["updated_at", "2023-02-17 19:23:55.815460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:55.818202"], ["updated_at", "2023-02-17 19:23:55.818202"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:55.819400"], ["updated_at", "2023-02-17 19:23:55.819400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:55.821842"], ["updated_at", "2023-02-17 19:23:55.821842"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:55.823680"], ["updated_at", "2023-02-17 19:23:55.823680"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:55.825562"], ["updated_at", "2023-02-17 19:23:55.825562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:55.826997"], ["updated_at", "2023-02-17 19:23:55.826997"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:55.828393"], ["updated_at", "2023-02-17 19:23:55.828393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:55.829717"], ["updated_at", "2023-02-17 19:23:55.829717"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:55.831110"], ["updated_at", "2023-02-17 19:23:55.831110"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:55.832271"], ["updated_at", "2023-02-17 19:23:55.832271"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:55.834129"], ["updated_at", "2023-02-17 19:23:55.834129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:55.835459"], ["updated_at", "2023-02-17 19:23:55.835459"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:55.836867"], ["updated_at", "2023-02-17 19:23:55.836867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:55.838264"], ["updated_at", "2023-02-17 19:23:55.838264"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:55.839664"], ["updated_at", "2023-02-17 19:23:55.839664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:55.840889"], ["updated_at", "2023-02-17 19:23:55.840889"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:55.842414"], ["updated_at", "2023-02-17 19:23:55.842414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:55.843821"], ["updated_at", "2023-02-17 19:23:55.843821"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:55.845334"], ["updated_at", "2023-02-17 19:23:55.845334"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:55.846585"], ["updated_at", "2023-02-17 19:23:55.846585"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:55.848017"], ["updated_at", "2023-02-17 19:23:55.848017"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:55.849306"], ["updated_at", "2023-02-17 19:23:55.849306"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:55.850706"], ["updated_at", "2023-02-17 19:23:55.850706"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:55.852019"], ["updated_at", "2023-02-17 19:23:55.852019"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:55.853928"], ["updated_at", "2023-02-17 19:23:55.853928"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:55.855452"], ["updated_at", "2023-02-17 19:23:55.855452"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:55.856871"], ["updated_at", "2023-02-17 19:23:55.856871"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:55.858050"], ["updated_at", "2023-02-17 19:23:55.858050"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:55.859464"], ["updated_at", "2023-02-17 19:23:55.859464"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:55.860626"], ["updated_at", "2023-02-17 19:23:55.860626"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:55.861969"], ["updated_at", "2023-02-17 19:23:55.861969"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:55.863465"], ["updated_at", "2023-02-17 19:23:55.863465"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:55.865082"], ["updated_at", "2023-02-17 19:23:55.865082"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:55.866289"], ["updated_at", "2023-02-17 19:23:55.866289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:55.867727"], ["updated_at", "2023-02-17 19:23:55.867727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:55.868948"], ["updated_at", "2023-02-17 19:23:55.868948"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:55.870348"], ["updated_at", "2023-02-17 19:23:55.870348"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:55.872048"], ["updated_at", "2023-02-17 19:23:55.872048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:55.873652"], ["updated_at", "2023-02-17 19:23:55.873652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.874883"], ["updated_at", "2023-02-17 19:23:55.874883"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:55.876298"], ["updated_at", "2023-02-17 19:23:55.876298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:55.877535"], ["updated_at", "2023-02-17 19:23:55.877535"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:55.878947"], ["updated_at", "2023-02-17 19:23:55.878947"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:55.880162"], ["updated_at", "2023-02-17 19:23:55.880162"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:55.881528"], ["updated_at", "2023-02-17 19:23:55.881528"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:55.882760"], ["updated_at", "2023-02-17 19:23:55.882760"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:55.884537"], ["updated_at", "2023-02-17 19:23:55.884537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:55.885866"], ["updated_at", "2023-02-17 19:23:55.885866"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:55.887214"], ["updated_at", "2023-02-17 19:23:55.887214"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:55.888559"], ["updated_at", "2023-02-17 19:23:55.888559"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:55.890009"], ["updated_at", "2023-02-17 19:23:55.890009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:55.891160"], ["updated_at", "2023-02-17 19:23:55.891160"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:55.892590"], ["updated_at", "2023-02-17 19:23:55.892590"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:55.894201"], ["updated_at", "2023-02-17 19:23:55.894201"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:55.895619"], ["updated_at", "2023-02-17 19:23:55.895619"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:55.896838"], ["updated_at", "2023-02-17 19:23:55.896838"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:55.898197"], ["updated_at", "2023-02-17 19:23:55.898197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:55.899361"], ["updated_at", "2023-02-17 19:23:55.899361"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:55.900881"], ["updated_at", "2023-02-17 19:23:55.900881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.902317"], ["updated_at", "2023-02-17 19:23:55.902317"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:55.903923"], ["updated_at", "2023-02-17 19:23:55.903923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:55.905336"], ["updated_at", "2023-02-17 19:23:55.905336"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:55.906714"], ["updated_at", "2023-02-17 19:23:55.906714"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:55.907857"], ["updated_at", "2023-02-17 19:23:55.907857"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:55.909265"], ["updated_at", "2023-02-17 19:23:55.909265"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.910537"], ["updated_at", "2023-02-17 19:23:55.910537"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:55.911904"], ["updated_at", "2023-02-17 19:23:55.911904"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:55.913292"], ["updated_at", "2023-02-17 19:23:55.913292"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:55.914952"], ["updated_at", "2023-02-17 19:23:55.914952"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:55.916132"], ["updated_at", "2023-02-17 19:23:55.916132"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:55.917598"], ["updated_at", "2023-02-17 19:23:55.917598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:55.918796"], ["updated_at", "2023-02-17 19:23:55.918796"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:55.920082"], ["updated_at", "2023-02-17 19:23:55.920082"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:55.921337"], ["updated_at", "2023-02-17 19:23:55.921337"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:55.922791"], ["updated_at", "2023-02-17 19:23:55.922791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:55.924379"], ["updated_at", "2023-02-17 19:23:55.924379"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:55.925911"], ["updated_at", "2023-02-17 19:23:55.925911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:55.927122"], ["updated_at", "2023-02-17 19:23:55.927122"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:55.928443"], ["updated_at", "2023-02-17 19:23:55.928443"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:55.929615"], ["updated_at", "2023-02-17 19:23:55.929615"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:55.930961"], ["updated_at", "2023-02-17 19:23:55.930961"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:55.932168"], ["updated_at", "2023-02-17 19:23:55.932168"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:55.933779"], ["updated_at", "2023-02-17 19:23:55.933779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:55.935071"], ["updated_at", "2023-02-17 19:23:55.935071"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:55.936455"], ["updated_at", "2023-02-17 19:23:55.936455"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:55.937730"], ["updated_at", "2023-02-17 19:23:55.937730"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:55.939704"], ["updated_at", "2023-02-17 19:23:55.939704"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:55.941501"], ["updated_at", "2023-02-17 19:23:55.941501"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:55.943514"], ["updated_at", "2023-02-17 19:23:55.943514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:55.944993"], ["updated_at", "2023-02-17 19:23:55.944993"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:55.947641"], ["updated_at", "2023-02-17 19:23:55.947641"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:55.955897"], ["updated_at", "2023-02-17 19:23:55.955897"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:55.957971"], ["updated_at", "2023-02-17 19:23:55.957971"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:55.960360"], ["updated_at", "2023-02-17 19:23:55.960360"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (1.7ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:55.964629"], ["updated_at", "2023-02-17 19:23:55.964629"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.3ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:55.978573"], ["updated_at", "2023-02-17 19:23:55.978573"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:55.980840"], ["updated_at", "2023-02-17 19:23:55.980840"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (2.6ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:56.001277"], ["updated_at", "2023-02-17 19:23:56.001277"], ["role_id", 2]]
SurveyQuestion Create (1.5ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:56.005964"], ["updated_at", "2023-02-17 19:23:56.005964"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:56.009144"], ["updated_at", "2023-02-17 19:23:56.009144"]]
QuestionOption Create (1.0ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.010537"], ["updated_at", "2023-02-17 19:23:56.010537"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.013043"], ["updated_at", "2023-02-17 19:23:56.013043"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.014343"], ["updated_at", "2023-02-17 19:23:56.014343"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.015481"], ["updated_at", "2023-02-17 19:23:56.015481"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.016619"], ["updated_at", "2023-02-17 19:23:56.016619"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:56.018144"], ["updated_at", "2023-02-17 19:23:56.018144"]]
LikertScaleQuestion Create (1.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.019575"], ["updated_at", "2023-02-17 19:23:56.019575"]]
LikertScaleQuestion Create (0.7ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.022183"], ["updated_at", "2023-02-17 19:23:56.022183"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.024113"], ["updated_at", "2023-02-17 19:23:56.024113"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.025636"], ["updated_at", "2023-02-17 19:23:56.025636"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.026976"], ["updated_at", "2023-02-17 19:23:56.026976"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.028437"], ["updated_at", "2023-02-17 19:23:56.028437"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.030074"], ["updated_at", "2023-02-17 19:23:56.030074"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.031394"], ["updated_at", "2023-02-17 19:23:56.031394"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.032697"], ["updated_at", "2023-02-17 19:23:56.032697"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.034354"], ["updated_at", "2023-02-17 19:23:56.034354"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.035915"], ["updated_at", "2023-02-17 19:23:56.035915"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.037244"], ["updated_at", "2023-02-17 19:23:56.037244"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:56.054225"], ["updated_at", "2023-02-17 19:23:56.054225"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:56.056455"], ["updated_at", "2023-02-17 19:23:56.056455"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:56.057862"], ["updated_at", "2023-02-17 19:23:56.057862"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:56.059341"], ["updated_at", "2023-02-17 19:23:56.059341"]]
QuestionOption Create (0.4ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:56.060513"], ["updated_at", "2023-02-17 19:23:56.060513"]]
QuestionOption Create (0.3ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:56.062126"], ["updated_at", "2023-02-17 19:23:56.062126"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:56.064856"], ["updated_at", "2023-02-17 19:23:56.064856"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:56.065955"], ["updated_at", "2023-02-17 19:23:56.065955"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:56.067239"], ["updated_at", "2023-02-17 19:23:56.067239"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.068597"], ["updated_at", "2023-02-17 19:23:56.068597"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.070158"], ["updated_at", "2023-02-17 19:23:56.070158"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.074661"], ["updated_at", "2023-02-17 19:23:56.074661"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.077078"], ["updated_at", "2023-02-17 19:23:56.077078"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.078503"], ["updated_at", "2023-02-17 19:23:56.078503"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.079629"], ["updated_at", "2023-02-17 19:23:56.079629"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.080841"], ["updated_at", "2023-02-17 19:23:56.080841"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.081905"], ["updated_at", "2023-02-17 19:23:56.081905"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.082890"], ["updated_at", "2023-02-17 19:23:56.082890"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.084711"], ["updated_at", "2023-02-17 19:23:56.084711"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.085729"], ["updated_at", "2023-02-17 19:23:56.085729"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.086785"], ["updated_at", "2023-02-17 19:23:56.086785"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.8ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.116164"], ["updated_at", "2023-02-17 19:23:56.116164"]]
QuestionAnswer Create (1.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.119312"], ["updated_at", "2023-02-17 19:23:56.119312"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.121896"], ["updated_at", "2023-02-17 19:23:56.121896"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.122958"], ["updated_at", "2023-02-17 19:23:56.122958"]]
LikertScaleAnswer Create (1.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.125484"], ["updated_at", "2023-02-17 19:23:56.125484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.127921"], ["updated_at", "2023-02-17 19:23:56.127921"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.129019"], ["updated_at", "2023-02-17 19:23:56.129019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.130365"], ["updated_at", "2023-02-17 19:23:56.130365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.131328"], ["updated_at", "2023-02-17 19:23:56.131328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.132340"], ["updated_at", "2023-02-17 19:23:56.132340"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.133297"], ["updated_at", "2023-02-17 19:23:56.133297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.135666"], ["updated_at", "2023-02-17 19:23:56.135666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.136807"], ["updated_at", "2023-02-17 19:23:56.136807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.137915"], ["updated_at", "2023-02-17 19:23:56.137915"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.138944"], ["updated_at", "2023-02-17 19:23:56.138944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.139913"], ["updated_at", "2023-02-17 19:23:56.139913"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (3.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.170147"], ["updated_at", "2023-02-17 19:23:56.170147"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.171648"], ["updated_at", "2023-02-17 19:23:56.171648"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.172873"], ["updated_at", "2023-02-17 19:23:56.172873"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.175079"], ["updated_at", "2023-02-17 19:23:56.175079"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.176322"], ["updated_at", "2023-02-17 19:23:56.176322"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.177793"], ["updated_at", "2023-02-17 19:23:56.177793"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.179272"], ["updated_at", "2023-02-17 19:23:56.179272"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.180550"], ["updated_at", "2023-02-17 19:23:56.180550"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.191745"], ["updated_at", "2023-02-17 19:23:56.191745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.198073"], ["updated_at", "2023-02-17 19:23:56.198073"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.199546"], ["updated_at", "2023-02-17 19:23:56.199546"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.202084"], ["updated_at", "2023-02-17 19:23:56.202084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.208030"], ["updated_at", "2023-02-17 19:23:56.208030"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.210308"], ["updated_at", "2023-02-17 19:23:56.210308"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.211616"], ["updated_at", "2023-02-17 19:23:56.211616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.216112"], ["updated_at", "2023-02-17 19:23:56.216112"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.4ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.9ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.267084"], ["updated_at", "2023-02-17 19:23:56.267084"]]
QuestionAnswer Create (2.6ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.268942"], ["updated_at", "2023-02-17 19:23:56.268942"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.275382"], ["updated_at", "2023-02-17 19:23:56.275382"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.279034"], ["updated_at", "2023-02-17 19:23:56.279034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.280288"], ["updated_at", "2023-02-17 19:23:56.280288"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.282021"], ["updated_at", "2023-02-17 19:23:56.282021"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.285941"], ["updated_at", "2023-02-17 19:23:56.285941"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.286951"], ["updated_at", "2023-02-17 19:23:56.286951"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.288334"], ["updated_at", "2023-02-17 19:23:56.288334"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.289738"], ["updated_at", "2023-02-17 19:23:56.289738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.291183"], ["updated_at", "2023-02-17 19:23:56.291183"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.292497"], ["updated_at", "2023-02-17 19:23:56.292497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.294374"], ["updated_at", "2023-02-17 19:23:56.294374"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.295714"], ["updated_at", "2023-02-17 19:23:56.295714"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.297126"], ["updated_at", "2023-02-17 19:23:56.297126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.298485"], ["updated_at", "2023-02-17 19:23:56.298485"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.321068"], ["updated_at", "2023-02-17 19:23:56.321068"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.322597"], ["updated_at", "2023-02-17 19:23:56.322597"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.323810"], ["updated_at", "2023-02-17 19:23:56.323810"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.324755"], ["updated_at", "2023-02-17 19:23:56.324755"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.326420"], ["updated_at", "2023-02-17 19:23:56.326420"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.327388"], ["updated_at", "2023-02-17 19:23:56.327388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.328653"], ["updated_at", "2023-02-17 19:23:56.328653"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.329850"], ["updated_at", "2023-02-17 19:23:56.329850"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.330955"], ["updated_at", "2023-02-17 19:23:56.330955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.331965"], ["updated_at", "2023-02-17 19:23:56.331965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.332697"], ["updated_at", "2023-02-17 19:23:56.332697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.333410"], ["updated_at", "2023-02-17 19:23:56.333410"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.335266"], ["updated_at", "2023-02-17 19:23:56.335266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.336257"], ["updated_at", "2023-02-17 19:23:56.336257"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.337002"], ["updated_at", "2023-02-17 19:23:56.337002"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.338057"], ["updated_at", "2023-02-17 19:23:56.338057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.359873"], ["updated_at", "2023-02-17 19:23:56.359873"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.361310"], ["updated_at", "2023-02-17 19:23:56.361310"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.362215"], ["updated_at", "2023-02-17 19:23:56.362215"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.363712"], ["updated_at", "2023-02-17 19:23:56.363712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.365161"], ["updated_at", "2023-02-17 19:23:56.365161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.366058"], ["updated_at", "2023-02-17 19:23:56.366058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.367343"], ["updated_at", "2023-02-17 19:23:56.367343"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.368179"], ["updated_at", "2023-02-17 19:23:56.368179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.369179"], ["updated_at", "2023-02-17 19:23:56.369179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.369979"], ["updated_at", "2023-02-17 19:23:56.369979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.370772"], ["updated_at", "2023-02-17 19:23:56.370772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.371533"], ["updated_at", "2023-02-17 19:23:56.371533"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.372453"], ["updated_at", "2023-02-17 19:23:56.372453"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.373602"], ["updated_at", "2023-02-17 19:23:56.373602"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.374934"], ["updated_at", "2023-02-17 19:23:56.374934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.375720"], ["updated_at", "2023-02-17 19:23:56.375720"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.397348"], ["updated_at", "2023-02-17 19:23:56.397348"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.398466"], ["updated_at", "2023-02-17 19:23:56.398466"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.399337"], ["updated_at", "2023-02-17 19:23:56.399337"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.400087"], ["updated_at", "2023-02-17 19:23:56.400087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.400988"], ["updated_at", "2023-02-17 19:23:56.400988"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.401734"], ["updated_at", "2023-02-17 19:23:56.401734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.402511"], ["updated_at", "2023-02-17 19:23:56.402511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.403254"], ["updated_at", "2023-02-17 19:23:56.403254"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.403961"], ["updated_at", "2023-02-17 19:23:56.403961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.405047"], ["updated_at", "2023-02-17 19:23:56.405047"]]
LikertScaleAnswer Create (0.6ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.405812"], ["updated_at", "2023-02-17 19:23:56.405812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.407552"], ["updated_at", "2023-02-17 19:23:56.407552"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.408631"], ["updated_at", "2023-02-17 19:23:56.408631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.409460"], ["updated_at", "2023-02-17 19:23:56.409460"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.410208"], ["updated_at", "2023-02-17 19:23:56.410208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.418439"], ["updated_at", "2023-02-17 19:23:56.418439"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:23:56 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.3ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.3ms | Allocations: 319)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.6ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (2.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:56.432102"], ["updated_at", "2023-02-17 19:23:56.432102"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (1.3ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:56.436143"], ["updated_at", "2023-02-17 19:23:56.436143"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:56.442182"], ["updated_at", "2023-02-17 19:23:56.442182"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:56.443536"], ["updated_at", "2023-02-17 19:23:56.443536"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:56.446838"], ["updated_at", "2023-02-17 19:23:56.446838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:56.448208"], ["updated_at", "2023-02-17 19:23:56.448208"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:56.450529"], ["updated_at", "2023-02-17 19:23:56.450529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:56.452087"], ["updated_at", "2023-02-17 19:23:56.452087"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:56.453884"], ["updated_at", "2023-02-17 19:23:56.453884"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:56.455795"], ["updated_at", "2023-02-17 19:23:56.455795"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:56.457538"], ["updated_at", "2023-02-17 19:23:56.457538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:56.459503"], ["updated_at", "2023-02-17 19:23:56.459503"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:56.461228"], ["updated_at", "2023-02-17 19:23:56.461228"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:56.464024"], ["updated_at", "2023-02-17 19:23:56.464024"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:56.466178"], ["updated_at", "2023-02-17 19:23:56.466178"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:56.468037"], ["updated_at", "2023-02-17 19:23:56.468037"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:56.470331"], ["updated_at", "2023-02-17 19:23:56.470331"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:56.473972"], ["updated_at", "2023-02-17 19:23:56.473972"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:56.477223"], ["updated_at", "2023-02-17 19:23:56.477223"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:56.478938"], ["updated_at", "2023-02-17 19:23:56.478938"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:56.480998"], ["updated_at", "2023-02-17 19:23:56.480998"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:56.482662"], ["updated_at", "2023-02-17 19:23:56.482662"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:56.484480"], ["updated_at", "2023-02-17 19:23:56.484480"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:56.486303"], ["updated_at", "2023-02-17 19:23:56.486303"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:56.488435"], ["updated_at", "2023-02-17 19:23:56.488435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:56.490299"], ["updated_at", "2023-02-17 19:23:56.490299"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:56.492115"], ["updated_at", "2023-02-17 19:23:56.492115"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:56.493762"], ["updated_at", "2023-02-17 19:23:56.493762"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:56.495583"], ["updated_at", "2023-02-17 19:23:56.495583"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:56.497172"], ["updated_at", "2023-02-17 19:23:56.497172"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:56.498645"], ["updated_at", "2023-02-17 19:23:56.498645"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:56.499956"], ["updated_at", "2023-02-17 19:23:56.499956"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:56.501955"], ["updated_at", "2023-02-17 19:23:56.501955"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:56.503262"], ["updated_at", "2023-02-17 19:23:56.503262"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:56.505263"], ["updated_at", "2023-02-17 19:23:56.505263"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:56.506917"], ["updated_at", "2023-02-17 19:23:56.506917"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:56.508825"], ["updated_at", "2023-02-17 19:23:56.508825"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:56.510558"], ["updated_at", "2023-02-17 19:23:56.510558"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:56.513561"], ["updated_at", "2023-02-17 19:23:56.513561"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:56.515361"], ["updated_at", "2023-02-17 19:23:56.515361"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:56.517200"], ["updated_at", "2023-02-17 19:23:56.517200"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:56.518858"], ["updated_at", "2023-02-17 19:23:56.518858"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:56.520660"], ["updated_at", "2023-02-17 19:23:56.520660"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:56.522138"], ["updated_at", "2023-02-17 19:23:56.522138"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:56.523858"], ["updated_at", "2023-02-17 19:23:56.523858"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:56.525684"], ["updated_at", "2023-02-17 19:23:56.525684"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:56.527783"], ["updated_at", "2023-02-17 19:23:56.527783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:56.529144"], ["updated_at", "2023-02-17 19:23:56.529144"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:56.530723"], ["updated_at", "2023-02-17 19:23:56.530723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:56.531975"], ["updated_at", "2023-02-17 19:23:56.531975"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:56.533427"], ["updated_at", "2023-02-17 19:23:56.533427"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:56.534757"], ["updated_at", "2023-02-17 19:23:56.534757"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:56.536369"], ["updated_at", "2023-02-17 19:23:56.536369"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:56.538042"], ["updated_at", "2023-02-17 19:23:56.538042"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:56.539728"], ["updated_at", "2023-02-17 19:23:56.539728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:56.541245"], ["updated_at", "2023-02-17 19:23:56.541245"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:56.543311"], ["updated_at", "2023-02-17 19:23:56.543311"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:56.545147"], ["updated_at", "2023-02-17 19:23:56.545147"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:56.547127"], ["updated_at", "2023-02-17 19:23:56.547127"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:56.548873"], ["updated_at", "2023-02-17 19:23:56.548873"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:56.551632"], ["updated_at", "2023-02-17 19:23:56.551632"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:56.554980"], ["updated_at", "2023-02-17 19:23:56.554980"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:56.556900"], ["updated_at", "2023-02-17 19:23:56.556900"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:56.558561"], ["updated_at", "2023-02-17 19:23:56.558561"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:56.560348"], ["updated_at", "2023-02-17 19:23:56.560348"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:56.562075"], ["updated_at", "2023-02-17 19:23:56.562075"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:56.563922"], ["updated_at", "2023-02-17 19:23:56.563922"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:56.565504"], ["updated_at", "2023-02-17 19:23:56.565504"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:56.567244"], ["updated_at", "2023-02-17 19:23:56.567244"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:56.569196"], ["updated_at", "2023-02-17 19:23:56.569196"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:56.571521"], ["updated_at", "2023-02-17 19:23:56.571521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:56.574073"], ["updated_at", "2023-02-17 19:23:56.574073"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:56.576045"], ["updated_at", "2023-02-17 19:23:56.576045"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:56.577772"], ["updated_at", "2023-02-17 19:23:56.577772"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:56.579452"], ["updated_at", "2023-02-17 19:23:56.579452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:56.580936"], ["updated_at", "2023-02-17 19:23:56.580936"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:56.582654"], ["updated_at", "2023-02-17 19:23:56.582654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:56.584070"], ["updated_at", "2023-02-17 19:23:56.584070"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:56.585761"], ["updated_at", "2023-02-17 19:23:56.585761"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:56.587464"], ["updated_at", "2023-02-17 19:23:56.587464"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:56.589228"], ["updated_at", "2023-02-17 19:23:56.589228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:56.590737"], ["updated_at", "2023-02-17 19:23:56.590737"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:56.592527"], ["updated_at", "2023-02-17 19:23:56.592527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:56.594011"], ["updated_at", "2023-02-17 19:23:56.594011"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:56.595876"], ["updated_at", "2023-02-17 19:23:56.595876"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:56.597438"], ["updated_at", "2023-02-17 19:23:56.597438"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:56.599074"], ["updated_at", "2023-02-17 19:23:56.599074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:56.600628"], ["updated_at", "2023-02-17 19:23:56.600628"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:56.602490"], ["updated_at", "2023-02-17 19:23:56.602490"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:56.603906"], ["updated_at", "2023-02-17 19:23:56.603906"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:56.606240"], ["updated_at", "2023-02-17 19:23:56.606240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:56.608495"], ["updated_at", "2023-02-17 19:23:56.608495"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:56.611075"], ["updated_at", "2023-02-17 19:23:56.611075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:56.612551"], ["updated_at", "2023-02-17 19:23:56.612551"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:56.614196"], ["updated_at", "2023-02-17 19:23:56.614196"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:56.616146"], ["updated_at", "2023-02-17 19:23:56.616146"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:56.618025"], ["updated_at", "2023-02-17 19:23:56.618025"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:56.619673"], ["updated_at", "2023-02-17 19:23:56.619673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:56.621782"], ["updated_at", "2023-02-17 19:23:56.621782"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:56.623140"], ["updated_at", "2023-02-17 19:23:56.623140"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:56.624405"], ["updated_at", "2023-02-17 19:23:56.624405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:56.638424"], ["updated_at", "2023-02-17 19:23:56.638424"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:56.639967"], ["updated_at", "2023-02-17 19:23:56.639967"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:56.642393"], ["updated_at", "2023-02-17 19:23:56.642393"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.643838"], ["updated_at", "2023-02-17 19:23:56.643838"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.645226"], ["updated_at", "2023-02-17 19:23:56.645226"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.646224"], ["updated_at", "2023-02-17 19:23:56.646224"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.647083"], ["updated_at", "2023-02-17 19:23:56.647083"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.647909"], ["updated_at", "2023-02-17 19:23:56.647909"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:56.648785"], ["updated_at", "2023-02-17 19:23:56.648785"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.649795"], ["updated_at", "2023-02-17 19:23:56.649795"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.650807"], ["updated_at", "2023-02-17 19:23:56.650807"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.651888"], ["updated_at", "2023-02-17 19:23:56.651888"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.652745"], ["updated_at", "2023-02-17 19:23:56.652745"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.653614"], ["updated_at", "2023-02-17 19:23:56.653614"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.654907"], ["updated_at", "2023-02-17 19:23:56.654907"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.655934"], ["updated_at", "2023-02-17 19:23:56.655934"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.656945"], ["updated_at", "2023-02-17 19:23:56.656945"]]
LikertScaleQuestion Create (0.7ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.657947"], ["updated_at", "2023-02-17 19:23:56.657947"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.659706"], ["updated_at", "2023-02-17 19:23:56.659706"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.661016"], ["updated_at", "2023-02-17 19:23:56.661016"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.662037"], ["updated_at", "2023-02-17 19:23:56.662037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:56.675424"], ["updated_at", "2023-02-17 19:23:56.675424"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:56.677112"], ["updated_at", "2023-02-17 19:23:56.677112"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:56.678626"], ["updated_at", "2023-02-17 19:23:56.678626"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:56.680984"], ["updated_at", "2023-02-17 19:23:56.680984"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:56.682338"], ["updated_at", "2023-02-17 19:23:56.682338"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:56.690107"], ["updated_at", "2023-02-17 19:23:56.690107"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:56.691046"], ["updated_at", "2023-02-17 19:23:56.691046"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:56.692138"], ["updated_at", "2023-02-17 19:23:56.692138"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:56.693405"], ["updated_at", "2023-02-17 19:23:56.693405"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.694490"], ["updated_at", "2023-02-17 19:23:56.694490"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.695584"], ["updated_at", "2023-02-17 19:23:56.695584"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.696455"], ["updated_at", "2023-02-17 19:23:56.696455"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.697269"], ["updated_at", "2023-02-17 19:23:56.697269"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.698059"], ["updated_at", "2023-02-17 19:23:56.698059"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.698797"], ["updated_at", "2023-02-17 19:23:56.698797"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.699580"], ["updated_at", "2023-02-17 19:23:56.699580"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.700375"], ["updated_at", "2023-02-17 19:23:56.700375"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.701140"], ["updated_at", "2023-02-17 19:23:56.701140"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.701914"], ["updated_at", "2023-02-17 19:23:56.701914"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.702737"], ["updated_at", "2023-02-17 19:23:56.702737"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:56.703554"], ["updated_at", "2023-02-17 19:23:56.703554"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.725208"], ["updated_at", "2023-02-17 19:23:56.725208"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.726497"], ["updated_at", "2023-02-17 19:23:56.726497"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.727596"], ["updated_at", "2023-02-17 19:23:56.727596"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.728442"], ["updated_at", "2023-02-17 19:23:56.728442"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.729980"], ["updated_at", "2023-02-17 19:23:56.729980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.731101"], ["updated_at", "2023-02-17 19:23:56.731101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.731942"], ["updated_at", "2023-02-17 19:23:56.731942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.732791"], ["updated_at", "2023-02-17 19:23:56.732791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.733685"], ["updated_at", "2023-02-17 19:23:56.733685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.734439"], ["updated_at", "2023-02-17 19:23:56.734439"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.735267"], ["updated_at", "2023-02-17 19:23:56.735267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.736288"], ["updated_at", "2023-02-17 19:23:56.736288"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.737702"], ["updated_at", "2023-02-17 19:23:56.737702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.738701"], ["updated_at", "2023-02-17 19:23:56.738701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.739842"], ["updated_at", "2023-02-17 19:23:56.739842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:56.740980"], ["updated_at", "2023-02-17 19:23:56.740980"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.763305"], ["updated_at", "2023-02-17 19:23:56.763305"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.764534"], ["updated_at", "2023-02-17 19:23:56.764534"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.765488"], ["updated_at", "2023-02-17 19:23:56.765488"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.766434"], ["updated_at", "2023-02-17 19:23:56.766434"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.767440"], ["updated_at", "2023-02-17 19:23:56.767440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.768572"], ["updated_at", "2023-02-17 19:23:56.768572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.769506"], ["updated_at", "2023-02-17 19:23:56.769506"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.770555"], ["updated_at", "2023-02-17 19:23:56.770555"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.773069"], ["updated_at", "2023-02-17 19:23:56.773069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.774238"], ["updated_at", "2023-02-17 19:23:56.774238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.775313"], ["updated_at", "2023-02-17 19:23:56.775313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.776450"], ["updated_at", "2023-02-17 19:23:56.776450"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.777292"], ["updated_at", "2023-02-17 19:23:56.777292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.778094"], ["updated_at", "2023-02-17 19:23:56.778094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.779199"], ["updated_at", "2023-02-17 19:23:56.779199"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:56.780037"], ["updated_at", "2023-02-17 19:23:56.780037"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.804356"], ["updated_at", "2023-02-17 19:23:56.804356"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.805927"], ["updated_at", "2023-02-17 19:23:56.805927"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.807321"], ["updated_at", "2023-02-17 19:23:56.807321"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.809598"], ["updated_at", "2023-02-17 19:23:56.809598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.811369"], ["updated_at", "2023-02-17 19:23:56.811369"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.812615"], ["updated_at", "2023-02-17 19:23:56.812615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.814020"], ["updated_at", "2023-02-17 19:23:56.814020"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.815504"], ["updated_at", "2023-02-17 19:23:56.815504"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.816794"], ["updated_at", "2023-02-17 19:23:56.816794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.818128"], ["updated_at", "2023-02-17 19:23:56.818128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.819159"], ["updated_at", "2023-02-17 19:23:56.819159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.820029"], ["updated_at", "2023-02-17 19:23:56.820029"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.821271"], ["updated_at", "2023-02-17 19:23:56.821271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.822341"], ["updated_at", "2023-02-17 19:23:56.822341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.823294"], ["updated_at", "2023-02-17 19:23:56.823294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:56.824153"], ["updated_at", "2023-02-17 19:23:56.824153"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.6ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.850099"], ["updated_at", "2023-02-17 19:23:56.850099"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.851754"], ["updated_at", "2023-02-17 19:23:56.851754"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.853098"], ["updated_at", "2023-02-17 19:23:56.853098"]]
QuestionAnswer Create (0.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.854556"], ["updated_at", "2023-02-17 19:23:56.854556"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.855965"], ["updated_at", "2023-02-17 19:23:56.855965"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.857308"], ["updated_at", "2023-02-17 19:23:56.857308"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.858659"], ["updated_at", "2023-02-17 19:23:56.858659"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.860364"], ["updated_at", "2023-02-17 19:23:56.860364"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.861748"], ["updated_at", "2023-02-17 19:23:56.861748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.863054"], ["updated_at", "2023-02-17 19:23:56.863054"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.864330"], ["updated_at", "2023-02-17 19:23:56.864330"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.865688"], ["updated_at", "2023-02-17 19:23:56.865688"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.866946"], ["updated_at", "2023-02-17 19:23:56.866946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.868345"], ["updated_at", "2023-02-17 19:23:56.868345"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.869440"], ["updated_at", "2023-02-17 19:23:56.869440"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:56.870522"], ["updated_at", "2023-02-17 19:23:56.870522"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.898331"], ["updated_at", "2023-02-17 19:23:56.898331"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.899533"], ["updated_at", "2023-02-17 19:23:56.899533"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.900565"], ["updated_at", "2023-02-17 19:23:56.900565"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.901553"], ["updated_at", "2023-02-17 19:23:56.901553"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.902569"], ["updated_at", "2023-02-17 19:23:56.902569"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.903578"], ["updated_at", "2023-02-17 19:23:56.903578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.905079"], ["updated_at", "2023-02-17 19:23:56.905079"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.906340"], ["updated_at", "2023-02-17 19:23:56.906340"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.907399"], ["updated_at", "2023-02-17 19:23:56.907399"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.908516"], ["updated_at", "2023-02-17 19:23:56.908516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.910749"], ["updated_at", "2023-02-17 19:23:56.910749"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.911991"], ["updated_at", "2023-02-17 19:23:56.911991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.913836"], ["updated_at", "2023-02-17 19:23:56.913836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.915093"], ["updated_at", "2023-02-17 19:23:56.915093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.916262"], ["updated_at", "2023-02-17 19:23:56.916262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:56.917239"], ["updated_at", "2023-02-17 19:23:56.917239"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:56.942014"], ["updated_at", "2023-02-17 19:23:56.942014"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:56.944702"], ["updated_at", "2023-02-17 19:23:56.944702"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:56.946694"], ["updated_at", "2023-02-17 19:23:56.946694"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:56.947920"], ["updated_at", "2023-02-17 19:23:56.947920"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.949435"], ["updated_at", "2023-02-17 19:23:56.949435"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.950574"], ["updated_at", "2023-02-17 19:23:56.950574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.951651"], ["updated_at", "2023-02-17 19:23:56.951651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.952958"], ["updated_at", "2023-02-17 19:23:56.952958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.954669"], ["updated_at", "2023-02-17 19:23:56.954669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.955838"], ["updated_at", "2023-02-17 19:23:56.955838"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.956963"], ["updated_at", "2023-02-17 19:23:56.956963"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.958292"], ["updated_at", "2023-02-17 19:23:56.958292"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.960302"], ["updated_at", "2023-02-17 19:23:56.960302"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.961624"], ["updated_at", "2023-02-17 19:23:56.961624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.962851"], ["updated_at", "2023-02-17 19:23:56.962851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:56.964101"], ["updated_at", "2023-02-17 19:23:56.964101"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:23:56 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.3ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms | Allocations: 532)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (1.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:23:56.989106"], ["updated_at", "2023-02-17 19:23:56.989106"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (1.8ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:23:56.994022"], ["updated_at", "2023-02-17 19:23:56.994022"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:23:57.000400"], ["updated_at", "2023-02-17 19:23:57.000400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:23:57.001795"], ["updated_at", "2023-02-17 19:23:57.001795"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:23:57.005165"], ["updated_at", "2023-02-17 19:23:57.005165"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:23:57.006395"], ["updated_at", "2023-02-17 19:23:57.006395"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:23:57.009345"], ["updated_at", "2023-02-17 19:23:57.009345"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:23:57.011374"], ["updated_at", "2023-02-17 19:23:57.011374"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:23:57.013350"], ["updated_at", "2023-02-17 19:23:57.013350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:23:57.015001"], ["updated_at", "2023-02-17 19:23:57.015001"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:23:57.016656"], ["updated_at", "2023-02-17 19:23:57.016656"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:23:57.018331"], ["updated_at", "2023-02-17 19:23:57.018331"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:23:57.019965"], ["updated_at", "2023-02-17 19:23:57.019965"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:23:57.022028"], ["updated_at", "2023-02-17 19:23:57.022028"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:23:57.025042"], ["updated_at", "2023-02-17 19:23:57.025042"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:23:57.026583"], ["updated_at", "2023-02-17 19:23:57.026583"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:23:57.028282"], ["updated_at", "2023-02-17 19:23:57.028282"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:23:57.029808"], ["updated_at", "2023-02-17 19:23:57.029808"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:23:57.031719"], ["updated_at", "2023-02-17 19:23:57.031719"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:23:57.033277"], ["updated_at", "2023-02-17 19:23:57.033277"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:23:57.034964"], ["updated_at", "2023-02-17 19:23:57.034964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:23:57.036368"], ["updated_at", "2023-02-17 19:23:57.036368"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:23:57.037942"], ["updated_at", "2023-02-17 19:23:57.037942"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:23:57.039484"], ["updated_at", "2023-02-17 19:23:57.039484"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:23:57.041129"], ["updated_at", "2023-02-17 19:23:57.041129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:23:57.042523"], ["updated_at", "2023-02-17 19:23:57.042523"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:23:57.044100"], ["updated_at", "2023-02-17 19:23:57.044100"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:23:57.045364"], ["updated_at", "2023-02-17 19:23:57.045364"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:23:57.047234"], ["updated_at", "2023-02-17 19:23:57.047234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:23:57.048691"], ["updated_at", "2023-02-17 19:23:57.048691"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:23:57.050376"], ["updated_at", "2023-02-17 19:23:57.050376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:23:57.051706"], ["updated_at", "2023-02-17 19:23:57.051706"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:23:57.053109"], ["updated_at", "2023-02-17 19:23:57.053109"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:23:57.054876"], ["updated_at", "2023-02-17 19:23:57.054876"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:23:57.056490"], ["updated_at", "2023-02-17 19:23:57.056490"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:23:57.058064"], ["updated_at", "2023-02-17 19:23:57.058064"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:23:57.059942"], ["updated_at", "2023-02-17 19:23:57.059942"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:23:57.062000"], ["updated_at", "2023-02-17 19:23:57.062000"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:23:57.063913"], ["updated_at", "2023-02-17 19:23:57.063913"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:23:57.065683"], ["updated_at", "2023-02-17 19:23:57.065683"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:23:57.067601"], ["updated_at", "2023-02-17 19:23:57.067601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:23:57.069329"], ["updated_at", "2023-02-17 19:23:57.069329"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:23:57.071089"], ["updated_at", "2023-02-17 19:23:57.071089"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:23:57.072427"], ["updated_at", "2023-02-17 19:23:57.072427"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:23:57.074425"], ["updated_at", "2023-02-17 19:23:57.074425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:23:57.075952"], ["updated_at", "2023-02-17 19:23:57.075952"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:23:57.078007"], ["updated_at", "2023-02-17 19:23:57.078007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:23:57.079558"], ["updated_at", "2023-02-17 19:23:57.079558"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:23:57.081325"], ["updated_at", "2023-02-17 19:23:57.081325"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:23:57.083043"], ["updated_at", "2023-02-17 19:23:57.083043"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:23:57.085283"], ["updated_at", "2023-02-17 19:23:57.085283"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:23:57.086985"], ["updated_at", "2023-02-17 19:23:57.086985"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:23:57.088899"], ["updated_at", "2023-02-17 19:23:57.088899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:23:57.090467"], ["updated_at", "2023-02-17 19:23:57.090467"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:23:57.092371"], ["updated_at", "2023-02-17 19:23:57.092371"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:23:57.093806"], ["updated_at", "2023-02-17 19:23:57.093806"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:23:57.095274"], ["updated_at", "2023-02-17 19:23:57.095274"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:23:57.096979"], ["updated_at", "2023-02-17 19:23:57.096979"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:23:57.098763"], ["updated_at", "2023-02-17 19:23:57.098763"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:23:57.100730"], ["updated_at", "2023-02-17 19:23:57.100730"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:23:57.102465"], ["updated_at", "2023-02-17 19:23:57.102465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:23:57.104086"], ["updated_at", "2023-02-17 19:23:57.104086"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:23:57.105770"], ["updated_at", "2023-02-17 19:23:57.105770"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:23:57.107489"], ["updated_at", "2023-02-17 19:23:57.107489"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:23:57.109326"], ["updated_at", "2023-02-17 19:23:57.109326"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:23:57.110895"], ["updated_at", "2023-02-17 19:23:57.110895"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:23:57.112689"], ["updated_at", "2023-02-17 19:23:57.112689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:23:57.118316"], ["updated_at", "2023-02-17 19:23:57.118316"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:23:57.120307"], ["updated_at", "2023-02-17 19:23:57.120307"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:23:57.125593"], ["updated_at", "2023-02-17 19:23:57.125593"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:23:57.131439"], ["updated_at", "2023-02-17 19:23:57.131439"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:23:57.133857"], ["updated_at", "2023-02-17 19:23:57.133857"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:23:57.139315"], ["updated_at", "2023-02-17 19:23:57.139315"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:23:57.142047"], ["updated_at", "2023-02-17 19:23:57.142047"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:23:57.144075"], ["updated_at", "2023-02-17 19:23:57.144075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:23:57.147046"], ["updated_at", "2023-02-17 19:23:57.147046"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:23:57.149654"], ["updated_at", "2023-02-17 19:23:57.149654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:23:57.151098"], ["updated_at", "2023-02-17 19:23:57.151098"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:23:57.153673"], ["updated_at", "2023-02-17 19:23:57.153673"]]
TRANSACTION (1.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:23:57.157056"], ["updated_at", "2023-02-17 19:23:57.157056"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:23:57.160706"], ["updated_at", "2023-02-17 19:23:57.160706"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:23:57.165330"], ["updated_at", "2023-02-17 19:23:57.165330"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:23:57.168141"], ["updated_at", "2023-02-17 19:23:57.168141"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:23:57.172025"], ["updated_at", "2023-02-17 19:23:57.172025"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:23:57.174521"], ["updated_at", "2023-02-17 19:23:57.174521"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:23:57.176954"], ["updated_at", "2023-02-17 19:23:57.176954"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:23:57.179178"], ["updated_at", "2023-02-17 19:23:57.179178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:23:57.180930"], ["updated_at", "2023-02-17 19:23:57.180930"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:23:57.183284"], ["updated_at", "2023-02-17 19:23:57.183284"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:23:57.185657"], ["updated_at", "2023-02-17 19:23:57.185657"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:23:57.188314"], ["updated_at", "2023-02-17 19:23:57.188314"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:23:57.190723"], ["updated_at", "2023-02-17 19:23:57.190723"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:23:57.192830"], ["updated_at", "2023-02-17 19:23:57.192830"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (1.4ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:23:57.195195"], ["updated_at", "2023-02-17 19:23:57.195195"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:23:57.198500"], ["updated_at", "2023-02-17 19:23:57.198500"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:23:57.199779"], ["updated_at", "2023-02-17 19:23:57.199779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:23:57.201424"], ["updated_at", "2023-02-17 19:23:57.201424"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:23:57.203563"], ["updated_at", "2023-02-17 19:23:57.203563"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:23:57.205506"], ["updated_at", "2023-02-17 19:23:57.205506"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:23:57.208288"], ["updated_at", "2023-02-17 19:23:57.208288"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:23:57.209737"], ["updated_at", "2023-02-17 19:23:57.209737"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:57.225348"], ["updated_at", "2023-02-17 19:23:57.225348"], ["role_id", 2]]
SurveyQuestion Create (0.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:57.228783"], ["updated_at", "2023-02-17 19:23:57.228783"]]
SurveyQuestion Create (10.4ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:57.233483"], ["updated_at", "2023-02-17 19:23:57.233483"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.245137"], ["updated_at", "2023-02-17 19:23:57.245137"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.246351"], ["updated_at", "2023-02-17 19:23:57.246351"]]
QuestionOption Create (1.0ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.247715"], ["updated_at", "2023-02-17 19:23:57.247715"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.249907"], ["updated_at", "2023-02-17 19:23:57.249907"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.250808"], ["updated_at", "2023-02-17 19:23:57.250808"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:57.251642"], ["updated_at", "2023-02-17 19:23:57.251642"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.252521"], ["updated_at", "2023-02-17 19:23:57.252521"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.253733"], ["updated_at", "2023-02-17 19:23:57.253733"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.254604"], ["updated_at", "2023-02-17 19:23:57.254604"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.255587"], ["updated_at", "2023-02-17 19:23:57.255587"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.256748"], ["updated_at", "2023-02-17 19:23:57.256748"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.258715"], ["updated_at", "2023-02-17 19:23:57.258715"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.259663"], ["updated_at", "2023-02-17 19:23:57.259663"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.260520"], ["updated_at", "2023-02-17 19:23:57.260520"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.261372"], ["updated_at", "2023-02-17 19:23:57.261372"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.262186"], ["updated_at", "2023-02-17 19:23:57.262186"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.263781"], ["updated_at", "2023-02-17 19:23:57.263781"]]
LikertScaleQuestion Create (1.5ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.265824"], ["updated_at", "2023-02-17 19:23:57.265824"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:23:57.297750"], ["updated_at", "2023-02-17 19:23:57.297750"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:23:57.299733"], ["updated_at", "2023-02-17 19:23:57.299733"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:23:57.300711"], ["updated_at", "2023-02-17 19:23:57.300711"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:57.301800"], ["updated_at", "2023-02-17 19:23:57.301800"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:57.302846"], ["updated_at", "2023-02-17 19:23:57.302846"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:57.303980"], ["updated_at", "2023-02-17 19:23:57.303980"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:57.304854"], ["updated_at", "2023-02-17 19:23:57.304854"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:23:57.305818"], ["updated_at", "2023-02-17 19:23:57.305818"]]
SurveyQuestion Create (0.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:23:57.310187"], ["updated_at", "2023-02-17 19:23:57.310187"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.311518"], ["updated_at", "2023-02-17 19:23:57.311518"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.312843"], ["updated_at", "2023-02-17 19:23:57.312843"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.313925"], ["updated_at", "2023-02-17 19:23:57.313925"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.315186"], ["updated_at", "2023-02-17 19:23:57.315186"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.316441"], ["updated_at", "2023-02-17 19:23:57.316441"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.318876"], ["updated_at", "2023-02-17 19:23:57.318876"]]
LikertScaleQuestion Create (0.4ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.320521"], ["updated_at", "2023-02-17 19:23:57.320521"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.322635"], ["updated_at", "2023-02-17 19:23:57.322635"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.323810"], ["updated_at", "2023-02-17 19:23:57.323810"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.327137"], ["updated_at", "2023-02-17 19:23:57.327137"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.333935"], ["updated_at", "2023-02-17 19:23:57.333935"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:23:57.335067"], ["updated_at", "2023-02-17 19:23:57.335067"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.4ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:57.376140"], ["updated_at", "2023-02-17 19:23:57.376140"]]
QuestionAnswer Create (0.4ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:57.379312"], ["updated_at", "2023-02-17 19:23:57.379312"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.384394"], ["updated_at", "2023-02-17 19:23:57.384394"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.385684"], ["updated_at", "2023-02-17 19:23:57.385684"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.386905"], ["updated_at", "2023-02-17 19:23:57.386905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.388089"], ["updated_at", "2023-02-17 19:23:57.388089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.388917"], ["updated_at", "2023-02-17 19:23:57.388917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.389677"], ["updated_at", "2023-02-17 19:23:57.389677"]]
LikertScaleAnswer Create (0.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.390467"], ["updated_at", "2023-02-17 19:23:57.390467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.391778"], ["updated_at", "2023-02-17 19:23:57.391778"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.392959"], ["updated_at", "2023-02-17 19:23:57.392959"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.394082"], ["updated_at", "2023-02-17 19:23:57.394082"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.395366"], ["updated_at", "2023-02-17 19:23:57.395366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.396445"], ["updated_at", "2023-02-17 19:23:57.396445"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.397513"], ["updated_at", "2023-02-17 19:23:57.397513"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:23:57.398691"], ["updated_at", "2023-02-17 19:23:57.398691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:57.418320"], ["updated_at", "2023-02-17 19:23:57.418320"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:57.419342"], ["updated_at", "2023-02-17 19:23:57.419342"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.420154"], ["updated_at", "2023-02-17 19:23:57.420154"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.420947"], ["updated_at", "2023-02-17 19:23:57.420947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.422170"], ["updated_at", "2023-02-17 19:23:57.422170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.423207"], ["updated_at", "2023-02-17 19:23:57.423207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.424021"], ["updated_at", "2023-02-17 19:23:57.424021"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.424950"], ["updated_at", "2023-02-17 19:23:57.424950"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.425927"], ["updated_at", "2023-02-17 19:23:57.425927"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.426687"], ["updated_at", "2023-02-17 19:23:57.426687"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.427459"], ["updated_at", "2023-02-17 19:23:57.427459"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.428177"], ["updated_at", "2023-02-17 19:23:57.428177"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.430056"], ["updated_at", "2023-02-17 19:23:57.430056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.430955"], ["updated_at", "2023-02-17 19:23:57.430955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.431706"], ["updated_at", "2023-02-17 19:23:57.431706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:23:57.432509"], ["updated_at", "2023-02-17 19:23:57.432509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:57.450503"], ["updated_at", "2023-02-17 19:23:57.450503"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:57.451842"], ["updated_at", "2023-02-17 19:23:57.451842"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.452757"], ["updated_at", "2023-02-17 19:23:57.452757"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.453605"], ["updated_at", "2023-02-17 19:23:57.453605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.454427"], ["updated_at", "2023-02-17 19:23:57.454427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.455290"], ["updated_at", "2023-02-17 19:23:57.455290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.456052"], ["updated_at", "2023-02-17 19:23:57.456052"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.456767"], ["updated_at", "2023-02-17 19:23:57.456767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.457476"], ["updated_at", "2023-02-17 19:23:57.457476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.458217"], ["updated_at", "2023-02-17 19:23:57.458217"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.459109"], ["updated_at", "2023-02-17 19:23:57.459109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.460010"], ["updated_at", "2023-02-17 19:23:57.460010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.460777"], ["updated_at", "2023-02-17 19:23:57.460777"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.461539"], ["updated_at", "2023-02-17 19:23:57.461539"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.462569"], ["updated_at", "2023-02-17 19:23:57.462569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:23:57.463600"], ["updated_at", "2023-02-17 19:23:57.463600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:57.481886"], ["updated_at", "2023-02-17 19:23:57.481886"]]
QuestionAnswer Create (0.5ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:57.484003"], ["updated_at", "2023-02-17 19:23:57.484003"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.487119"], ["updated_at", "2023-02-17 19:23:57.487119"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.488007"], ["updated_at", "2023-02-17 19:23:57.488007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.488855"], ["updated_at", "2023-02-17 19:23:57.488855"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.489615"], ["updated_at", "2023-02-17 19:23:57.489615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.490648"], ["updated_at", "2023-02-17 19:23:57.490648"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.491626"], ["updated_at", "2023-02-17 19:23:57.491626"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.492635"], ["updated_at", "2023-02-17 19:23:57.492635"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.493945"], ["updated_at", "2023-02-17 19:23:57.493945"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.494924"], ["updated_at", "2023-02-17 19:23:57.494924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.495738"], ["updated_at", "2023-02-17 19:23:57.495738"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.496634"], ["updated_at", "2023-02-17 19:23:57.496634"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.498009"], ["updated_at", "2023-02-17 19:23:57.498009"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.499007"], ["updated_at", "2023-02-17 19:23:57.499007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:23:57.499738"], ["updated_at", "2023-02-17 19:23:57.499738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:57.517605"], ["updated_at", "2023-02-17 19:23:57.517605"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:57.518671"], ["updated_at", "2023-02-17 19:23:57.518671"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.519469"], ["updated_at", "2023-02-17 19:23:57.519469"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.520370"], ["updated_at", "2023-02-17 19:23:57.520370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.521197"], ["updated_at", "2023-02-17 19:23:57.521197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.521929"], ["updated_at", "2023-02-17 19:23:57.521929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.522697"], ["updated_at", "2023-02-17 19:23:57.522697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.523465"], ["updated_at", "2023-02-17 19:23:57.523465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.524465"], ["updated_at", "2023-02-17 19:23:57.524465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.525300"], ["updated_at", "2023-02-17 19:23:57.525300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.526208"], ["updated_at", "2023-02-17 19:23:57.526208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.527104"], ["updated_at", "2023-02-17 19:23:57.527104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.528236"], ["updated_at", "2023-02-17 19:23:57.528236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.529033"], ["updated_at", "2023-02-17 19:23:57.529033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.529866"], ["updated_at", "2023-02-17 19:23:57.529866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:23:57.531072"], ["updated_at", "2023-02-17 19:23:57.531072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:23:57.549728"], ["updated_at", "2023-02-17 19:23:57.549728"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:23:57.550768"], ["updated_at", "2023-02-17 19:23:57.550768"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:23:57.551548"], ["updated_at", "2023-02-17 19:23:57.551548"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:23:57.552251"], ["updated_at", "2023-02-17 19:23:57.552251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.553363"], ["updated_at", "2023-02-17 19:23:57.553363"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.554370"], ["updated_at", "2023-02-17 19:23:57.554370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.555259"], ["updated_at", "2023-02-17 19:23:57.555259"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.556007"], ["updated_at", "2023-02-17 19:23:57.556007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.557116"], ["updated_at", "2023-02-17 19:23:57.557116"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.557928"], ["updated_at", "2023-02-17 19:23:57.557928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.558650"], ["updated_at", "2023-02-17 19:23:57.558650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.559334"], ["updated_at", "2023-02-17 19:23:57.559334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.560088"], ["updated_at", "2023-02-17 19:23:57.560088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.561007"], ["updated_at", "2023-02-17 19:23:57.561007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.561805"], ["updated_at", "2023-02-17 19:23:57.561805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:23:57.562747"], ["updated_at", "2023-02-17 19:23:57.562747"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:23:57 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:23:57 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:23:57 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.5ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 1.0ms | Allocations: 16009)

TRANSACTION (0.1ms)  rollback transaction
 (1.4ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:01.314215"], ["updated_at", "2023-02-17 19:25:01.314215"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:01.329623"], ["updated_at", "2023-02-17 19:25:01.329623"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:25:01.336387"], ["updated_at", "2023-02-17 19:25:01.336387"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:01.349851"], ["updated_at", "2023-02-17 19:25:01.349851"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:01.358452"], ["updated_at", "2023-02-17 19:25:01.358452"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:25:01.363056"], ["updated_at", "2023-02-17 19:25:01.363056"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:01.366132"], ["updated_at", "2023-02-17 19:25:01.366132"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 6.3ms | Allocations: 28612)

Member Load (0.2ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:25:01.384929"], ["updated_at", "2023-02-17 19:25:01.384929"], ["role_id", 1]]

Processing by ScrapperController#show as HTML

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms | Allocations: 409)

SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 12ms (Views: 7.5ms | ActiveRecord: 0.9ms | Allocations: 4605)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00005648abba2e68>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.5ms | Allocations: 658)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 5762) Processing by ScrapperController#show as HTML

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction

Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.2ms)  begin transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]

Processing by ScrapperController#index as JSON

Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:01.449964"], ["updated_at", "2023-02-17 19:25:01.449964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:01.451815"], ["updated_at", "2023-02-17 19:25:01.451815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:01.456050"], ["updated_at", "2023-02-17 19:25:01.456050"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:01.457638"], ["updated_at", "2023-02-17 19:25:01.457638"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:01.461502"], ["updated_at", "2023-02-17 19:25:01.461502"]]
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:01.462989"], ["updated_at", "2023-02-17 19:25:01.462989"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:01.465991"], ["updated_at", "2023-02-17 19:25:01.465991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:01.467835"], ["updated_at", "2023-02-17 19:25:01.467835"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:01.470037"], ["updated_at", "2023-02-17 19:25:01.470037"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:01.471896"], ["updated_at", "2023-02-17 19:25:01.471896"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:01.474240"], ["updated_at", "2023-02-17 19:25:01.474240"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:01.476075"], ["updated_at", "2023-02-17 19:25:01.476075"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:01.477882"], ["updated_at", "2023-02-17 19:25:01.477882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:01.479887"], ["updated_at", "2023-02-17 19:25:01.479887"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (4.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:01.476646"], ["updated_at", "2023-02-17 19:25:01.476646"]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:01.481605"], ["updated_at", "2023-02-17 19:25:01.481605"]]

Completed 500 Internal Server Error in 28ms (ActiveRecord: 5.6ms | Allocations: 6170)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:01.483127"], ["updated_at", "2023-02-17 19:25:01.483127"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:01.484990"], ["updated_at", "2023-02-17 19:25:01.484990"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:01.487036"], ["updated_at", "2023-02-17 19:25:01.487036"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:01.488787"], ["updated_at", "2023-02-17 19:25:01.488787"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:01.490822"], ["updated_at", "2023-02-17 19:25:01.490822"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.8ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:01.493331"], ["updated_at", "2023-02-17 19:25:01.493331"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:01.496076"], ["updated_at", "2023-02-17 19:25:01.496076"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:01.498392"], ["updated_at", "2023-02-17 19:25:01.498392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:01.500225"], ["updated_at", "2023-02-17 19:25:01.500225"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:01.502601"], ["updated_at", "2023-02-17 19:25:01.502601"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:01.504559"], ["updated_at", "2023-02-17 19:25:01.504559"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:01.506618"], ["updated_at", "2023-02-17 19:25:01.506618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:01.508453"], ["updated_at", "2023-02-17 19:25:01.508453"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:01.510922"], ["updated_at", "2023-02-17 19:25:01.510922"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:01.512893"], ["updated_at", "2023-02-17 19:25:01.512893"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:01.515516"], ["updated_at", "2023-02-17 19:25:01.515516"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Survey Create (0.6ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:25:01.515701"], ["updated_at", "2023-02-17 19:25:01.515701"], ["role_id", 1]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 17ms (ActiveRecord: 1.3ms | Allocations: 5710)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:01.517574"], ["updated_at", "2023-02-17 19:25:01.517574"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:01.520329"], ["updated_at", "2023-02-17 19:25:01.520329"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:01.522193"], ["updated_at", "2023-02-17 19:25:01.522193"], ["role_id", 34]]

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000056224816a358>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:01.524626"], ["updated_at", "2023-02-17 19:25:01.524626"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:01.526480"], ["updated_at", "2023-02-17 19:25:01.526480"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:01.528416"], ["updated_at", "2023-02-17 19:25:01.528416"]]

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:01.530280"], ["updated_at", "2023-02-17 19:25:01.530280"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:01.532423"], ["updated_at", "2023-02-17 19:25:01.532423"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.2ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:01.534230"], ["updated_at", "2023-02-17 19:25:01.534230"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:01.536227"], ["updated_at", "2023-02-17 19:25:01.536227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:01.537611"], ["updated_at", "2023-02-17 19:25:01.537611"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:01.540054"], ["updated_at", "2023-02-17 19:25:01.540054"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:01.542036"], ["updated_at", "2023-02-17 19:25:01.542036"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:01.543862"], ["updated_at", "2023-02-17 19:25:01.543862"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.4ms | Allocations: 3025)

Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:01.545574"], ["updated_at", "2023-02-17 19:25:01.545574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:01.547431"], ["updated_at", "2023-02-17 19:25:01.547431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:01.548816"], ["updated_at", "2023-02-17 19:25:01.548816"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:01.550665"], ["updated_at", "2023-02-17 19:25:01.550665"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:01.552041"], ["updated_at", "2023-02-17 19:25:01.552041"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:01.553604"], ["updated_at", "2023-02-17 19:25:01.553604"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:01.555654"], ["updated_at", "2023-02-17 19:25:01.555654"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:01.557792"], ["updated_at", "2023-02-17 19:25:01.557792"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:01.560932"], ["updated_at", "2023-02-17 19:25:01.560932"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:01.563136"], ["updated_at", "2023-02-17 19:25:01.563136"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:01.566030"], ["updated_at", "2023-02-17 19:25:01.566030"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:01.568022"], ["updated_at", "2023-02-17 19:25:01.568022"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:01.570383"], ["updated_at", "2023-02-17 19:25:01.570383"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:01.572939"], ["updated_at", "2023-02-17 19:25:01.572939"]]
TRANSACTION (1.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:01.577407"], ["updated_at", "2023-02-17 19:25:01.577407"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:01.579786"], ["updated_at", "2023-02-17 19:25:01.579786"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:01.581714"], ["updated_at", "2023-02-17 19:25:01.581714"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:01.584885"], ["updated_at", "2023-02-17 19:25:01.584885"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 29ms (Views: 0.2ms | ActiveRecord: 1.1ms | Allocations: 6053)

TRANSACTION (0.5ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:01.586424"], ["updated_at", "2023-02-17 19:25:01.586424"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:01.593011"], ["updated_at", "2023-02-17 19:25:01.593011"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:01.594732"], ["updated_at", "2023-02-17 19:25:01.594732"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:01.596728"], ["updated_at", "2023-02-17 19:25:01.596728"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (3.6ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:01.599851"], ["updated_at", "2023-02-17 19:25:01.599851"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:01.605712"], ["updated_at", "2023-02-17 19:25:01.605712"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:01.607939"], ["updated_at", "2023-02-17 19:25:01.607939"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:01.610215"], ["updated_at", "2023-02-17 19:25:01.610215"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:01.612393"], ["updated_at", "2023-02-17 19:25:01.612393"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:01.614360"], ["updated_at", "2023-02-17 19:25:01.614360"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:01.615119"], ["updated_at", "2023-02-17 19:25:01.615119"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:01.616233"], ["updated_at", "2023-02-17 19:25:01.616233"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:01.618157"], ["updated_at", "2023-02-17 19:25:01.618157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:01.619748"], ["updated_at", "2023-02-17 19:25:01.619748"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (1.6ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:01.622296"], ["updated_at", "2023-02-17 19:25:01.622296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:01.624090"], ["updated_at", "2023-02-17 19:25:01.624090"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:01.625101"], ["updated_at", "2023-02-17 19:25:01.625101"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:01.626325"], ["updated_at", "2023-02-17 19:25:01.626325"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:01.628145"], ["updated_at", "2023-02-17 19:25:01.628145"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:01.630304"], ["updated_at", "2023-02-17 19:25:01.630304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:01.632113"], ["updated_at", "2023-02-17 19:25:01.632113"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:01.633919"], ["updated_at", "2023-02-17 19:25:01.633919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:01.635531"], ["updated_at", "2023-02-17 19:25:01.635531"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.6ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:01.635564"], ["updated_at", "2023-02-17 19:25:01.635564"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:01.637803"], ["updated_at", "2023-02-17 19:25:01.637803"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (1.0ms)  begin transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:01.640047"], ["updated_at", "2023-02-17 19:25:01.640047"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:01.642496"], ["updated_at", "2023-02-17 19:25:01.642496"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:01.644453"], ["updated_at", "2023-02-17 19:25:01.644453"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:01.646415"], ["updated_at", "2023-02-17 19:25:01.646415"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:01.645695"], ["updated_at", "2023-02-17 19:25:01.645695"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:01.648110"], ["updated_at", "2023-02-17 19:25:01.648110"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:01.649932"], ["updated_at", "2023-02-17 19:25:01.649932"]]
Subject Exists? (0.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:01.652098"], ["updated_at", "2023-02-17 19:25:01.652098"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:01.652811"], ["updated_at", "2023-02-17 19:25:01.652811"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:01.654298"], ["updated_at", "2023-02-17 19:25:01.654298"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:01.656664"], ["updated_at", "2023-02-17 19:25:01.656664"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:01.658969"], ["updated_at", "2023-02-17 19:25:01.658969"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:01.660553"], ["updated_at", "2023-02-17 19:25:01.660553"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:01.660571"], ["updated_at", "2023-02-17 19:25:01.660571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:01.662149"], ["updated_at", "2023-02-17 19:25:01.662149"], ["role_id", 35]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:01.664180"], ["updated_at", "2023-02-17 19:25:01.664180"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:01.666816"], ["updated_at", "2023-02-17 19:25:01.666816"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
QuestionType Create (0.3ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:01.668793"], ["updated_at", "2023-02-17 19:25:01.668793"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:01.670616"], ["updated_at", "2023-02-17 19:25:01.670616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:01.672132"], ["updated_at", "2023-02-17 19:25:01.672132"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.8ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:01.674806"], ["updated_at", "2023-02-17 19:25:01.674806"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:25:01 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 232)

QuestionType Load (0.2ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:01.707124"], ["updated_at", "2023-02-17 19:25:01.707124"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:01.709139"], ["updated_at", "2023-02-17 19:25:01.709139"]]

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:25:01 -0300

SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:01.710304"], ["updated_at", "2023-02-17 19:25:01.710304"]]

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:01.711536"], ["updated_at", "2023-02-17 19:25:01.711536"]]

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 180)

QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:01.713498"], ["updated_at", "2023-02-17 19:25:01.713498"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:01.714282"], ["updated_at", "2023-02-17 19:25:01.714282"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:01.714978"], ["updated_at", "2023-02-17 19:25:01.714978"]]
TRANSACTION (0.1ms)  begin transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:01.715705"], ["updated_at", "2023-02-17 19:25:01.715705"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:01.716450"], ["updated_at", "2023-02-17 19:25:01.716450"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.717419"], ["updated_at", "2023-02-17 19:25:01.717419"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.718398"], ["updated_at", "2023-02-17 19:25:01.718398"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.719404"], ["updated_at", "2023-02-17 19:25:01.719404"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.720184"], ["updated_at", "2023-02-17 19:25:01.720184"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.721235"], ["updated_at", "2023-02-17 19:25:01.721235"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.722495"], ["updated_at", "2023-02-17 19:25:01.722495"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.723620"], ["updated_at", "2023-02-17 19:25:01.723620"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.724675"], ["updated_at", "2023-02-17 19:25:01.724675"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.725635"], ["updated_at", "2023-02-17 19:25:01.725635"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.726723"], ["updated_at", "2023-02-17 19:25:01.726723"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.727559"], ["updated_at", "2023-02-17 19:25:01.727559"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.728434"], ["updated_at", "2023-02-17 19:25:01.728434"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.4ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:01.745125"], ["updated_at", "2023-02-17 19:25:01.745125"], ["role_id", 2]]
SurveyQuestion Create (0.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:01.750308"], ["updated_at", "2023-02-17 19:25:01.750308"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:01.753812"], ["updated_at", "2023-02-17 19:25:01.753812"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:01.759632"], ["updated_at", "2023-02-17 19:25:01.759632"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:01.762357"], ["updated_at", "2023-02-17 19:25:01.762357"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:01.763487"], ["updated_at", "2023-02-17 19:25:01.763487"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:01.764518"], ["updated_at", "2023-02-17 19:25:01.764518"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:01.766487"], ["updated_at", "2023-02-17 19:25:01.766487"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:01.767995"], ["updated_at", "2023-02-17 19:25:01.767995"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.771371"], ["updated_at", "2023-02-17 19:25:01.771371"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.772539"], ["updated_at", "2023-02-17 19:25:01.772539"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.773520"], ["updated_at", "2023-02-17 19:25:01.773520"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.774627"], ["updated_at", "2023-02-17 19:25:01.774627"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.775737"], ["updated_at", "2023-02-17 19:25:01.775737"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.776592"], ["updated_at", "2023-02-17 19:25:01.776592"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.777546"], ["updated_at", "2023-02-17 19:25:01.777546"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.779124"], ["updated_at", "2023-02-17 19:25:01.779124"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.780776"], ["updated_at", "2023-02-17 19:25:01.780776"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.781765"], ["updated_at", "2023-02-17 19:25:01.781765"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.782539"], ["updated_at", "2023-02-17 19:25:01.782539"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:01.783302"], ["updated_at", "2023-02-17 19:25:01.783302"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:01.833955"], ["updated_at", "2023-02-17 19:25:01.833955"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:01.835116"], ["updated_at", "2023-02-17 19:25:01.835116"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:01.835983"], ["updated_at", "2023-02-17 19:25:01.835983"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.836732"], ["updated_at", "2023-02-17 19:25:01.836732"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.837676"], ["updated_at", "2023-02-17 19:25:01.837676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.838752"], ["updated_at", "2023-02-17 19:25:01.838752"]]
LikertScaleAnswer Create (0.9ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.839657"], ["updated_at", "2023-02-17 19:25:01.839657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.841654"], ["updated_at", "2023-02-17 19:25:01.841654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.842883"], ["updated_at", "2023-02-17 19:25:01.842883"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.843811"], ["updated_at", "2023-02-17 19:25:01.843811"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.844810"], ["updated_at", "2023-02-17 19:25:01.844810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.845703"], ["updated_at", "2023-02-17 19:25:01.845703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.846652"], ["updated_at", "2023-02-17 19:25:01.846652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.847674"], ["updated_at", "2023-02-17 19:25:01.847674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.848932"], ["updated_at", "2023-02-17 19:25:01.848932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:01.850049"], ["updated_at", "2023-02-17 19:25:01.850049"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:01.874095"], ["updated_at", "2023-02-17 19:25:01.874095"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:01.875494"], ["updated_at", "2023-02-17 19:25:01.875494"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:01.876876"], ["updated_at", "2023-02-17 19:25:01.876876"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.877937"], ["updated_at", "2023-02-17 19:25:01.877937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.879091"], ["updated_at", "2023-02-17 19:25:01.879091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.880444"], ["updated_at", "2023-02-17 19:25:01.880444"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.881759"], ["updated_at", "2023-02-17 19:25:01.881759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.882837"], ["updated_at", "2023-02-17 19:25:01.882837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.883718"], ["updated_at", "2023-02-17 19:25:01.883718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.884859"], ["updated_at", "2023-02-17 19:25:01.884859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.885825"], ["updated_at", "2023-02-17 19:25:01.885825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.886741"], ["updated_at", "2023-02-17 19:25:01.886741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.887569"], ["updated_at", "2023-02-17 19:25:01.887569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.888629"], ["updated_at", "2023-02-17 19:25:01.888629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.889714"], ["updated_at", "2023-02-17 19:25:01.889714"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:01.890651"], ["updated_at", "2023-02-17 19:25:01.890651"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:01.911516"], ["updated_at", "2023-02-17 19:25:01.911516"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:01.912799"], ["updated_at", "2023-02-17 19:25:01.912799"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:01.913789"], ["updated_at", "2023-02-17 19:25:01.913789"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.914910"], ["updated_at", "2023-02-17 19:25:01.914910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.915886"], ["updated_at", "2023-02-17 19:25:01.915886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.916783"], ["updated_at", "2023-02-17 19:25:01.916783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.917657"], ["updated_at", "2023-02-17 19:25:01.917657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.918618"], ["updated_at", "2023-02-17 19:25:01.918618"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.919490"], ["updated_at", "2023-02-17 19:25:01.919490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.920329"], ["updated_at", "2023-02-17 19:25:01.920329"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.921946"], ["updated_at", "2023-02-17 19:25:01.921946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.923266"], ["updated_at", "2023-02-17 19:25:01.923266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.924456"], ["updated_at", "2023-02-17 19:25:01.924456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.925882"], ["updated_at", "2023-02-17 19:25:01.925882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.927093"], ["updated_at", "2023-02-17 19:25:01.927093"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:01.928338"], ["updated_at", "2023-02-17 19:25:01.928338"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:01.950040"], ["updated_at", "2023-02-17 19:25:01.950040"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:01.951171"], ["updated_at", "2023-02-17 19:25:01.951171"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:01.952114"], ["updated_at", "2023-02-17 19:25:01.952114"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.953131"], ["updated_at", "2023-02-17 19:25:01.953131"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.954084"], ["updated_at", "2023-02-17 19:25:01.954084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.954979"], ["updated_at", "2023-02-17 19:25:01.954979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.955908"], ["updated_at", "2023-02-17 19:25:01.955908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.956926"], ["updated_at", "2023-02-17 19:25:01.956926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.957673"], ["updated_at", "2023-02-17 19:25:01.957673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.958389"], ["updated_at", "2023-02-17 19:25:01.958389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.959178"], ["updated_at", "2023-02-17 19:25:01.959178"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.960167"], ["updated_at", "2023-02-17 19:25:01.960167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.961089"], ["updated_at", "2023-02-17 19:25:01.961089"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.961923"], ["updated_at", "2023-02-17 19:25:01.961923"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.963055"], ["updated_at", "2023-02-17 19:25:01.963055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:01.964239"], ["updated_at", "2023-02-17 19:25:01.964239"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:01.985045"], ["updated_at", "2023-02-17 19:25:01.985045"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:01.986364"], ["updated_at", "2023-02-17 19:25:01.986364"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:01.987409"], ["updated_at", "2023-02-17 19:25:01.987409"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:01.988215"], ["updated_at", "2023-02-17 19:25:01.988215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.989148"], ["updated_at", "2023-02-17 19:25:01.989148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.989936"], ["updated_at", "2023-02-17 19:25:01.989936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.990813"], ["updated_at", "2023-02-17 19:25:01.990813"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.991581"], ["updated_at", "2023-02-17 19:25:01.991581"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.992317"], ["updated_at", "2023-02-17 19:25:01.992317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.993461"], ["updated_at", "2023-02-17 19:25:01.993461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.994507"], ["updated_at", "2023-02-17 19:25:01.994507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.995815"], ["updated_at", "2023-02-17 19:25:01.995815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.997026"], ["updated_at", "2023-02-17 19:25:01.997026"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.998132"], ["updated_at", "2023-02-17 19:25:01.998132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.998994"], ["updated_at", "2023-02-17 19:25:01.998994"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:01.999706"], ["updated_at", "2023-02-17 19:25:01.999706"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.6ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.019946"], ["updated_at", "2023-02-17 19:25:02.019946"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.021083"], ["updated_at", "2023-02-17 19:25:02.021083"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.022736"], ["updated_at", "2023-02-17 19:25:02.022736"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.023835"], ["updated_at", "2023-02-17 19:25:02.023835"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.024834"], ["updated_at", "2023-02-17 19:25:02.024834"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.026180"], ["updated_at", "2023-02-17 19:25:02.026180"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.027311"], ["updated_at", "2023-02-17 19:25:02.027311"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.028205"], ["updated_at", "2023-02-17 19:25:02.028205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.029335"], ["updated_at", "2023-02-17 19:25:02.029335"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.031810"], ["updated_at", "2023-02-17 19:25:02.031810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.032761"], ["updated_at", "2023-02-17 19:25:02.032761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.033659"], ["updated_at", "2023-02-17 19:25:02.033659"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.034396"], ["updated_at", "2023-02-17 19:25:02.034396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.035119"], ["updated_at", "2023-02-17 19:25:02.035119"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.035822"], ["updated_at", "2023-02-17 19:25:02.035822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.036635"], ["updated_at", "2023-02-17 19:25:02.036635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:25:02 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.3ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.5ms | Allocations: 3127)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (1.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:02.065501"], ["updated_at", "2023-02-17 19:25:02.065501"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:02.067043"], ["updated_at", "2023-02-17 19:25:02.067043"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:02.070053"], ["updated_at", "2023-02-17 19:25:02.070053"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:02.071416"], ["updated_at", "2023-02-17 19:25:02.071416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:02.074627"], ["updated_at", "2023-02-17 19:25:02.074627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:02.075851"], ["updated_at", "2023-02-17 19:25:02.075851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:02.078333"], ["updated_at", "2023-02-17 19:25:02.078333"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:02.079827"], ["updated_at", "2023-02-17 19:25:02.079827"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:02.081736"], ["updated_at", "2023-02-17 19:25:02.081736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:02.083501"], ["updated_at", "2023-02-17 19:25:02.083501"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:02.085222"], ["updated_at", "2023-02-17 19:25:02.085222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:02.086888"], ["updated_at", "2023-02-17 19:25:02.086888"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:02.088615"], ["updated_at", "2023-02-17 19:25:02.088615"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:02.089970"], ["updated_at", "2023-02-17 19:25:02.089970"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:02.091576"], ["updated_at", "2023-02-17 19:25:02.091576"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:02.092934"], ["updated_at", "2023-02-17 19:25:02.092934"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:02.094331"], ["updated_at", "2023-02-17 19:25:02.094331"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:02.095720"], ["updated_at", "2023-02-17 19:25:02.095720"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:02.097211"], ["updated_at", "2023-02-17 19:25:02.097211"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:02.098619"], ["updated_at", "2023-02-17 19:25:02.098619"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:02.100230"], ["updated_at", "2023-02-17 19:25:02.100230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:02.101668"], ["updated_at", "2023-02-17 19:25:02.101668"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:02.103309"], ["updated_at", "2023-02-17 19:25:02.103309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:02.104602"], ["updated_at", "2023-02-17 19:25:02.104602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:02.106137"], ["updated_at", "2023-02-17 19:25:02.106137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:02.107512"], ["updated_at", "2023-02-17 19:25:02.107512"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:02.108975"], ["updated_at", "2023-02-17 19:25:02.108975"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:02.110313"], ["updated_at", "2023-02-17 19:25:02.110313"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:02.111863"], ["updated_at", "2023-02-17 19:25:02.111863"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:02.113115"], ["updated_at", "2023-02-17 19:25:02.113115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:02.114750"], ["updated_at", "2023-02-17 19:25:02.114750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:02.116383"], ["updated_at", "2023-02-17 19:25:02.116383"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:02.117973"], ["updated_at", "2023-02-17 19:25:02.117973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:02.119380"], ["updated_at", "2023-02-17 19:25:02.119380"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:02.120830"], ["updated_at", "2023-02-17 19:25:02.120830"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:02.122365"], ["updated_at", "2023-02-17 19:25:02.122365"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:02.123872"], ["updated_at", "2023-02-17 19:25:02.123872"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:02.125177"], ["updated_at", "2023-02-17 19:25:02.125177"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:02.126850"], ["updated_at", "2023-02-17 19:25:02.126850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:02.128071"], ["updated_at", "2023-02-17 19:25:02.128071"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:02.129543"], ["updated_at", "2023-02-17 19:25:02.129543"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:02.130860"], ["updated_at", "2023-02-17 19:25:02.130860"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:02.132388"], ["updated_at", "2023-02-17 19:25:02.132388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.133885"], ["updated_at", "2023-02-17 19:25:02.133885"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:02.135400"], ["updated_at", "2023-02-17 19:25:02.135400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:02.137070"], ["updated_at", "2023-02-17 19:25:02.137070"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:02.138761"], ["updated_at", "2023-02-17 19:25:02.138761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:02.140089"], ["updated_at", "2023-02-17 19:25:02.140089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:02.142006"], ["updated_at", "2023-02-17 19:25:02.142006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:02.143491"], ["updated_at", "2023-02-17 19:25:02.143491"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:02.145403"], ["updated_at", "2023-02-17 19:25:02.145403"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:02.146724"], ["updated_at", "2023-02-17 19:25:02.146724"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:02.148384"], ["updated_at", "2023-02-17 19:25:02.148384"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:02.149759"], ["updated_at", "2023-02-17 19:25:02.149759"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:02.151290"], ["updated_at", "2023-02-17 19:25:02.151290"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:02.153104"], ["updated_at", "2023-02-17 19:25:02.153104"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:02.154645"], ["updated_at", "2023-02-17 19:25:02.154645"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:02.156187"], ["updated_at", "2023-02-17 19:25:02.156187"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:02.157743"], ["updated_at", "2023-02-17 19:25:02.157743"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:02.159057"], ["updated_at", "2023-02-17 19:25:02.159057"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:02.160721"], ["updated_at", "2023-02-17 19:25:02.160721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:02.162106"], ["updated_at", "2023-02-17 19:25:02.162106"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:02.163663"], ["updated_at", "2023-02-17 19:25:02.163663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.164968"], ["updated_at", "2023-02-17 19:25:02.164968"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:02.166444"], ["updated_at", "2023-02-17 19:25:02.166444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:02.167976"], ["updated_at", "2023-02-17 19:25:02.167976"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:02.169517"], ["updated_at", "2023-02-17 19:25:02.169517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:02.181731"], ["updated_at", "2023-02-17 19:25:02.181731"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:02.183436"], ["updated_at", "2023-02-17 19:25:02.183436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.184649"], ["updated_at", "2023-02-17 19:25:02.184649"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:02.186179"], ["updated_at", "2023-02-17 19:25:02.186179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:02.187431"], ["updated_at", "2023-02-17 19:25:02.187431"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:02.188881"], ["updated_at", "2023-02-17 19:25:02.188881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:02.190304"], ["updated_at", "2023-02-17 19:25:02.190304"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:02.191790"], ["updated_at", "2023-02-17 19:25:02.191790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:02.193048"], ["updated_at", "2023-02-17 19:25:02.193048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:02.194600"], ["updated_at", "2023-02-17 19:25:02.194600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:02.195940"], ["updated_at", "2023-02-17 19:25:02.195940"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:02.197523"], ["updated_at", "2023-02-17 19:25:02.197523"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:02.199559"], ["updated_at", "2023-02-17 19:25:02.199559"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:02.201094"], ["updated_at", "2023-02-17 19:25:02.201094"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.202311"], ["updated_at", "2023-02-17 19:25:02.202311"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:02.203855"], ["updated_at", "2023-02-17 19:25:02.203855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:02.205126"], ["updated_at", "2023-02-17 19:25:02.205126"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:02.206667"], ["updated_at", "2023-02-17 19:25:02.206667"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:02.207978"], ["updated_at", "2023-02-17 19:25:02.207978"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:02.209421"], ["updated_at", "2023-02-17 19:25:02.209421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:02.210791"], ["updated_at", "2023-02-17 19:25:02.210791"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:02.212210"], ["updated_at", "2023-02-17 19:25:02.212210"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:02.213688"], ["updated_at", "2023-02-17 19:25:02.213688"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:02.215266"], ["updated_at", "2023-02-17 19:25:02.215266"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:02.216553"], ["updated_at", "2023-02-17 19:25:02.216553"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:02.218218"], ["updated_at", "2023-02-17 19:25:02.218218"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:02.219515"], ["updated_at", "2023-02-17 19:25:02.219515"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:02.221151"], ["updated_at", "2023-02-17 19:25:02.221151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:02.222326"], ["updated_at", "2023-02-17 19:25:02.222326"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:02.223542"], ["updated_at", "2023-02-17 19:25:02.223542"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:02.225105"], ["updated_at", "2023-02-17 19:25:02.225105"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:02.226670"], ["updated_at", "2023-02-17 19:25:02.226670"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:02.228036"], ["updated_at", "2023-02-17 19:25:02.228036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:02.229178"], ["updated_at", "2023-02-17 19:25:02.229178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:02.241343"], ["updated_at", "2023-02-17 19:25:02.241343"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:02.242642"], ["updated_at", "2023-02-17 19:25:02.242642"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:02.243850"], ["updated_at", "2023-02-17 19:25:02.243850"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.244719"], ["updated_at", "2023-02-17 19:25:02.244719"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.245872"], ["updated_at", "2023-02-17 19:25:02.245872"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.246675"], ["updated_at", "2023-02-17 19:25:02.246675"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.247392"], ["updated_at", "2023-02-17 19:25:02.247392"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.248130"], ["updated_at", "2023-02-17 19:25:02.248130"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:02.248986"], ["updated_at", "2023-02-17 19:25:02.248986"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.249893"], ["updated_at", "2023-02-17 19:25:02.249893"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.250759"], ["updated_at", "2023-02-17 19:25:02.250759"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.251531"], ["updated_at", "2023-02-17 19:25:02.251531"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.252259"], ["updated_at", "2023-02-17 19:25:02.252259"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.253156"], ["updated_at", "2023-02-17 19:25:02.253156"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.254301"], ["updated_at", "2023-02-17 19:25:02.254301"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.255251"], ["updated_at", "2023-02-17 19:25:02.255251"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.256038"], ["updated_at", "2023-02-17 19:25:02.256038"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.256784"], ["updated_at", "2023-02-17 19:25:02.256784"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.257576"], ["updated_at", "2023-02-17 19:25:02.257576"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.258464"], ["updated_at", "2023-02-17 19:25:02.258464"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.259291"], ["updated_at", "2023-02-17 19:25:02.259291"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:02.270968"], ["updated_at", "2023-02-17 19:25:02.270968"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:02.272245"], ["updated_at", "2023-02-17 19:25:02.272245"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:02.273212"], ["updated_at", "2023-02-17 19:25:02.273212"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:02.274261"], ["updated_at", "2023-02-17 19:25:02.274261"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:02.275061"], ["updated_at", "2023-02-17 19:25:02.275061"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:02.275769"], ["updated_at", "2023-02-17 19:25:02.275769"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:02.276459"], ["updated_at", "2023-02-17 19:25:02.276459"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:02.277223"], ["updated_at", "2023-02-17 19:25:02.277223"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:02.278089"], ["updated_at", "2023-02-17 19:25:02.278089"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.278971"], ["updated_at", "2023-02-17 19:25:02.278971"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.279807"], ["updated_at", "2023-02-17 19:25:02.279807"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.280551"], ["updated_at", "2023-02-17 19:25:02.280551"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.281486"], ["updated_at", "2023-02-17 19:25:02.281486"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.282270"], ["updated_at", "2023-02-17 19:25:02.282270"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.283090"], ["updated_at", "2023-02-17 19:25:02.283090"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.283851"], ["updated_at", "2023-02-17 19:25:02.283851"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.284604"], ["updated_at", "2023-02-17 19:25:02.284604"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.285505"], ["updated_at", "2023-02-17 19:25:02.285505"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.286244"], ["updated_at", "2023-02-17 19:25:02.286244"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.287012"], ["updated_at", "2023-02-17 19:25:02.287012"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.287756"], ["updated_at", "2023-02-17 19:25:02.287756"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.304965"], ["updated_at", "2023-02-17 19:25:02.304965"]]
QuestionAnswer Create (0.5ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.306050"], ["updated_at", "2023-02-17 19:25:02.306050"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.307512"], ["updated_at", "2023-02-17 19:25:02.307512"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.308511"], ["updated_at", "2023-02-17 19:25:02.308511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.309351"], ["updated_at", "2023-02-17 19:25:02.309351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.310149"], ["updated_at", "2023-02-17 19:25:02.310149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.310866"], ["updated_at", "2023-02-17 19:25:02.310866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.311767"], ["updated_at", "2023-02-17 19:25:02.311767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.312512"], ["updated_at", "2023-02-17 19:25:02.312512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.313228"], ["updated_at", "2023-02-17 19:25:02.313228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.313913"], ["updated_at", "2023-02-17 19:25:02.313913"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.314600"], ["updated_at", "2023-02-17 19:25:02.314600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.315436"], ["updated_at", "2023-02-17 19:25:02.315436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.316157"], ["updated_at", "2023-02-17 19:25:02.316157"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.316879"], ["updated_at", "2023-02-17 19:25:02.316879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.317600"], ["updated_at", "2023-02-17 19:25:02.317600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.333779"], ["updated_at", "2023-02-17 19:25:02.333779"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.334874"], ["updated_at", "2023-02-17 19:25:02.334874"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.335636"], ["updated_at", "2023-02-17 19:25:02.335636"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.336331"], ["updated_at", "2023-02-17 19:25:02.336331"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.337110"], ["updated_at", "2023-02-17 19:25:02.337110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.338001"], ["updated_at", "2023-02-17 19:25:02.338001"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.338768"], ["updated_at", "2023-02-17 19:25:02.338768"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.339483"], ["updated_at", "2023-02-17 19:25:02.339483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.340174"], ["updated_at", "2023-02-17 19:25:02.340174"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.340856"], ["updated_at", "2023-02-17 19:25:02.340856"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.341753"], ["updated_at", "2023-02-17 19:25:02.341753"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.342538"], ["updated_at", "2023-02-17 19:25:02.342538"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.343242"], ["updated_at", "2023-02-17 19:25:02.343242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.343913"], ["updated_at", "2023-02-17 19:25:02.343913"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.344598"], ["updated_at", "2023-02-17 19:25:02.344598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.345405"], ["updated_at", "2023-02-17 19:25:02.345405"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.362274"], ["updated_at", "2023-02-17 19:25:02.362274"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.363397"], ["updated_at", "2023-02-17 19:25:02.363397"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.364181"], ["updated_at", "2023-02-17 19:25:02.364181"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.364879"], ["updated_at", "2023-02-17 19:25:02.364879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.365647"], ["updated_at", "2023-02-17 19:25:02.365647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.366455"], ["updated_at", "2023-02-17 19:25:02.366455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.367231"], ["updated_at", "2023-02-17 19:25:02.367231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.368015"], ["updated_at", "2023-02-17 19:25:02.368015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.368858"], ["updated_at", "2023-02-17 19:25:02.368858"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.369879"], ["updated_at", "2023-02-17 19:25:02.369879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.370924"], ["updated_at", "2023-02-17 19:25:02.370924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.371672"], ["updated_at", "2023-02-17 19:25:02.371672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.372408"], ["updated_at", "2023-02-17 19:25:02.372408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.373270"], ["updated_at", "2023-02-17 19:25:02.373270"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.374093"], ["updated_at", "2023-02-17 19:25:02.374093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.374880"], ["updated_at", "2023-02-17 19:25:02.374880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.391727"], ["updated_at", "2023-02-17 19:25:02.391727"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.392922"], ["updated_at", "2023-02-17 19:25:02.392922"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.393714"], ["updated_at", "2023-02-17 19:25:02.393714"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.394443"], ["updated_at", "2023-02-17 19:25:02.394443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.395248"], ["updated_at", "2023-02-17 19:25:02.395248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.396124"], ["updated_at", "2023-02-17 19:25:02.396124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.397022"], ["updated_at", "2023-02-17 19:25:02.397022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.397871"], ["updated_at", "2023-02-17 19:25:02.397871"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.398574"], ["updated_at", "2023-02-17 19:25:02.398574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.399322"], ["updated_at", "2023-02-17 19:25:02.399322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.400203"], ["updated_at", "2023-02-17 19:25:02.400203"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.400965"], ["updated_at", "2023-02-17 19:25:02.400965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.401716"], ["updated_at", "2023-02-17 19:25:02.401716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.402417"], ["updated_at", "2023-02-17 19:25:02.402417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.403111"], ["updated_at", "2023-02-17 19:25:02.403111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.404009"], ["updated_at", "2023-02-17 19:25:02.404009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.420304"], ["updated_at", "2023-02-17 19:25:02.420304"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.421385"], ["updated_at", "2023-02-17 19:25:02.421385"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.422252"], ["updated_at", "2023-02-17 19:25:02.422252"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.423104"], ["updated_at", "2023-02-17 19:25:02.423104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.423903"], ["updated_at", "2023-02-17 19:25:02.423903"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.424613"], ["updated_at", "2023-02-17 19:25:02.424613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.425324"], ["updated_at", "2023-02-17 19:25:02.425324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.426129"], ["updated_at", "2023-02-17 19:25:02.426129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.426905"], ["updated_at", "2023-02-17 19:25:02.426905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.427674"], ["updated_at", "2023-02-17 19:25:02.427674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.428435"], ["updated_at", "2023-02-17 19:25:02.428435"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.429163"], ["updated_at", "2023-02-17 19:25:02.429163"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.430088"], ["updated_at", "2023-02-17 19:25:02.430088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.431066"], ["updated_at", "2023-02-17 19:25:02.431066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.431828"], ["updated_at", "2023-02-17 19:25:02.431828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.432527"], ["updated_at", "2023-02-17 19:25:02.432527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.449235"], ["updated_at", "2023-02-17 19:25:02.449235"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.450243"], ["updated_at", "2023-02-17 19:25:02.450243"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.451123"], ["updated_at", "2023-02-17 19:25:02.451123"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.451861"], ["updated_at", "2023-02-17 19:25:02.451861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.452624"], ["updated_at", "2023-02-17 19:25:02.452624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.453345"], ["updated_at", "2023-02-17 19:25:02.453345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.454051"], ["updated_at", "2023-02-17 19:25:02.454051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.455018"], ["updated_at", "2023-02-17 19:25:02.455018"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.455786"], ["updated_at", "2023-02-17 19:25:02.455786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.456703"], ["updated_at", "2023-02-17 19:25:02.456703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.457619"], ["updated_at", "2023-02-17 19:25:02.457619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.458372"], ["updated_at", "2023-02-17 19:25:02.458372"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.459379"], ["updated_at", "2023-02-17 19:25:02.459379"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.460255"], ["updated_at", "2023-02-17 19:25:02.460255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.460985"], ["updated_at", "2023-02-17 19:25:02.460985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.461700"], ["updated_at", "2023-02-17 19:25:02.461700"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:25:02 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:02.471140"], ["updated_at", "2023-02-17 19:25:02.471140"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:02.472580"], ["updated_at", "2023-02-17 19:25:02.472580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:02.475564"], ["updated_at", "2023-02-17 19:25:02.475564"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:02.476723"], ["updated_at", "2023-02-17 19:25:02.476723"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:02.479690"], ["updated_at", "2023-02-17 19:25:02.479690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:02.480854"], ["updated_at", "2023-02-17 19:25:02.480854"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:02.483048"], ["updated_at", "2023-02-17 19:25:02.483048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:02.484467"], ["updated_at", "2023-02-17 19:25:02.484467"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:02.486247"], ["updated_at", "2023-02-17 19:25:02.486247"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:02.487652"], ["updated_at", "2023-02-17 19:25:02.487652"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:02.489212"], ["updated_at", "2023-02-17 19:25:02.489212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:02.490504"], ["updated_at", "2023-02-17 19:25:02.490504"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:02.491879"], ["updated_at", "2023-02-17 19:25:02.491879"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:02.493289"], ["updated_at", "2023-02-17 19:25:02.493289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:02.494784"], ["updated_at", "2023-02-17 19:25:02.494784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:02.495956"], ["updated_at", "2023-02-17 19:25:02.495956"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:02.497444"], ["updated_at", "2023-02-17 19:25:02.497444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:02.498713"], ["updated_at", "2023-02-17 19:25:02.498713"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:02.500087"], ["updated_at", "2023-02-17 19:25:02.500087"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:02.501513"], ["updated_at", "2023-02-17 19:25:02.501513"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:02.502944"], ["updated_at", "2023-02-17 19:25:02.502944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:02.504217"], ["updated_at", "2023-02-17 19:25:02.504217"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:02.505738"], ["updated_at", "2023-02-17 19:25:02.505738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:02.506936"], ["updated_at", "2023-02-17 19:25:02.506936"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:02.508511"], ["updated_at", "2023-02-17 19:25:02.508511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:02.509775"], ["updated_at", "2023-02-17 19:25:02.509775"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:02.511120"], ["updated_at", "2023-02-17 19:25:02.511120"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:02.512432"], ["updated_at", "2023-02-17 19:25:02.512432"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:02.513798"], ["updated_at", "2023-02-17 19:25:02.513798"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:02.514958"], ["updated_at", "2023-02-17 19:25:02.514958"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:02.516601"], ["updated_at", "2023-02-17 19:25:02.516601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:02.517879"], ["updated_at", "2023-02-17 19:25:02.517879"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:02.519539"], ["updated_at", "2023-02-17 19:25:02.519539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:02.520844"], ["updated_at", "2023-02-17 19:25:02.520844"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:02.522274"], ["updated_at", "2023-02-17 19:25:02.522274"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:02.523635"], ["updated_at", "2023-02-17 19:25:02.523635"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:02.525050"], ["updated_at", "2023-02-17 19:25:02.525050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:02.526246"], ["updated_at", "2023-02-17 19:25:02.526246"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:02.527857"], ["updated_at", "2023-02-17 19:25:02.527857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:02.529130"], ["updated_at", "2023-02-17 19:25:02.529130"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:02.530583"], ["updated_at", "2023-02-17 19:25:02.530583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:02.531835"], ["updated_at", "2023-02-17 19:25:02.531835"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:02.533244"], ["updated_at", "2023-02-17 19:25:02.533244"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.534617"], ["updated_at", "2023-02-17 19:25:02.534617"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:02.536107"], ["updated_at", "2023-02-17 19:25:02.536107"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:02.537291"], ["updated_at", "2023-02-17 19:25:02.537291"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:02.538859"], ["updated_at", "2023-02-17 19:25:02.538859"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:02.540064"], ["updated_at", "2023-02-17 19:25:02.540064"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:02.541426"], ["updated_at", "2023-02-17 19:25:02.541426"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:02.542869"], ["updated_at", "2023-02-17 19:25:02.542869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:02.544284"], ["updated_at", "2023-02-17 19:25:02.544284"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:02.545554"], ["updated_at", "2023-02-17 19:25:02.545554"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:02.546987"], ["updated_at", "2023-02-17 19:25:02.546987"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:02.548455"], ["updated_at", "2023-02-17 19:25:02.548455"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:02.550081"], ["updated_at", "2023-02-17 19:25:02.550081"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:02.551327"], ["updated_at", "2023-02-17 19:25:02.551327"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:02.552979"], ["updated_at", "2023-02-17 19:25:02.552979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:02.554183"], ["updated_at", "2023-02-17 19:25:02.554183"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:02.555628"], ["updated_at", "2023-02-17 19:25:02.555628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:02.556828"], ["updated_at", "2023-02-17 19:25:02.556828"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:02.558244"], ["updated_at", "2023-02-17 19:25:02.558244"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:02.559619"], ["updated_at", "2023-02-17 19:25:02.559619"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:02.561656"], ["updated_at", "2023-02-17 19:25:02.561656"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.562956"], ["updated_at", "2023-02-17 19:25:02.562956"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:02.564349"], ["updated_at", "2023-02-17 19:25:02.564349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:02.565861"], ["updated_at", "2023-02-17 19:25:02.565861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:02.567257"], ["updated_at", "2023-02-17 19:25:02.567257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:02.568562"], ["updated_at", "2023-02-17 19:25:02.568562"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:02.570085"], ["updated_at", "2023-02-17 19:25:02.570085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.571284"], ["updated_at", "2023-02-17 19:25:02.571284"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:02.572843"], ["updated_at", "2023-02-17 19:25:02.572843"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:02.574207"], ["updated_at", "2023-02-17 19:25:02.574207"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:02.575592"], ["updated_at", "2023-02-17 19:25:02.575592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:02.576892"], ["updated_at", "2023-02-17 19:25:02.576892"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:02.578512"], ["updated_at", "2023-02-17 19:25:02.578512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:02.580216"], ["updated_at", "2023-02-17 19:25:02.580216"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:02.581772"], ["updated_at", "2023-02-17 19:25:02.581772"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:02.583012"], ["updated_at", "2023-02-17 19:25:02.583012"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:02.584508"], ["updated_at", "2023-02-17 19:25:02.584508"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:02.585744"], ["updated_at", "2023-02-17 19:25:02.585744"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:02.587150"], ["updated_at", "2023-02-17 19:25:02.587150"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.588795"], ["updated_at", "2023-02-17 19:25:02.588795"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:02.590437"], ["updated_at", "2023-02-17 19:25:02.590437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:02.591896"], ["updated_at", "2023-02-17 19:25:02.591896"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:02.593317"], ["updated_at", "2023-02-17 19:25:02.593317"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:02.594607"], ["updated_at", "2023-02-17 19:25:02.594607"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:02.596331"], ["updated_at", "2023-02-17 19:25:02.596331"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:02.597599"], ["updated_at", "2023-02-17 19:25:02.597599"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:02.599419"], ["updated_at", "2023-02-17 19:25:02.599419"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:02.600738"], ["updated_at", "2023-02-17 19:25:02.600738"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:02.602148"], ["updated_at", "2023-02-17 19:25:02.602148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:02.603688"], ["updated_at", "2023-02-17 19:25:02.603688"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:02.605191"], ["updated_at", "2023-02-17 19:25:02.605191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:02.606551"], ["updated_at", "2023-02-17 19:25:02.606551"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:02.608027"], ["updated_at", "2023-02-17 19:25:02.608027"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:02.609580"], ["updated_at", "2023-02-17 19:25:02.609580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:02.611171"], ["updated_at", "2023-02-17 19:25:02.611171"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:02.612569"], ["updated_at", "2023-02-17 19:25:02.612569"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:02.614102"], ["updated_at", "2023-02-17 19:25:02.614102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:02.615322"], ["updated_at", "2023-02-17 19:25:02.615322"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:02.616324"], ["updated_at", "2023-02-17 19:25:02.616324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:02.628670"], ["updated_at", "2023-02-17 19:25:02.628670"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:02.630167"], ["updated_at", "2023-02-17 19:25:02.630167"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:02.631144"], ["updated_at", "2023-02-17 19:25:02.631144"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.632053"], ["updated_at", "2023-02-17 19:25:02.632053"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.633197"], ["updated_at", "2023-02-17 19:25:02.633197"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.633974"], ["updated_at", "2023-02-17 19:25:02.633974"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.634800"], ["updated_at", "2023-02-17 19:25:02.634800"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.635654"], ["updated_at", "2023-02-17 19:25:02.635654"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:02.636821"], ["updated_at", "2023-02-17 19:25:02.636821"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.637780"], ["updated_at", "2023-02-17 19:25:02.637780"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.639031"], ["updated_at", "2023-02-17 19:25:02.639031"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.640182"], ["updated_at", "2023-02-17 19:25:02.640182"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.641149"], ["updated_at", "2023-02-17 19:25:02.641149"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.642068"], ["updated_at", "2023-02-17 19:25:02.642068"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.642826"], ["updated_at", "2023-02-17 19:25:02.642826"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.643555"], ["updated_at", "2023-02-17 19:25:02.643555"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.644440"], ["updated_at", "2023-02-17 19:25:02.644440"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.645227"], ["updated_at", "2023-02-17 19:25:02.645227"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.645978"], ["updated_at", "2023-02-17 19:25:02.645978"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.646651"], ["updated_at", "2023-02-17 19:25:02.646651"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.647365"], ["updated_at", "2023-02-17 19:25:02.647365"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:02.660197"], ["updated_at", "2023-02-17 19:25:02.660197"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:02.661556"], ["updated_at", "2023-02-17 19:25:02.661556"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:02.662925"], ["updated_at", "2023-02-17 19:25:02.662925"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:02.663822"], ["updated_at", "2023-02-17 19:25:02.663822"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:02.664681"], ["updated_at", "2023-02-17 19:25:02.664681"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:02.665636"], ["updated_at", "2023-02-17 19:25:02.665636"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:02.666392"], ["updated_at", "2023-02-17 19:25:02.666392"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:02.667072"], ["updated_at", "2023-02-17 19:25:02.667072"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:02.667831"], ["updated_at", "2023-02-17 19:25:02.667831"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.668975"], ["updated_at", "2023-02-17 19:25:02.668975"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.670065"], ["updated_at", "2023-02-17 19:25:02.670065"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.670862"], ["updated_at", "2023-02-17 19:25:02.670862"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.671715"], ["updated_at", "2023-02-17 19:25:02.671715"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.672751"], ["updated_at", "2023-02-17 19:25:02.672751"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.673585"], ["updated_at", "2023-02-17 19:25:02.673585"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.674321"], ["updated_at", "2023-02-17 19:25:02.674321"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.675076"], ["updated_at", "2023-02-17 19:25:02.675076"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.675785"], ["updated_at", "2023-02-17 19:25:02.675785"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.676629"], ["updated_at", "2023-02-17 19:25:02.676629"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.677376"], ["updated_at", "2023-02-17 19:25:02.677376"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:02.678167"], ["updated_at", "2023-02-17 19:25:02.678167"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.695651"], ["updated_at", "2023-02-17 19:25:02.695651"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.696775"], ["updated_at", "2023-02-17 19:25:02.696775"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.697634"], ["updated_at", "2023-02-17 19:25:02.697634"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.698370"], ["updated_at", "2023-02-17 19:25:02.698370"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.699609"], ["updated_at", "2023-02-17 19:25:02.699609"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.700571"], ["updated_at", "2023-02-17 19:25:02.700571"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.701331"], ["updated_at", "2023-02-17 19:25:02.701331"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.702042"], ["updated_at", "2023-02-17 19:25:02.702042"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.702985"], ["updated_at", "2023-02-17 19:25:02.702985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.703763"], ["updated_at", "2023-02-17 19:25:02.703763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.704484"], ["updated_at", "2023-02-17 19:25:02.704484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.705225"], ["updated_at", "2023-02-17 19:25:02.705225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.705939"], ["updated_at", "2023-02-17 19:25:02.705939"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.706750"], ["updated_at", "2023-02-17 19:25:02.706750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.707466"], ["updated_at", "2023-02-17 19:25:02.707466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:02.708153"], ["updated_at", "2023-02-17 19:25:02.708153"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.724845"], ["updated_at", "2023-02-17 19:25:02.724845"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.726054"], ["updated_at", "2023-02-17 19:25:02.726054"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.726858"], ["updated_at", "2023-02-17 19:25:02.726858"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.727568"], ["updated_at", "2023-02-17 19:25:02.727568"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.728345"], ["updated_at", "2023-02-17 19:25:02.728345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.729499"], ["updated_at", "2023-02-17 19:25:02.729499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.730421"], ["updated_at", "2023-02-17 19:25:02.730421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.731126"], ["updated_at", "2023-02-17 19:25:02.731126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.731885"], ["updated_at", "2023-02-17 19:25:02.731885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.732684"], ["updated_at", "2023-02-17 19:25:02.732684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.733525"], ["updated_at", "2023-02-17 19:25:02.733525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.734261"], ["updated_at", "2023-02-17 19:25:02.734261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.734964"], ["updated_at", "2023-02-17 19:25:02.734964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.735631"], ["updated_at", "2023-02-17 19:25:02.735631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.736395"], ["updated_at", "2023-02-17 19:25:02.736395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:02.737209"], ["updated_at", "2023-02-17 19:25:02.737209"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.754282"], ["updated_at", "2023-02-17 19:25:02.754282"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.755287"], ["updated_at", "2023-02-17 19:25:02.755287"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.756046"], ["updated_at", "2023-02-17 19:25:02.756046"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.756724"], ["updated_at", "2023-02-17 19:25:02.756724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.757593"], ["updated_at", "2023-02-17 19:25:02.757593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.758392"], ["updated_at", "2023-02-17 19:25:02.758392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.759378"], ["updated_at", "2023-02-17 19:25:02.759378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.760315"], ["updated_at", "2023-02-17 19:25:02.760315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.761040"], ["updated_at", "2023-02-17 19:25:02.761040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.761935"], ["updated_at", "2023-02-17 19:25:02.761935"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.762661"], ["updated_at", "2023-02-17 19:25:02.762661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.763714"], ["updated_at", "2023-02-17 19:25:02.763714"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.764617"], ["updated_at", "2023-02-17 19:25:02.764617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.765384"], ["updated_at", "2023-02-17 19:25:02.765384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.766091"], ["updated_at", "2023-02-17 19:25:02.766091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:02.766794"], ["updated_at", "2023-02-17 19:25:02.766794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.783810"], ["updated_at", "2023-02-17 19:25:02.783810"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.784826"], ["updated_at", "2023-02-17 19:25:02.784826"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.785618"], ["updated_at", "2023-02-17 19:25:02.785618"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.786440"], ["updated_at", "2023-02-17 19:25:02.786440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.787194"], ["updated_at", "2023-02-17 19:25:02.787194"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.787924"], ["updated_at", "2023-02-17 19:25:02.787924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.788639"], ["updated_at", "2023-02-17 19:25:02.788639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.789833"], ["updated_at", "2023-02-17 19:25:02.789833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.790825"], ["updated_at", "2023-02-17 19:25:02.790825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.791952"], ["updated_at", "2023-02-17 19:25:02.791952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.792858"], ["updated_at", "2023-02-17 19:25:02.792858"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.793730"], ["updated_at", "2023-02-17 19:25:02.793730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.794483"], ["updated_at", "2023-02-17 19:25:02.794483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.795201"], ["updated_at", "2023-02-17 19:25:02.795201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.795893"], ["updated_at", "2023-02-17 19:25:02.795893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:02.796562"], ["updated_at", "2023-02-17 19:25:02.796562"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.813818"], ["updated_at", "2023-02-17 19:25:02.813818"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.814820"], ["updated_at", "2023-02-17 19:25:02.814820"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.815656"], ["updated_at", "2023-02-17 19:25:02.815656"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.816541"], ["updated_at", "2023-02-17 19:25:02.816541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.817345"], ["updated_at", "2023-02-17 19:25:02.817345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.818099"], ["updated_at", "2023-02-17 19:25:02.818099"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.818861"], ["updated_at", "2023-02-17 19:25:02.818861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.820117"], ["updated_at", "2023-02-17 19:25:02.820117"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.821037"], ["updated_at", "2023-02-17 19:25:02.821037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.821811"], ["updated_at", "2023-02-17 19:25:02.821811"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.822525"], ["updated_at", "2023-02-17 19:25:02.822525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.823240"], ["updated_at", "2023-02-17 19:25:02.823240"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.824091"], ["updated_at", "2023-02-17 19:25:02.824091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.824818"], ["updated_at", "2023-02-17 19:25:02.824818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.825592"], ["updated_at", "2023-02-17 19:25:02.825592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:02.826300"], ["updated_at", "2023-02-17 19:25:02.826300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:02.843438"], ["updated_at", "2023-02-17 19:25:02.843438"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:02.844485"], ["updated_at", "2023-02-17 19:25:02.844485"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:02.845281"], ["updated_at", "2023-02-17 19:25:02.845281"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:02.846094"], ["updated_at", "2023-02-17 19:25:02.846094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.846950"], ["updated_at", "2023-02-17 19:25:02.846950"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.847751"], ["updated_at", "2023-02-17 19:25:02.847751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.848490"], ["updated_at", "2023-02-17 19:25:02.848490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.849356"], ["updated_at", "2023-02-17 19:25:02.849356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.850634"], ["updated_at", "2023-02-17 19:25:02.850634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.851677"], ["updated_at", "2023-02-17 19:25:02.851677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.852572"], ["updated_at", "2023-02-17 19:25:02.852572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.853356"], ["updated_at", "2023-02-17 19:25:02.853356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.854322"], ["updated_at", "2023-02-17 19:25:02.854322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.855117"], ["updated_at", "2023-02-17 19:25:02.855117"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.855877"], ["updated_at", "2023-02-17 19:25:02.855877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:02.856599"], ["updated_at", "2023-02-17 19:25:02.856599"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:25:02 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 15ms (Views: 11.5ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:02.882307"], ["updated_at", "2023-02-17 19:25:02.882307"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:02.883914"], ["updated_at", "2023-02-17 19:25:02.883914"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:02.886815"], ["updated_at", "2023-02-17 19:25:02.886815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:02.888194"], ["updated_at", "2023-02-17 19:25:02.888194"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:02.891885"], ["updated_at", "2023-02-17 19:25:02.891885"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:02.893179"], ["updated_at", "2023-02-17 19:25:02.893179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:02.895735"], ["updated_at", "2023-02-17 19:25:02.895735"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:02.897346"], ["updated_at", "2023-02-17 19:25:02.897346"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:02.899259"], ["updated_at", "2023-02-17 19:25:02.899259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:02.900929"], ["updated_at", "2023-02-17 19:25:02.900929"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:02.902706"], ["updated_at", "2023-02-17 19:25:02.902706"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:02.904162"], ["updated_at", "2023-02-17 19:25:02.904162"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:02.905799"], ["updated_at", "2023-02-17 19:25:02.905799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:02.907421"], ["updated_at", "2023-02-17 19:25:02.907421"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:02.909016"], ["updated_at", "2023-02-17 19:25:02.909016"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:02.910908"], ["updated_at", "2023-02-17 19:25:02.910908"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:02.912583"], ["updated_at", "2023-02-17 19:25:02.912583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:02.914134"], ["updated_at", "2023-02-17 19:25:02.914134"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:02.915770"], ["updated_at", "2023-02-17 19:25:02.915770"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:02.917259"], ["updated_at", "2023-02-17 19:25:02.917259"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:02.918967"], ["updated_at", "2023-02-17 19:25:02.918967"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:02.920717"], ["updated_at", "2023-02-17 19:25:02.920717"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:02.922529"], ["updated_at", "2023-02-17 19:25:02.922529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:02.923843"], ["updated_at", "2023-02-17 19:25:02.923843"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:02.925919"], ["updated_at", "2023-02-17 19:25:02.925919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:02.927526"], ["updated_at", "2023-02-17 19:25:02.927526"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:02.929338"], ["updated_at", "2023-02-17 19:25:02.929338"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:02.930894"], ["updated_at", "2023-02-17 19:25:02.930894"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:02.932545"], ["updated_at", "2023-02-17 19:25:02.932545"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:02.934034"], ["updated_at", "2023-02-17 19:25:02.934034"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:02.935614"], ["updated_at", "2023-02-17 19:25:02.935614"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:02.937154"], ["updated_at", "2023-02-17 19:25:02.937154"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:02.939083"], ["updated_at", "2023-02-17 19:25:02.939083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:02.940766"], ["updated_at", "2023-02-17 19:25:02.940766"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:02.942526"], ["updated_at", "2023-02-17 19:25:02.942526"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:02.943902"], ["updated_at", "2023-02-17 19:25:02.943902"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:02.945569"], ["updated_at", "2023-02-17 19:25:02.945569"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:02.946976"], ["updated_at", "2023-02-17 19:25:02.946976"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:02.948552"], ["updated_at", "2023-02-17 19:25:02.948552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:02.950000"], ["updated_at", "2023-02-17 19:25:02.950000"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:02.951625"], ["updated_at", "2023-02-17 19:25:02.951625"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:02.953123"], ["updated_at", "2023-02-17 19:25:02.953123"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:02.954784"], ["updated_at", "2023-02-17 19:25:02.954784"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.956229"], ["updated_at", "2023-02-17 19:25:02.956229"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:02.958093"], ["updated_at", "2023-02-17 19:25:02.958093"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:02.959649"], ["updated_at", "2023-02-17 19:25:02.959649"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:02.961316"], ["updated_at", "2023-02-17 19:25:02.961316"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:02.962759"], ["updated_at", "2023-02-17 19:25:02.962759"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:02.964332"], ["updated_at", "2023-02-17 19:25:02.964332"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:02.965798"], ["updated_at", "2023-02-17 19:25:02.965798"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:02.967477"], ["updated_at", "2023-02-17 19:25:02.967477"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:02.968879"], ["updated_at", "2023-02-17 19:25:02.968879"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:02.970538"], ["updated_at", "2023-02-17 19:25:02.970538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:02.972106"], ["updated_at", "2023-02-17 19:25:02.972106"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:02.974008"], ["updated_at", "2023-02-17 19:25:02.974008"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:02.975695"], ["updated_at", "2023-02-17 19:25:02.975695"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:02.977345"], ["updated_at", "2023-02-17 19:25:02.977345"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:02.978791"], ["updated_at", "2023-02-17 19:25:02.978791"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:02.980444"], ["updated_at", "2023-02-17 19:25:02.980444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:02.981872"], ["updated_at", "2023-02-17 19:25:02.981872"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:02.983796"], ["updated_at", "2023-02-17 19:25:02.983796"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:02.985257"], ["updated_at", "2023-02-17 19:25:02.985257"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:02.986959"], ["updated_at", "2023-02-17 19:25:02.986959"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.988389"], ["updated_at", "2023-02-17 19:25:02.988389"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:02.990047"], ["updated_at", "2023-02-17 19:25:02.990047"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:02.991730"], ["updated_at", "2023-02-17 19:25:02.991730"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:02.993781"], ["updated_at", "2023-02-17 19:25:02.993781"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:02.995403"], ["updated_at", "2023-02-17 19:25:02.995403"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:02.997024"], ["updated_at", "2023-02-17 19:25:02.997024"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:02.998481"], ["updated_at", "2023-02-17 19:25:02.998481"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:03.000208"], ["updated_at", "2023-02-17 19:25:03.000208"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:03.001692"], ["updated_at", "2023-02-17 19:25:03.001692"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:03.003299"], ["updated_at", "2023-02-17 19:25:03.003299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:03.004674"], ["updated_at", "2023-02-17 19:25:03.004674"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:03.006415"], ["updated_at", "2023-02-17 19:25:03.006415"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:03.007912"], ["updated_at", "2023-02-17 19:25:03.007912"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:03.009878"], ["updated_at", "2023-02-17 19:25:03.009878"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:03.011372"], ["updated_at", "2023-02-17 19:25:03.011372"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:03.013016"], ["updated_at", "2023-02-17 19:25:03.013016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:03.014473"], ["updated_at", "2023-02-17 19:25:03.014473"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:03.016124"], ["updated_at", "2023-02-17 19:25:03.016124"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:03.017509"], ["updated_at", "2023-02-17 19:25:03.017509"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:03.019113"], ["updated_at", "2023-02-17 19:25:03.019113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:03.020537"], ["updated_at", "2023-02-17 19:25:03.020537"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:03.022213"], ["updated_at", "2023-02-17 19:25:03.022213"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:03.023755"], ["updated_at", "2023-02-17 19:25:03.023755"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:03.025721"], ["updated_at", "2023-02-17 19:25:03.025721"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:03.027184"], ["updated_at", "2023-02-17 19:25:03.027184"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:03.028868"], ["updated_at", "2023-02-17 19:25:03.028868"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:03.030453"], ["updated_at", "2023-02-17 19:25:03.030453"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:03.032210"], ["updated_at", "2023-02-17 19:25:03.032210"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:03.033621"], ["updated_at", "2023-02-17 19:25:03.033621"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:03.035272"], ["updated_at", "2023-02-17 19:25:03.035272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:03.036776"], ["updated_at", "2023-02-17 19:25:03.036776"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:03.038526"], ["updated_at", "2023-02-17 19:25:03.038526"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:03.039976"], ["updated_at", "2023-02-17 19:25:03.039976"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:03.041646"], ["updated_at", "2023-02-17 19:25:03.041646"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:03.043744"], ["updated_at", "2023-02-17 19:25:03.043744"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:03.045805"], ["updated_at", "2023-02-17 19:25:03.045805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:03.047339"], ["updated_at", "2023-02-17 19:25:03.047339"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:03.048773"], ["updated_at", "2023-02-17 19:25:03.048773"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:03.061296"], ["updated_at", "2023-02-17 19:25:03.061296"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:03.062652"], ["updated_at", "2023-02-17 19:25:03.062652"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:03.063737"], ["updated_at", "2023-02-17 19:25:03.063737"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.064641"], ["updated_at", "2023-02-17 19:25:03.064641"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.065505"], ["updated_at", "2023-02-17 19:25:03.065505"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.066294"], ["updated_at", "2023-02-17 19:25:03.066294"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.067058"], ["updated_at", "2023-02-17 19:25:03.067058"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.067894"], ["updated_at", "2023-02-17 19:25:03.067894"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:03.068740"], ["updated_at", "2023-02-17 19:25:03.068740"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.069647"], ["updated_at", "2023-02-17 19:25:03.069647"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.070601"], ["updated_at", "2023-02-17 19:25:03.070601"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.071448"], ["updated_at", "2023-02-17 19:25:03.071448"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.072253"], ["updated_at", "2023-02-17 19:25:03.072253"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.073089"], ["updated_at", "2023-02-17 19:25:03.073089"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.073956"], ["updated_at", "2023-02-17 19:25:03.073956"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.074860"], ["updated_at", "2023-02-17 19:25:03.074860"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.075702"], ["updated_at", "2023-02-17 19:25:03.075702"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.076486"], ["updated_at", "2023-02-17 19:25:03.076486"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.077253"], ["updated_at", "2023-02-17 19:25:03.077253"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.078013"], ["updated_at", "2023-02-17 19:25:03.078013"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.078762"], ["updated_at", "2023-02-17 19:25:03.078762"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:03.091557"], ["updated_at", "2023-02-17 19:25:03.091557"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:03.092950"], ["updated_at", "2023-02-17 19:25:03.092950"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:03.093899"], ["updated_at", "2023-02-17 19:25:03.093899"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.094790"], ["updated_at", "2023-02-17 19:25:03.094790"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.095548"], ["updated_at", "2023-02-17 19:25:03.095548"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.096312"], ["updated_at", "2023-02-17 19:25:03.096312"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.097046"], ["updated_at", "2023-02-17 19:25:03.097046"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.097823"], ["updated_at", "2023-02-17 19:25:03.097823"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:03.098611"], ["updated_at", "2023-02-17 19:25:03.098611"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.099505"], ["updated_at", "2023-02-17 19:25:03.099505"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.100438"], ["updated_at", "2023-02-17 19:25:03.100438"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.101394"], ["updated_at", "2023-02-17 19:25:03.101394"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.102199"], ["updated_at", "2023-02-17 19:25:03.102199"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.102972"], ["updated_at", "2023-02-17 19:25:03.102972"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.103755"], ["updated_at", "2023-02-17 19:25:03.103755"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.104521"], ["updated_at", "2023-02-17 19:25:03.104521"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.105406"], ["updated_at", "2023-02-17 19:25:03.105406"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.106257"], ["updated_at", "2023-02-17 19:25:03.106257"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.107094"], ["updated_at", "2023-02-17 19:25:03.107094"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.107918"], ["updated_at", "2023-02-17 19:25:03.107918"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.108670"], ["updated_at", "2023-02-17 19:25:03.108670"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.126514"], ["updated_at", "2023-02-17 19:25:03.126514"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.127720"], ["updated_at", "2023-02-17 19:25:03.127720"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.128606"], ["updated_at", "2023-02-17 19:25:03.128606"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.129431"], ["updated_at", "2023-02-17 19:25:03.129431"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.130306"], ["updated_at", "2023-02-17 19:25:03.130306"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.131304"], ["updated_at", "2023-02-17 19:25:03.131304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.132080"], ["updated_at", "2023-02-17 19:25:03.132080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.132821"], ["updated_at", "2023-02-17 19:25:03.132821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.133735"], ["updated_at", "2023-02-17 19:25:03.133735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.134524"], ["updated_at", "2023-02-17 19:25:03.134524"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.135299"], ["updated_at", "2023-02-17 19:25:03.135299"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.136125"], ["updated_at", "2023-02-17 19:25:03.136125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.136873"], ["updated_at", "2023-02-17 19:25:03.136873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.137629"], ["updated_at", "2023-02-17 19:25:03.137629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.138357"], ["updated_at", "2023-02-17 19:25:03.138357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.139115"], ["updated_at", "2023-02-17 19:25:03.139115"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.156353"], ["updated_at", "2023-02-17 19:25:03.156353"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.157416"], ["updated_at", "2023-02-17 19:25:03.157416"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.158264"], ["updated_at", "2023-02-17 19:25:03.158264"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.159034"], ["updated_at", "2023-02-17 19:25:03.159034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.159846"], ["updated_at", "2023-02-17 19:25:03.159846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.160764"], ["updated_at", "2023-02-17 19:25:03.160764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.161669"], ["updated_at", "2023-02-17 19:25:03.161669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.162422"], ["updated_at", "2023-02-17 19:25:03.162422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.163184"], ["updated_at", "2023-02-17 19:25:03.163184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.163921"], ["updated_at", "2023-02-17 19:25:03.163921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.164638"], ["updated_at", "2023-02-17 19:25:03.164638"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.165466"], ["updated_at", "2023-02-17 19:25:03.165466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.166257"], ["updated_at", "2023-02-17 19:25:03.166257"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.167024"], ["updated_at", "2023-02-17 19:25:03.167024"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.167781"], ["updated_at", "2023-02-17 19:25:03.167781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.168524"], ["updated_at", "2023-02-17 19:25:03.168524"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.5ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.195715"], ["updated_at", "2023-02-17 19:25:03.195715"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.196753"], ["updated_at", "2023-02-17 19:25:03.196753"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.197624"], ["updated_at", "2023-02-17 19:25:03.197624"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.198377"], ["updated_at", "2023-02-17 19:25:03.198377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.199184"], ["updated_at", "2023-02-17 19:25:03.199184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.199931"], ["updated_at", "2023-02-17 19:25:03.199931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.200625"], ["updated_at", "2023-02-17 19:25:03.200625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.201363"], ["updated_at", "2023-02-17 19:25:03.201363"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.202129"], ["updated_at", "2023-02-17 19:25:03.202129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.202904"], ["updated_at", "2023-02-17 19:25:03.202904"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.203636"], ["updated_at", "2023-02-17 19:25:03.203636"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.204368"], ["updated_at", "2023-02-17 19:25:03.204368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.205108"], ["updated_at", "2023-02-17 19:25:03.205108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.205869"], ["updated_at", "2023-02-17 19:25:03.205869"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.206598"], ["updated_at", "2023-02-17 19:25:03.206598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.207401"], ["updated_at", "2023-02-17 19:25:03.207401"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.225086"], ["updated_at", "2023-02-17 19:25:03.225086"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.226125"], ["updated_at", "2023-02-17 19:25:03.226125"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.226906"], ["updated_at", "2023-02-17 19:25:03.226906"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.227601"], ["updated_at", "2023-02-17 19:25:03.227601"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.228403"], ["updated_at", "2023-02-17 19:25:03.228403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.229199"], ["updated_at", "2023-02-17 19:25:03.229199"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.229922"], ["updated_at", "2023-02-17 19:25:03.229922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.230654"], ["updated_at", "2023-02-17 19:25:03.230654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.231364"], ["updated_at", "2023-02-17 19:25:03.231364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.232097"], ["updated_at", "2023-02-17 19:25:03.232097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.232870"], ["updated_at", "2023-02-17 19:25:03.232870"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.233617"], ["updated_at", "2023-02-17 19:25:03.233617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.234342"], ["updated_at", "2023-02-17 19:25:03.234342"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.235063"], ["updated_at", "2023-02-17 19:25:03.235063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.235786"], ["updated_at", "2023-02-17 19:25:03.235786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.236491"], ["updated_at", "2023-02-17 19:25:03.236491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.253200"], ["updated_at", "2023-02-17 19:25:03.253200"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.254248"], ["updated_at", "2023-02-17 19:25:03.254248"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.255066"], ["updated_at", "2023-02-17 19:25:03.255066"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.255870"], ["updated_at", "2023-02-17 19:25:03.255870"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.256712"], ["updated_at", "2023-02-17 19:25:03.256712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.257498"], ["updated_at", "2023-02-17 19:25:03.257498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.258227"], ["updated_at", "2023-02-17 19:25:03.258227"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.258986"], ["updated_at", "2023-02-17 19:25:03.258986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.259858"], ["updated_at", "2023-02-17 19:25:03.259858"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.260587"], ["updated_at", "2023-02-17 19:25:03.260587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.261309"], ["updated_at", "2023-02-17 19:25:03.261309"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.262004"], ["updated_at", "2023-02-17 19:25:03.262004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.262712"], ["updated_at", "2023-02-17 19:25:03.262712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.263421"], ["updated_at", "2023-02-17 19:25:03.263421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.264231"], ["updated_at", "2023-02-17 19:25:03.264231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.265102"], ["updated_at", "2023-02-17 19:25:03.265102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.282446"], ["updated_at", "2023-02-17 19:25:03.282446"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.283550"], ["updated_at", "2023-02-17 19:25:03.283550"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.284420"], ["updated_at", "2023-02-17 19:25:03.284420"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.285182"], ["updated_at", "2023-02-17 19:25:03.285182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.286416"], ["updated_at", "2023-02-17 19:25:03.286416"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.287397"], ["updated_at", "2023-02-17 19:25:03.287397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.288180"], ["updated_at", "2023-02-17 19:25:03.288180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.289004"], ["updated_at", "2023-02-17 19:25:03.289004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.289765"], ["updated_at", "2023-02-17 19:25:03.289765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.290622"], ["updated_at", "2023-02-17 19:25:03.290622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.291525"], ["updated_at", "2023-02-17 19:25:03.291525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.292325"], ["updated_at", "2023-02-17 19:25:03.292325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.293068"], ["updated_at", "2023-02-17 19:25:03.293068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.293805"], ["updated_at", "2023-02-17 19:25:03.293805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.294535"], ["updated_at", "2023-02-17 19:25:03.294535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.295258"], ["updated_at", "2023-02-17 19:25:03.295258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:25:03 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:03.313489"], ["updated_at", "2023-02-17 19:25:03.313489"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:03.315171"], ["updated_at", "2023-02-17 19:25:03.315171"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:03.318305"], ["updated_at", "2023-02-17 19:25:03.318305"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:03.319530"], ["updated_at", "2023-02-17 19:25:03.319530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:03.322515"], ["updated_at", "2023-02-17 19:25:03.322515"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:03.323831"], ["updated_at", "2023-02-17 19:25:03.323831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:03.325968"], ["updated_at", "2023-02-17 19:25:03.325968"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:03.327442"], ["updated_at", "2023-02-17 19:25:03.327442"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:03.329114"], ["updated_at", "2023-02-17 19:25:03.329114"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:03.330492"], ["updated_at", "2023-02-17 19:25:03.330492"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:03.332038"], ["updated_at", "2023-02-17 19:25:03.332038"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:03.333340"], ["updated_at", "2023-02-17 19:25:03.333340"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:03.334848"], ["updated_at", "2023-02-17 19:25:03.334848"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:03.336181"], ["updated_at", "2023-02-17 19:25:03.336181"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:03.337596"], ["updated_at", "2023-02-17 19:25:03.337596"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:03.338985"], ["updated_at", "2023-02-17 19:25:03.338985"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:03.340560"], ["updated_at", "2023-02-17 19:25:03.340560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:03.341895"], ["updated_at", "2023-02-17 19:25:03.341895"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:03.343351"], ["updated_at", "2023-02-17 19:25:03.343351"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:03.344751"], ["updated_at", "2023-02-17 19:25:03.344751"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:03.346374"], ["updated_at", "2023-02-17 19:25:03.346374"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:03.347608"], ["updated_at", "2023-02-17 19:25:03.347608"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:03.349109"], ["updated_at", "2023-02-17 19:25:03.349109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:03.350417"], ["updated_at", "2023-02-17 19:25:03.350417"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:03.351901"], ["updated_at", "2023-02-17 19:25:03.351901"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:03.353110"], ["updated_at", "2023-02-17 19:25:03.353110"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:03.354570"], ["updated_at", "2023-02-17 19:25:03.354570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:03.355990"], ["updated_at", "2023-02-17 19:25:03.355990"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:03.357692"], ["updated_at", "2023-02-17 19:25:03.357692"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:03.358971"], ["updated_at", "2023-02-17 19:25:03.358971"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:03.360406"], ["updated_at", "2023-02-17 19:25:03.360406"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:03.361698"], ["updated_at", "2023-02-17 19:25:03.361698"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:03.363066"], ["updated_at", "2023-02-17 19:25:03.363066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:03.364288"], ["updated_at", "2023-02-17 19:25:03.364288"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:03.365708"], ["updated_at", "2023-02-17 19:25:03.365708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:03.366880"], ["updated_at", "2023-02-17 19:25:03.366880"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:03.368242"], ["updated_at", "2023-02-17 19:25:03.368242"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:03.369472"], ["updated_at", "2023-02-17 19:25:03.369472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:03.371004"], ["updated_at", "2023-02-17 19:25:03.371004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:03.372503"], ["updated_at", "2023-02-17 19:25:03.372503"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:03.374183"], ["updated_at", "2023-02-17 19:25:03.374183"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:03.375468"], ["updated_at", "2023-02-17 19:25:03.375468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:03.376879"], ["updated_at", "2023-02-17 19:25:03.376879"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:03.378119"], ["updated_at", "2023-02-17 19:25:03.378119"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:03.379516"], ["updated_at", "2023-02-17 19:25:03.379516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:03.380747"], ["updated_at", "2023-02-17 19:25:03.380747"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:03.382150"], ["updated_at", "2023-02-17 19:25:03.382150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:03.383583"], ["updated_at", "2023-02-17 19:25:03.383583"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:03.385091"], ["updated_at", "2023-02-17 19:25:03.385091"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:03.386382"], ["updated_at", "2023-02-17 19:25:03.386382"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:03.387757"], ["updated_at", "2023-02-17 19:25:03.387757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:03.389313"], ["updated_at", "2023-02-17 19:25:03.389313"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:03.391105"], ["updated_at", "2023-02-17 19:25:03.391105"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:03.392436"], ["updated_at", "2023-02-17 19:25:03.392436"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:03.393899"], ["updated_at", "2023-02-17 19:25:03.393899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:03.395124"], ["updated_at", "2023-02-17 19:25:03.395124"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:03.396497"], ["updated_at", "2023-02-17 19:25:03.396497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:03.397705"], ["updated_at", "2023-02-17 19:25:03.397705"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:03.399376"], ["updated_at", "2023-02-17 19:25:03.399376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:03.400823"], ["updated_at", "2023-02-17 19:25:03.400823"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:03.402241"], ["updated_at", "2023-02-17 19:25:03.402241"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:03.403430"], ["updated_at", "2023-02-17 19:25:03.403430"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:03.404953"], ["updated_at", "2023-02-17 19:25:03.404953"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:03.406370"], ["updated_at", "2023-02-17 19:25:03.406370"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:03.407813"], ["updated_at", "2023-02-17 19:25:03.407813"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:03.409089"], ["updated_at", "2023-02-17 19:25:03.409089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:03.410649"], ["updated_at", "2023-02-17 19:25:03.410649"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:03.411898"], ["updated_at", "2023-02-17 19:25:03.411898"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:03.413272"], ["updated_at", "2023-02-17 19:25:03.413272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:03.414525"], ["updated_at", "2023-02-17 19:25:03.414525"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:03.415971"], ["updated_at", "2023-02-17 19:25:03.415971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:03.417188"], ["updated_at", "2023-02-17 19:25:03.417188"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:03.418575"], ["updated_at", "2023-02-17 19:25:03.418575"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:03.420230"], ["updated_at", "2023-02-17 19:25:03.420230"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:03.421804"], ["updated_at", "2023-02-17 19:25:03.421804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:03.423141"], ["updated_at", "2023-02-17 19:25:03.423141"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:03.424589"], ["updated_at", "2023-02-17 19:25:03.424589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:03.425876"], ["updated_at", "2023-02-17 19:25:03.425876"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:03.427264"], ["updated_at", "2023-02-17 19:25:03.427264"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:03.428434"], ["updated_at", "2023-02-17 19:25:03.428434"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:03.430221"], ["updated_at", "2023-02-17 19:25:03.430221"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:03.431545"], ["updated_at", "2023-02-17 19:25:03.431545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:03.432971"], ["updated_at", "2023-02-17 19:25:03.432971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:03.434188"], ["updated_at", "2023-02-17 19:25:03.434188"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:03.435602"], ["updated_at", "2023-02-17 19:25:03.435602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:03.436818"], ["updated_at", "2023-02-17 19:25:03.436818"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:03.438241"], ["updated_at", "2023-02-17 19:25:03.438241"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:03.439675"], ["updated_at", "2023-02-17 19:25:03.439675"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:03.441194"], ["updated_at", "2023-02-17 19:25:03.441194"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:03.442462"], ["updated_at", "2023-02-17 19:25:03.442462"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:03.443894"], ["updated_at", "2023-02-17 19:25:03.443894"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:03.445087"], ["updated_at", "2023-02-17 19:25:03.445087"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:03.446509"], ["updated_at", "2023-02-17 19:25:03.446509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:03.447763"], ["updated_at", "2023-02-17 19:25:03.447763"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:03.449274"], ["updated_at", "2023-02-17 19:25:03.449274"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:03.450677"], ["updated_at", "2023-02-17 19:25:03.450677"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:03.451970"], ["updated_at", "2023-02-17 19:25:03.451970"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:03.453397"], ["updated_at", "2023-02-17 19:25:03.453397"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:03.454888"], ["updated_at", "2023-02-17 19:25:03.454888"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:03.456138"], ["updated_at", "2023-02-17 19:25:03.456138"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:03.457189"], ["updated_at", "2023-02-17 19:25:03.457189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:03.468870"], ["updated_at", "2023-02-17 19:25:03.468870"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:03.470307"], ["updated_at", "2023-02-17 19:25:03.470307"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:03.471419"], ["updated_at", "2023-02-17 19:25:03.471419"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.472467"], ["updated_at", "2023-02-17 19:25:03.472467"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.473369"], ["updated_at", "2023-02-17 19:25:03.473369"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.474453"], ["updated_at", "2023-02-17 19:25:03.474453"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.475308"], ["updated_at", "2023-02-17 19:25:03.475308"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.476050"], ["updated_at", "2023-02-17 19:25:03.476050"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:03.476801"], ["updated_at", "2023-02-17 19:25:03.476801"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.477669"], ["updated_at", "2023-02-17 19:25:03.477669"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.478499"], ["updated_at", "2023-02-17 19:25:03.478499"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.479541"], ["updated_at", "2023-02-17 19:25:03.479541"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.480603"], ["updated_at", "2023-02-17 19:25:03.480603"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.481448"], ["updated_at", "2023-02-17 19:25:03.481448"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.482224"], ["updated_at", "2023-02-17 19:25:03.482224"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.482999"], ["updated_at", "2023-02-17 19:25:03.482999"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.483846"], ["updated_at", "2023-02-17 19:25:03.483846"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.484612"], ["updated_at", "2023-02-17 19:25:03.484612"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.485391"], ["updated_at", "2023-02-17 19:25:03.485391"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.486130"], ["updated_at", "2023-02-17 19:25:03.486130"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.486880"], ["updated_at", "2023-02-17 19:25:03.486880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:03.498986"], ["updated_at", "2023-02-17 19:25:03.498986"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:03.500294"], ["updated_at", "2023-02-17 19:25:03.500294"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:03.501244"], ["updated_at", "2023-02-17 19:25:03.501244"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.502144"], ["updated_at", "2023-02-17 19:25:03.502144"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.502953"], ["updated_at", "2023-02-17 19:25:03.502953"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.503645"], ["updated_at", "2023-02-17 19:25:03.503645"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.504361"], ["updated_at", "2023-02-17 19:25:03.504361"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.505078"], ["updated_at", "2023-02-17 19:25:03.505078"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:03.505847"], ["updated_at", "2023-02-17 19:25:03.505847"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.506737"], ["updated_at", "2023-02-17 19:25:03.506737"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.507612"], ["updated_at", "2023-02-17 19:25:03.507612"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.508685"], ["updated_at", "2023-02-17 19:25:03.508685"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.509727"], ["updated_at", "2023-02-17 19:25:03.509727"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.510589"], ["updated_at", "2023-02-17 19:25:03.510589"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.511412"], ["updated_at", "2023-02-17 19:25:03.511412"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.512160"], ["updated_at", "2023-02-17 19:25:03.512160"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.512953"], ["updated_at", "2023-02-17 19:25:03.512953"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.513742"], ["updated_at", "2023-02-17 19:25:03.513742"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.514483"], ["updated_at", "2023-02-17 19:25:03.514483"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.515240"], ["updated_at", "2023-02-17 19:25:03.515240"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.515988"], ["updated_at", "2023-02-17 19:25:03.515988"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.532506"], ["updated_at", "2023-02-17 19:25:03.532506"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.533671"], ["updated_at", "2023-02-17 19:25:03.533671"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.534505"], ["updated_at", "2023-02-17 19:25:03.534505"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.535262"], ["updated_at", "2023-02-17 19:25:03.535262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.536071"], ["updated_at", "2023-02-17 19:25:03.536071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.536868"], ["updated_at", "2023-02-17 19:25:03.536868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.537958"], ["updated_at", "2023-02-17 19:25:03.537958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.539058"], ["updated_at", "2023-02-17 19:25:03.539058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.539984"], ["updated_at", "2023-02-17 19:25:03.539984"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.540944"], ["updated_at", "2023-02-17 19:25:03.540944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.541908"], ["updated_at", "2023-02-17 19:25:03.541908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.542792"], ["updated_at", "2023-02-17 19:25:03.542792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.543545"], ["updated_at", "2023-02-17 19:25:03.543545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.544258"], ["updated_at", "2023-02-17 19:25:03.544258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.544971"], ["updated_at", "2023-02-17 19:25:03.544971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.545657"], ["updated_at", "2023-02-17 19:25:03.545657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.561849"], ["updated_at", "2023-02-17 19:25:03.561849"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.562879"], ["updated_at", "2023-02-17 19:25:03.562879"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.563652"], ["updated_at", "2023-02-17 19:25:03.563652"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.564395"], ["updated_at", "2023-02-17 19:25:03.564395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.565182"], ["updated_at", "2023-02-17 19:25:03.565182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.565934"], ["updated_at", "2023-02-17 19:25:03.565934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.566642"], ["updated_at", "2023-02-17 19:25:03.566642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.567345"], ["updated_at", "2023-02-17 19:25:03.567345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.568053"], ["updated_at", "2023-02-17 19:25:03.568053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.569110"], ["updated_at", "2023-02-17 19:25:03.569110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.570056"], ["updated_at", "2023-02-17 19:25:03.570056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.570847"], ["updated_at", "2023-02-17 19:25:03.570847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.571577"], ["updated_at", "2023-02-17 19:25:03.571577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.572320"], ["updated_at", "2023-02-17 19:25:03.572320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.573076"], ["updated_at", "2023-02-17 19:25:03.573076"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.573846"], ["updated_at", "2023-02-17 19:25:03.573846"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.589992"], ["updated_at", "2023-02-17 19:25:03.589992"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.591008"], ["updated_at", "2023-02-17 19:25:03.591008"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.591798"], ["updated_at", "2023-02-17 19:25:03.591798"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.592516"], ["updated_at", "2023-02-17 19:25:03.592516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.593311"], ["updated_at", "2023-02-17 19:25:03.593311"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.594059"], ["updated_at", "2023-02-17 19:25:03.594059"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.594756"], ["updated_at", "2023-02-17 19:25:03.594756"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.595459"], ["updated_at", "2023-02-17 19:25:03.595459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.596166"], ["updated_at", "2023-02-17 19:25:03.596166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.596882"], ["updated_at", "2023-02-17 19:25:03.596882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.597597"], ["updated_at", "2023-02-17 19:25:03.597597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.598333"], ["updated_at", "2023-02-17 19:25:03.598333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.599404"], ["updated_at", "2023-02-17 19:25:03.599404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.600308"], ["updated_at", "2023-02-17 19:25:03.600308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.601038"], ["updated_at", "2023-02-17 19:25:03.601038"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:03.601763"], ["updated_at", "2023-02-17 19:25:03.601763"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.617872"], ["updated_at", "2023-02-17 19:25:03.617872"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.618917"], ["updated_at", "2023-02-17 19:25:03.618917"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.619771"], ["updated_at", "2023-02-17 19:25:03.619771"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.620505"], ["updated_at", "2023-02-17 19:25:03.620505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.621287"], ["updated_at", "2023-02-17 19:25:03.621287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.622026"], ["updated_at", "2023-02-17 19:25:03.622026"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.622738"], ["updated_at", "2023-02-17 19:25:03.622738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.623447"], ["updated_at", "2023-02-17 19:25:03.623447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.624144"], ["updated_at", "2023-02-17 19:25:03.624144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.624859"], ["updated_at", "2023-02-17 19:25:03.624859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.625597"], ["updated_at", "2023-02-17 19:25:03.625597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.626321"], ["updated_at", "2023-02-17 19:25:03.626321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.627025"], ["updated_at", "2023-02-17 19:25:03.627025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.627726"], ["updated_at", "2023-02-17 19:25:03.627726"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.628427"], ["updated_at", "2023-02-17 19:25:03.628427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:03.629482"], ["updated_at", "2023-02-17 19:25:03.629482"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.646511"], ["updated_at", "2023-02-17 19:25:03.646511"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.647492"], ["updated_at", "2023-02-17 19:25:03.647492"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.648355"], ["updated_at", "2023-02-17 19:25:03.648355"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.649276"], ["updated_at", "2023-02-17 19:25:03.649276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.650188"], ["updated_at", "2023-02-17 19:25:03.650188"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.650944"], ["updated_at", "2023-02-17 19:25:03.650944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.651677"], ["updated_at", "2023-02-17 19:25:03.651677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.652405"], ["updated_at", "2023-02-17 19:25:03.652405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.653154"], ["updated_at", "2023-02-17 19:25:03.653154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.653849"], ["updated_at", "2023-02-17 19:25:03.653849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.654549"], ["updated_at", "2023-02-17 19:25:03.654549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.655250"], ["updated_at", "2023-02-17 19:25:03.655250"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.655930"], ["updated_at", "2023-02-17 19:25:03.655930"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.656622"], ["updated_at", "2023-02-17 19:25:03.656622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.657351"], ["updated_at", "2023-02-17 19:25:03.657351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:03.658060"], ["updated_at", "2023-02-17 19:25:03.658060"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.674658"], ["updated_at", "2023-02-17 19:25:03.674658"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.675659"], ["updated_at", "2023-02-17 19:25:03.675659"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.676441"], ["updated_at", "2023-02-17 19:25:03.676441"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.677163"], ["updated_at", "2023-02-17 19:25:03.677163"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.677932"], ["updated_at", "2023-02-17 19:25:03.677932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.678661"], ["updated_at", "2023-02-17 19:25:03.678661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.679489"], ["updated_at", "2023-02-17 19:25:03.679489"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.680262"], ["updated_at", "2023-02-17 19:25:03.680262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.680978"], ["updated_at", "2023-02-17 19:25:03.680978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.681698"], ["updated_at", "2023-02-17 19:25:03.681698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.682436"], ["updated_at", "2023-02-17 19:25:03.682436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.683159"], ["updated_at", "2023-02-17 19:25:03.683159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.683859"], ["updated_at", "2023-02-17 19:25:03.683859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.684552"], ["updated_at", "2023-02-17 19:25:03.684552"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.685246"], ["updated_at", "2023-02-17 19:25:03.685246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:03.685953"], ["updated_at", "2023-02-17 19:25:03.685953"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:25:03 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:03.694892"], ["updated_at", "2023-02-17 19:25:03.694892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:03.696406"], ["updated_at", "2023-02-17 19:25:03.696406"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:03.699639"], ["updated_at", "2023-02-17 19:25:03.699639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:03.700936"], ["updated_at", "2023-02-17 19:25:03.700936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:03.703612"], ["updated_at", "2023-02-17 19:25:03.703612"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:03.704778"], ["updated_at", "2023-02-17 19:25:03.704778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:03.706883"], ["updated_at", "2023-02-17 19:25:03.706883"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:03.708317"], ["updated_at", "2023-02-17 19:25:03.708317"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:03.710074"], ["updated_at", "2023-02-17 19:25:03.710074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:03.711448"], ["updated_at", "2023-02-17 19:25:03.711448"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:03.712935"], ["updated_at", "2023-02-17 19:25:03.712935"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:03.714150"], ["updated_at", "2023-02-17 19:25:03.714150"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:03.715588"], ["updated_at", "2023-02-17 19:25:03.715588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:03.717237"], ["updated_at", "2023-02-17 19:25:03.717237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:03.718748"], ["updated_at", "2023-02-17 19:25:03.718748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:03.720383"], ["updated_at", "2023-02-17 19:25:03.720383"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:03.721886"], ["updated_at", "2023-02-17 19:25:03.721886"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:03.723087"], ["updated_at", "2023-02-17 19:25:03.723087"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:03.724458"], ["updated_at", "2023-02-17 19:25:03.724458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:03.725674"], ["updated_at", "2023-02-17 19:25:03.725674"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:03.727063"], ["updated_at", "2023-02-17 19:25:03.727063"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:03.728256"], ["updated_at", "2023-02-17 19:25:03.728256"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:03.730031"], ["updated_at", "2023-02-17 19:25:03.730031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:03.731399"], ["updated_at", "2023-02-17 19:25:03.731399"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:03.732784"], ["updated_at", "2023-02-17 19:25:03.732784"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:03.733990"], ["updated_at", "2023-02-17 19:25:03.733990"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:03.735377"], ["updated_at", "2023-02-17 19:25:03.735377"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:03.736561"], ["updated_at", "2023-02-17 19:25:03.736561"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:03.737960"], ["updated_at", "2023-02-17 19:25:03.737960"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:03.739200"], ["updated_at", "2023-02-17 19:25:03.739200"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:03.740736"], ["updated_at", "2023-02-17 19:25:03.740736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:03.741960"], ["updated_at", "2023-02-17 19:25:03.741960"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:03.743393"], ["updated_at", "2023-02-17 19:25:03.743393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:03.744586"], ["updated_at", "2023-02-17 19:25:03.744586"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:03.745958"], ["updated_at", "2023-02-17 19:25:03.745958"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:03.747147"], ["updated_at", "2023-02-17 19:25:03.747147"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:03.748514"], ["updated_at", "2023-02-17 19:25:03.748514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:03.750143"], ["updated_at", "2023-02-17 19:25:03.750143"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:03.751651"], ["updated_at", "2023-02-17 19:25:03.751651"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:03.752854"], ["updated_at", "2023-02-17 19:25:03.752854"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:03.754266"], ["updated_at", "2023-02-17 19:25:03.754266"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:03.755447"], ["updated_at", "2023-02-17 19:25:03.755447"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:03.756796"], ["updated_at", "2023-02-17 19:25:03.756796"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:03.757996"], ["updated_at", "2023-02-17 19:25:03.757996"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:03.759693"], ["updated_at", "2023-02-17 19:25:03.759693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:03.761103"], ["updated_at", "2023-02-17 19:25:03.761103"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:03.762503"], ["updated_at", "2023-02-17 19:25:03.762503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:03.763681"], ["updated_at", "2023-02-17 19:25:03.763681"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:03.765057"], ["updated_at", "2023-02-17 19:25:03.765057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:03.766271"], ["updated_at", "2023-02-17 19:25:03.766271"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:03.767629"], ["updated_at", "2023-02-17 19:25:03.767629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:03.768828"], ["updated_at", "2023-02-17 19:25:03.768828"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:03.770444"], ["updated_at", "2023-02-17 19:25:03.770444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:03.771710"], ["updated_at", "2023-02-17 19:25:03.771710"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:03.773252"], ["updated_at", "2023-02-17 19:25:03.773252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:03.774479"], ["updated_at", "2023-02-17 19:25:03.774479"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:03.775882"], ["updated_at", "2023-02-17 19:25:03.775882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:03.777128"], ["updated_at", "2023-02-17 19:25:03.777128"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:03.778558"], ["updated_at", "2023-02-17 19:25:03.778558"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:03.780135"], ["updated_at", "2023-02-17 19:25:03.780135"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:03.781966"], ["updated_at", "2023-02-17 19:25:03.781966"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:03.783569"], ["updated_at", "2023-02-17 19:25:03.783569"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:03.785196"], ["updated_at", "2023-02-17 19:25:03.785196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:03.786466"], ["updated_at", "2023-02-17 19:25:03.786466"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:03.787907"], ["updated_at", "2023-02-17 19:25:03.787907"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:03.789509"], ["updated_at", "2023-02-17 19:25:03.789509"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:03.791337"], ["updated_at", "2023-02-17 19:25:03.791337"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:03.792650"], ["updated_at", "2023-02-17 19:25:03.792650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:03.794169"], ["updated_at", "2023-02-17 19:25:03.794169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:03.795445"], ["updated_at", "2023-02-17 19:25:03.795445"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:03.796829"], ["updated_at", "2023-02-17 19:25:03.796829"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:03.798054"], ["updated_at", "2023-02-17 19:25:03.798054"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:03.799617"], ["updated_at", "2023-02-17 19:25:03.799617"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:03.801036"], ["updated_at", "2023-02-17 19:25:03.801036"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:03.802452"], ["updated_at", "2023-02-17 19:25:03.802452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:03.803756"], ["updated_at", "2023-02-17 19:25:03.803756"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:03.805253"], ["updated_at", "2023-02-17 19:25:03.805253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:03.806910"], ["updated_at", "2023-02-17 19:25:03.806910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:03.808464"], ["updated_at", "2023-02-17 19:25:03.808464"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:03.810111"], ["updated_at", "2023-02-17 19:25:03.810111"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:03.811803"], ["updated_at", "2023-02-17 19:25:03.811803"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:03.813221"], ["updated_at", "2023-02-17 19:25:03.813221"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:03.814823"], ["updated_at", "2023-02-17 19:25:03.814823"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:03.816164"], ["updated_at", "2023-02-17 19:25:03.816164"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:03.817793"], ["updated_at", "2023-02-17 19:25:03.817793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:03.819116"], ["updated_at", "2023-02-17 19:25:03.819116"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:03.820999"], ["updated_at", "2023-02-17 19:25:03.820999"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:03.822731"], ["updated_at", "2023-02-17 19:25:03.822731"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:03.824362"], ["updated_at", "2023-02-17 19:25:03.824362"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:03.825831"], ["updated_at", "2023-02-17 19:25:03.825831"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:03.827524"], ["updated_at", "2023-02-17 19:25:03.827524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:03.829105"], ["updated_at", "2023-02-17 19:25:03.829105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:03.830815"], ["updated_at", "2023-02-17 19:25:03.830815"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:03.832213"], ["updated_at", "2023-02-17 19:25:03.832213"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:03.833822"], ["updated_at", "2023-02-17 19:25:03.833822"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:03.835049"], ["updated_at", "2023-02-17 19:25:03.835049"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:03.836448"], ["updated_at", "2023-02-17 19:25:03.836448"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:03.838075"], ["updated_at", "2023-02-17 19:25:03.838075"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:03.840196"], ["updated_at", "2023-02-17 19:25:03.840196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:03.841690"], ["updated_at", "2023-02-17 19:25:03.841690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:03.842894"], ["updated_at", "2023-02-17 19:25:03.842894"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:03.855318"], ["updated_at", "2023-02-17 19:25:03.855318"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:03.856991"], ["updated_at", "2023-02-17 19:25:03.856991"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:03.858261"], ["updated_at", "2023-02-17 19:25:03.858261"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.859352"], ["updated_at", "2023-02-17 19:25:03.859352"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.860395"], ["updated_at", "2023-02-17 19:25:03.860395"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.861279"], ["updated_at", "2023-02-17 19:25:03.861279"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.862088"], ["updated_at", "2023-02-17 19:25:03.862088"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.862903"], ["updated_at", "2023-02-17 19:25:03.862903"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:03.863828"], ["updated_at", "2023-02-17 19:25:03.863828"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.864837"], ["updated_at", "2023-02-17 19:25:03.864837"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.865883"], ["updated_at", "2023-02-17 19:25:03.865883"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.866780"], ["updated_at", "2023-02-17 19:25:03.866780"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.867625"], ["updated_at", "2023-02-17 19:25:03.867625"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.868470"], ["updated_at", "2023-02-17 19:25:03.868470"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.869496"], ["updated_at", "2023-02-17 19:25:03.869496"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.870700"], ["updated_at", "2023-02-17 19:25:03.870700"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.871901"], ["updated_at", "2023-02-17 19:25:03.871901"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.873019"], ["updated_at", "2023-02-17 19:25:03.873019"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.873977"], ["updated_at", "2023-02-17 19:25:03.873977"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.874918"], ["updated_at", "2023-02-17 19:25:03.874918"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.875833"], ["updated_at", "2023-02-17 19:25:03.875833"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.5ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:03.888830"], ["updated_at", "2023-02-17 19:25:03.888830"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:03.892612"], ["updated_at", "2023-02-17 19:25:03.892612"]]
SurveyQuestion Create (0.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:03.894178"], ["updated_at", "2023-02-17 19:25:03.894178"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.895470"], ["updated_at", "2023-02-17 19:25:03.895470"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.896690"], ["updated_at", "2023-02-17 19:25:03.896690"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.898004"], ["updated_at", "2023-02-17 19:25:03.898004"]]
QuestionOption Create (0.3ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.899148"], ["updated_at", "2023-02-17 19:25:03.899148"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:03.900550"], ["updated_at", "2023-02-17 19:25:03.900550"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:03.901990"], ["updated_at", "2023-02-17 19:25:03.901990"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.903295"], ["updated_at", "2023-02-17 19:25:03.903295"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.904294"], ["updated_at", "2023-02-17 19:25:03.904294"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.905285"], ["updated_at", "2023-02-17 19:25:03.905285"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.906344"], ["updated_at", "2023-02-17 19:25:03.906344"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.907379"], ["updated_at", "2023-02-17 19:25:03.907379"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.908343"], ["updated_at", "2023-02-17 19:25:03.908343"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.909215"], ["updated_at", "2023-02-17 19:25:03.909215"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.910210"], ["updated_at", "2023-02-17 19:25:03.910210"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.911164"], ["updated_at", "2023-02-17 19:25:03.911164"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.911990"], ["updated_at", "2023-02-17 19:25:03.911990"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.912871"], ["updated_at", "2023-02-17 19:25:03.912871"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:03.913837"], ["updated_at", "2023-02-17 19:25:03.913837"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.932683"], ["updated_at", "2023-02-17 19:25:03.932683"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.933928"], ["updated_at", "2023-02-17 19:25:03.933928"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.934866"], ["updated_at", "2023-02-17 19:25:03.934866"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.935736"], ["updated_at", "2023-02-17 19:25:03.935736"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.936807"], ["updated_at", "2023-02-17 19:25:03.936807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.937827"], ["updated_at", "2023-02-17 19:25:03.937827"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.938675"], ["updated_at", "2023-02-17 19:25:03.938675"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.939629"], ["updated_at", "2023-02-17 19:25:03.939629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.940626"], ["updated_at", "2023-02-17 19:25:03.940626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.941457"], ["updated_at", "2023-02-17 19:25:03.941457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.942205"], ["updated_at", "2023-02-17 19:25:03.942205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.942962"], ["updated_at", "2023-02-17 19:25:03.942962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.943774"], ["updated_at", "2023-02-17 19:25:03.943774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.944826"], ["updated_at", "2023-02-17 19:25:03.944826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.945708"], ["updated_at", "2023-02-17 19:25:03.945708"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:03.946504"], ["updated_at", "2023-02-17 19:25:03.946504"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.964877"], ["updated_at", "2023-02-17 19:25:03.964877"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:03.966013"], ["updated_at", "2023-02-17 19:25:03.966013"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:03.967053"], ["updated_at", "2023-02-17 19:25:03.967053"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:03.967940"], ["updated_at", "2023-02-17 19:25:03.967940"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.968844"], ["updated_at", "2023-02-17 19:25:03.968844"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.969784"], ["updated_at", "2023-02-17 19:25:03.969784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.970754"], ["updated_at", "2023-02-17 19:25:03.970754"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.971621"], ["updated_at", "2023-02-17 19:25:03.971621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.972447"], ["updated_at", "2023-02-17 19:25:03.972447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.973382"], ["updated_at", "2023-02-17 19:25:03.973382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.974397"], ["updated_at", "2023-02-17 19:25:03.974397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.975339"], ["updated_at", "2023-02-17 19:25:03.975339"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.976150"], ["updated_at", "2023-02-17 19:25:03.976150"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.976988"], ["updated_at", "2023-02-17 19:25:03.976988"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.977962"], ["updated_at", "2023-02-17 19:25:03.977962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:03.979148"], ["updated_at", "2023-02-17 19:25:03.979148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:03.999349"], ["updated_at", "2023-02-17 19:25:03.999349"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.000662"], ["updated_at", "2023-02-17 19:25:04.000662"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.001685"], ["updated_at", "2023-02-17 19:25:04.001685"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.002633"], ["updated_at", "2023-02-17 19:25:04.002633"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.003630"], ["updated_at", "2023-02-17 19:25:04.003630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.004787"], ["updated_at", "2023-02-17 19:25:04.004787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.005835"], ["updated_at", "2023-02-17 19:25:04.005835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.006784"], ["updated_at", "2023-02-17 19:25:04.006784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.007584"], ["updated_at", "2023-02-17 19:25:04.007584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.008560"], ["updated_at", "2023-02-17 19:25:04.008560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.009387"], ["updated_at", "2023-02-17 19:25:04.009387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.010250"], ["updated_at", "2023-02-17 19:25:04.010250"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.011032"], ["updated_at", "2023-02-17 19:25:04.011032"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.011898"], ["updated_at", "2023-02-17 19:25:04.011898"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.012951"], ["updated_at", "2023-02-17 19:25:04.012951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.013792"], ["updated_at", "2023-02-17 19:25:04.013792"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.032126"], ["updated_at", "2023-02-17 19:25:04.032126"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.033400"], ["updated_at", "2023-02-17 19:25:04.033400"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.034269"], ["updated_at", "2023-02-17 19:25:04.034269"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.035027"], ["updated_at", "2023-02-17 19:25:04.035027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.035866"], ["updated_at", "2023-02-17 19:25:04.035866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.036834"], ["updated_at", "2023-02-17 19:25:04.036834"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.037881"], ["updated_at", "2023-02-17 19:25:04.037881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.038734"], ["updated_at", "2023-02-17 19:25:04.038734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.039586"], ["updated_at", "2023-02-17 19:25:04.039586"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.040627"], ["updated_at", "2023-02-17 19:25:04.040627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.041548"], ["updated_at", "2023-02-17 19:25:04.041548"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.042329"], ["updated_at", "2023-02-17 19:25:04.042329"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.043072"], ["updated_at", "2023-02-17 19:25:04.043072"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.043796"], ["updated_at", "2023-02-17 19:25:04.043796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.044743"], ["updated_at", "2023-02-17 19:25:04.044743"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.045659"], ["updated_at", "2023-02-17 19:25:04.045659"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.063220"], ["updated_at", "2023-02-17 19:25:04.063220"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.064227"], ["updated_at", "2023-02-17 19:25:04.064227"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.065400"], ["updated_at", "2023-02-17 19:25:04.065400"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.066341"], ["updated_at", "2023-02-17 19:25:04.066341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.067221"], ["updated_at", "2023-02-17 19:25:04.067221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.067988"], ["updated_at", "2023-02-17 19:25:04.067988"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.068800"], ["updated_at", "2023-02-17 19:25:04.068800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.069584"], ["updated_at", "2023-02-17 19:25:04.069584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.070457"], ["updated_at", "2023-02-17 19:25:04.070457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.071297"], ["updated_at", "2023-02-17 19:25:04.071297"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.072130"], ["updated_at", "2023-02-17 19:25:04.072130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.073162"], ["updated_at", "2023-02-17 19:25:04.073162"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.074003"], ["updated_at", "2023-02-17 19:25:04.074003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.074817"], ["updated_at", "2023-02-17 19:25:04.074817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.075549"], ["updated_at", "2023-02-17 19:25:04.075549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.076341"], ["updated_at", "2023-02-17 19:25:04.076341"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.094041"], ["updated_at", "2023-02-17 19:25:04.094041"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.095251"], ["updated_at", "2023-02-17 19:25:04.095251"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.096250"], ["updated_at", "2023-02-17 19:25:04.096250"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.097106"], ["updated_at", "2023-02-17 19:25:04.097106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.097951"], ["updated_at", "2023-02-17 19:25:04.097951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.098885"], ["updated_at", "2023-02-17 19:25:04.098885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.099823"], ["updated_at", "2023-02-17 19:25:04.099823"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.100806"], ["updated_at", "2023-02-17 19:25:04.100806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.101669"], ["updated_at", "2023-02-17 19:25:04.101669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.102630"], ["updated_at", "2023-02-17 19:25:04.102630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.103572"], ["updated_at", "2023-02-17 19:25:04.103572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.104376"], ["updated_at", "2023-02-17 19:25:04.104376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.105152"], ["updated_at", "2023-02-17 19:25:04.105152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.106017"], ["updated_at", "2023-02-17 19:25:04.106017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.106999"], ["updated_at", "2023-02-17 19:25:04.106999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.107832"], ["updated_at", "2023-02-17 19:25:04.107832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:25:04 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:04.117986"], ["updated_at", "2023-02-17 19:25:04.117986"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:04.119515"], ["updated_at", "2023-02-17 19:25:04.119515"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:04.123031"], ["updated_at", "2023-02-17 19:25:04.123031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:04.124483"], ["updated_at", "2023-02-17 19:25:04.124483"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:04.127565"], ["updated_at", "2023-02-17 19:25:04.127565"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:04.128880"], ["updated_at", "2023-02-17 19:25:04.128880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:04.131566"], ["updated_at", "2023-02-17 19:25:04.131566"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:04.133303"], ["updated_at", "2023-02-17 19:25:04.133303"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:04.135319"], ["updated_at", "2023-02-17 19:25:04.135319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:04.137009"], ["updated_at", "2023-02-17 19:25:04.137009"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:04.138802"], ["updated_at", "2023-02-17 19:25:04.138802"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:04.140522"], ["updated_at", "2023-02-17 19:25:04.140522"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:04.142727"], ["updated_at", "2023-02-17 19:25:04.142727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:04.144144"], ["updated_at", "2023-02-17 19:25:04.144144"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:04.145626"], ["updated_at", "2023-02-17 19:25:04.145626"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:04.147119"], ["updated_at", "2023-02-17 19:25:04.147119"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:04.148599"], ["updated_at", "2023-02-17 19:25:04.148599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:04.149978"], ["updated_at", "2023-02-17 19:25:04.149978"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:04.151739"], ["updated_at", "2023-02-17 19:25:04.151739"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:04.153012"], ["updated_at", "2023-02-17 19:25:04.153012"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:04.154910"], ["updated_at", "2023-02-17 19:25:04.154910"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:04.156290"], ["updated_at", "2023-02-17 19:25:04.156290"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:04.157982"], ["updated_at", "2023-02-17 19:25:04.157982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:04.159386"], ["updated_at", "2023-02-17 19:25:04.159386"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:04.161133"], ["updated_at", "2023-02-17 19:25:04.161133"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:04.162904"], ["updated_at", "2023-02-17 19:25:04.162904"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:04.164666"], ["updated_at", "2023-02-17 19:25:04.164666"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:04.166466"], ["updated_at", "2023-02-17 19:25:04.166466"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:04.168057"], ["updated_at", "2023-02-17 19:25:04.168057"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:04.169578"], ["updated_at", "2023-02-17 19:25:04.169578"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:04.171370"], ["updated_at", "2023-02-17 19:25:04.171370"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:04.172961"], ["updated_at", "2023-02-17 19:25:04.172961"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:04.174434"], ["updated_at", "2023-02-17 19:25:04.174434"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:04.175700"], ["updated_at", "2023-02-17 19:25:04.175700"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:04.177342"], ["updated_at", "2023-02-17 19:25:04.177342"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:04.178634"], ["updated_at", "2023-02-17 19:25:04.178634"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:04.180208"], ["updated_at", "2023-02-17 19:25:04.180208"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:04.181788"], ["updated_at", "2023-02-17 19:25:04.181788"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:04.183577"], ["updated_at", "2023-02-17 19:25:04.183577"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:04.184876"], ["updated_at", "2023-02-17 19:25:04.184876"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:04.186502"], ["updated_at", "2023-02-17 19:25:04.186502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:04.187841"], ["updated_at", "2023-02-17 19:25:04.187841"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:04.189324"], ["updated_at", "2023-02-17 19:25:04.189324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:04.190756"], ["updated_at", "2023-02-17 19:25:04.190756"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:04.192581"], ["updated_at", "2023-02-17 19:25:04.192581"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:04.199708"], ["updated_at", "2023-02-17 19:25:04.199708"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:04.201447"], ["updated_at", "2023-02-17 19:25:04.201447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:04.202747"], ["updated_at", "2023-02-17 19:25:04.202747"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:04.204165"], ["updated_at", "2023-02-17 19:25:04.204165"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:04.205587"], ["updated_at", "2023-02-17 19:25:04.205587"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:04.207020"], ["updated_at", "2023-02-17 19:25:04.207020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:04.208332"], ["updated_at", "2023-02-17 19:25:04.208332"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:04.210025"], ["updated_at", "2023-02-17 19:25:04.210025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:04.211246"], ["updated_at", "2023-02-17 19:25:04.211246"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:04.212841"], ["updated_at", "2023-02-17 19:25:04.212841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:04.214203"], ["updated_at", "2023-02-17 19:25:04.214203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:04.215732"], ["updated_at", "2023-02-17 19:25:04.215732"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:04.217490"], ["updated_at", "2023-02-17 19:25:04.217490"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:04.219120"], ["updated_at", "2023-02-17 19:25:04.219120"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:04.220594"], ["updated_at", "2023-02-17 19:25:04.220594"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:04.222570"], ["updated_at", "2023-02-17 19:25:04.222570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:04.224000"], ["updated_at", "2023-02-17 19:25:04.224000"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:04.225639"], ["updated_at", "2023-02-17 19:25:04.225639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:04.226945"], ["updated_at", "2023-02-17 19:25:04.226945"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:04.228701"], ["updated_at", "2023-02-17 19:25:04.228701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:04.230224"], ["updated_at", "2023-02-17 19:25:04.230224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:04.231627"], ["updated_at", "2023-02-17 19:25:04.231627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:04.232867"], ["updated_at", "2023-02-17 19:25:04.232867"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:04.234425"], ["updated_at", "2023-02-17 19:25:04.234425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:04.235596"], ["updated_at", "2023-02-17 19:25:04.235596"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:04.237085"], ["updated_at", "2023-02-17 19:25:04.237085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:04.238737"], ["updated_at", "2023-02-17 19:25:04.238737"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:04.240204"], ["updated_at", "2023-02-17 19:25:04.240204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:04.241526"], ["updated_at", "2023-02-17 19:25:04.241526"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:04.242913"], ["updated_at", "2023-02-17 19:25:04.242913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:04.244074"], ["updated_at", "2023-02-17 19:25:04.244074"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:04.245682"], ["updated_at", "2023-02-17 19:25:04.245682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:04.246936"], ["updated_at", "2023-02-17 19:25:04.246936"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:04.248623"], ["updated_at", "2023-02-17 19:25:04.248623"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:04.249975"], ["updated_at", "2023-02-17 19:25:04.249975"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:04.251451"], ["updated_at", "2023-02-17 19:25:04.251451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:04.252936"], ["updated_at", "2023-02-17 19:25:04.252936"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:04.254346"], ["updated_at", "2023-02-17 19:25:04.254346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:04.255517"], ["updated_at", "2023-02-17 19:25:04.255517"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:04.257047"], ["updated_at", "2023-02-17 19:25:04.257047"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:04.258558"], ["updated_at", "2023-02-17 19:25:04.258558"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:04.260291"], ["updated_at", "2023-02-17 19:25:04.260291"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:04.261596"], ["updated_at", "2023-02-17 19:25:04.261596"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:04.263066"], ["updated_at", "2023-02-17 19:25:04.263066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:04.264555"], ["updated_at", "2023-02-17 19:25:04.264555"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:04.266012"], ["updated_at", "2023-02-17 19:25:04.266012"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:04.267490"], ["updated_at", "2023-02-17 19:25:04.267490"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:04.269301"], ["updated_at", "2023-02-17 19:25:04.269301"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:04.270659"], ["updated_at", "2023-02-17 19:25:04.270659"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:04.272468"], ["updated_at", "2023-02-17 19:25:04.272468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:04.273698"], ["updated_at", "2023-02-17 19:25:04.273698"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:04.275117"], ["updated_at", "2023-02-17 19:25:04.275117"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:04.276551"], ["updated_at", "2023-02-17 19:25:04.276551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:04.278132"], ["updated_at", "2023-02-17 19:25:04.278132"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:04.279541"], ["updated_at", "2023-02-17 19:25:04.279541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:04.280546"], ["updated_at", "2023-02-17 19:25:04.280546"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:04.293257"], ["updated_at", "2023-02-17 19:25:04.293257"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:04.294618"], ["updated_at", "2023-02-17 19:25:04.294618"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:04.295688"], ["updated_at", "2023-02-17 19:25:04.295688"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.296564"], ["updated_at", "2023-02-17 19:25:04.296564"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.297346"], ["updated_at", "2023-02-17 19:25:04.297346"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.298222"], ["updated_at", "2023-02-17 19:25:04.298222"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.299398"], ["updated_at", "2023-02-17 19:25:04.299398"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.300241"], ["updated_at", "2023-02-17 19:25:04.300241"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:04.301015"], ["updated_at", "2023-02-17 19:25:04.301015"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.301889"], ["updated_at", "2023-02-17 19:25:04.301889"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.302708"], ["updated_at", "2023-02-17 19:25:04.302708"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.303711"], ["updated_at", "2023-02-17 19:25:04.303711"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.304502"], ["updated_at", "2023-02-17 19:25:04.304502"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.305272"], ["updated_at", "2023-02-17 19:25:04.305272"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.306058"], ["updated_at", "2023-02-17 19:25:04.306058"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.306908"], ["updated_at", "2023-02-17 19:25:04.306908"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.308027"], ["updated_at", "2023-02-17 19:25:04.308027"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.309201"], ["updated_at", "2023-02-17 19:25:04.309201"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.310453"], ["updated_at", "2023-02-17 19:25:04.310453"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.311518"], ["updated_at", "2023-02-17 19:25:04.311518"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.312440"], ["updated_at", "2023-02-17 19:25:04.312440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:04.324950"], ["updated_at", "2023-02-17 19:25:04.324950"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:04.326304"], ["updated_at", "2023-02-17 19:25:04.326304"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:04.327241"], ["updated_at", "2023-02-17 19:25:04.327241"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:04.328185"], ["updated_at", "2023-02-17 19:25:04.328185"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:04.329421"], ["updated_at", "2023-02-17 19:25:04.329421"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:04.330309"], ["updated_at", "2023-02-17 19:25:04.330309"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:04.331035"], ["updated_at", "2023-02-17 19:25:04.331035"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:04.331707"], ["updated_at", "2023-02-17 19:25:04.331707"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:04.332442"], ["updated_at", "2023-02-17 19:25:04.332442"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.333404"], ["updated_at", "2023-02-17 19:25:04.333404"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.334260"], ["updated_at", "2023-02-17 19:25:04.334260"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.335024"], ["updated_at", "2023-02-17 19:25:04.335024"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.335760"], ["updated_at", "2023-02-17 19:25:04.335760"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.336496"], ["updated_at", "2023-02-17 19:25:04.336496"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.337472"], ["updated_at", "2023-02-17 19:25:04.337472"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.338392"], ["updated_at", "2023-02-17 19:25:04.338392"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.339231"], ["updated_at", "2023-02-17 19:25:04.339231"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.340004"], ["updated_at", "2023-02-17 19:25:04.340004"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.340857"], ["updated_at", "2023-02-17 19:25:04.340857"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.341629"], ["updated_at", "2023-02-17 19:25:04.341629"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.342367"], ["updated_at", "2023-02-17 19:25:04.342367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.359731"], ["updated_at", "2023-02-17 19:25:04.359731"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.360896"], ["updated_at", "2023-02-17 19:25:04.360896"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.361759"], ["updated_at", "2023-02-17 19:25:04.361759"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.362456"], ["updated_at", "2023-02-17 19:25:04.362456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.363320"], ["updated_at", "2023-02-17 19:25:04.363320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.364153"], ["updated_at", "2023-02-17 19:25:04.364153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.364862"], ["updated_at", "2023-02-17 19:25:04.364862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.365591"], ["updated_at", "2023-02-17 19:25:04.365591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.366297"], ["updated_at", "2023-02-17 19:25:04.366297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.366975"], ["updated_at", "2023-02-17 19:25:04.366975"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.367846"], ["updated_at", "2023-02-17 19:25:04.367846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.368671"], ["updated_at", "2023-02-17 19:25:04.368671"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.369503"], ["updated_at", "2023-02-17 19:25:04.369503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.370255"], ["updated_at", "2023-02-17 19:25:04.370255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.371054"], ["updated_at", "2023-02-17 19:25:04.371054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.371775"], ["updated_at", "2023-02-17 19:25:04.371775"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.390154"], ["updated_at", "2023-02-17 19:25:04.390154"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.391160"], ["updated_at", "2023-02-17 19:25:04.391160"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.392056"], ["updated_at", "2023-02-17 19:25:04.392056"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.392787"], ["updated_at", "2023-02-17 19:25:04.392787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.393545"], ["updated_at", "2023-02-17 19:25:04.393545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.394270"], ["updated_at", "2023-02-17 19:25:04.394270"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.394976"], ["updated_at", "2023-02-17 19:25:04.394976"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.395805"], ["updated_at", "2023-02-17 19:25:04.395805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.396537"], ["updated_at", "2023-02-17 19:25:04.396537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.397289"], ["updated_at", "2023-02-17 19:25:04.397289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.397993"], ["updated_at", "2023-02-17 19:25:04.397993"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.398821"], ["updated_at", "2023-02-17 19:25:04.398821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.399737"], ["updated_at", "2023-02-17 19:25:04.399737"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.400474"], ["updated_at", "2023-02-17 19:25:04.400474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.401180"], ["updated_at", "2023-02-17 19:25:04.401180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.401901"], ["updated_at", "2023-02-17 19:25:04.401901"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.418659"], ["updated_at", "2023-02-17 19:25:04.418659"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.419900"], ["updated_at", "2023-02-17 19:25:04.419900"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.420714"], ["updated_at", "2023-02-17 19:25:04.420714"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.421524"], ["updated_at", "2023-02-17 19:25:04.421524"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.422508"], ["updated_at", "2023-02-17 19:25:04.422508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.423283"], ["updated_at", "2023-02-17 19:25:04.423283"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.424087"], ["updated_at", "2023-02-17 19:25:04.424087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.424815"], ["updated_at", "2023-02-17 19:25:04.424815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.425543"], ["updated_at", "2023-02-17 19:25:04.425543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.426394"], ["updated_at", "2023-02-17 19:25:04.426394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.427115"], ["updated_at", "2023-02-17 19:25:04.427115"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.427813"], ["updated_at", "2023-02-17 19:25:04.427813"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.428528"], ["updated_at", "2023-02-17 19:25:04.428528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.429492"], ["updated_at", "2023-02-17 19:25:04.429492"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.430303"], ["updated_at", "2023-02-17 19:25:04.430303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.431007"], ["updated_at", "2023-02-17 19:25:04.431007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.447902"], ["updated_at", "2023-02-17 19:25:04.447902"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.449284"], ["updated_at", "2023-02-17 19:25:04.449284"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.450321"], ["updated_at", "2023-02-17 19:25:04.450321"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.451113"], ["updated_at", "2023-02-17 19:25:04.451113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.451911"], ["updated_at", "2023-02-17 19:25:04.451911"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.452794"], ["updated_at", "2023-02-17 19:25:04.452794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.453559"], ["updated_at", "2023-02-17 19:25:04.453559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.454295"], ["updated_at", "2023-02-17 19:25:04.454295"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.455052"], ["updated_at", "2023-02-17 19:25:04.455052"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.455755"], ["updated_at", "2023-02-17 19:25:04.455755"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.456751"], ["updated_at", "2023-02-17 19:25:04.456751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.457501"], ["updated_at", "2023-02-17 19:25:04.457501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.458208"], ["updated_at", "2023-02-17 19:25:04.458208"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.459063"], ["updated_at", "2023-02-17 19:25:04.459063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.460026"], ["updated_at", "2023-02-17 19:25:04.460026"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.460768"], ["updated_at", "2023-02-17 19:25:04.460768"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.478632"], ["updated_at", "2023-02-17 19:25:04.478632"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.479885"], ["updated_at", "2023-02-17 19:25:04.479885"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.480753"], ["updated_at", "2023-02-17 19:25:04.480753"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.481655"], ["updated_at", "2023-02-17 19:25:04.481655"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.482519"], ["updated_at", "2023-02-17 19:25:04.482519"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.483258"], ["updated_at", "2023-02-17 19:25:04.483258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.483979"], ["updated_at", "2023-02-17 19:25:04.483979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.484699"], ["updated_at", "2023-02-17 19:25:04.484699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.485594"], ["updated_at", "2023-02-17 19:25:04.485594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.486674"], ["updated_at", "2023-02-17 19:25:04.486674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.487743"], ["updated_at", "2023-02-17 19:25:04.487743"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.488559"], ["updated_at", "2023-02-17 19:25:04.488559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.489498"], ["updated_at", "2023-02-17 19:25:04.489498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.490397"], ["updated_at", "2023-02-17 19:25:04.490397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.491287"], ["updated_at", "2023-02-17 19:25:04.491287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.492028"], ["updated_at", "2023-02-17 19:25:04.492028"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.509739"], ["updated_at", "2023-02-17 19:25:04.509739"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.510958"], ["updated_at", "2023-02-17 19:25:04.510958"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.511817"], ["updated_at", "2023-02-17 19:25:04.511817"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.512571"], ["updated_at", "2023-02-17 19:25:04.512571"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.513459"], ["updated_at", "2023-02-17 19:25:04.513459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.514299"], ["updated_at", "2023-02-17 19:25:04.514299"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.515056"], ["updated_at", "2023-02-17 19:25:04.515056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.515790"], ["updated_at", "2023-02-17 19:25:04.515790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.516558"], ["updated_at", "2023-02-17 19:25:04.516558"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.517454"], ["updated_at", "2023-02-17 19:25:04.517454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.518267"], ["updated_at", "2023-02-17 19:25:04.518267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.519106"], ["updated_at", "2023-02-17 19:25:04.519106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.519990"], ["updated_at", "2023-02-17 19:25:04.519990"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.520764"], ["updated_at", "2023-02-17 19:25:04.520764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.521665"], ["updated_at", "2023-02-17 19:25:04.521665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.522443"], ["updated_at", "2023-02-17 19:25:04.522443"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:25:04 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:04.532853"], ["updated_at", "2023-02-17 19:25:04.532853"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:04.534388"], ["updated_at", "2023-02-17 19:25:04.534388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:04.537784"], ["updated_at", "2023-02-17 19:25:04.537784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:04.539068"], ["updated_at", "2023-02-17 19:25:04.539068"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:04.542422"], ["updated_at", "2023-02-17 19:25:04.542422"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:04.543716"], ["updated_at", "2023-02-17 19:25:04.543716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:04.545952"], ["updated_at", "2023-02-17 19:25:04.545952"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:04.547547"], ["updated_at", "2023-02-17 19:25:04.547547"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:04.549264"], ["updated_at", "2023-02-17 19:25:04.549264"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:04.550808"], ["updated_at", "2023-02-17 19:25:04.550808"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:04.552462"], ["updated_at", "2023-02-17 19:25:04.552462"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:04.553762"], ["updated_at", "2023-02-17 19:25:04.553762"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:04.555317"], ["updated_at", "2023-02-17 19:25:04.555317"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:04.556665"], ["updated_at", "2023-02-17 19:25:04.556665"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:04.558221"], ["updated_at", "2023-02-17 19:25:04.558221"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:04.559882"], ["updated_at", "2023-02-17 19:25:04.559882"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:04.561559"], ["updated_at", "2023-02-17 19:25:04.561559"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:04.562941"], ["updated_at", "2023-02-17 19:25:04.562941"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:04.564405"], ["updated_at", "2023-02-17 19:25:04.564405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:04.565688"], ["updated_at", "2023-02-17 19:25:04.565688"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:04.567320"], ["updated_at", "2023-02-17 19:25:04.567320"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:04.568822"], ["updated_at", "2023-02-17 19:25:04.568822"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:04.570704"], ["updated_at", "2023-02-17 19:25:04.570704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:04.572039"], ["updated_at", "2023-02-17 19:25:04.572039"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:04.573539"], ["updated_at", "2023-02-17 19:25:04.573539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:04.575100"], ["updated_at", "2023-02-17 19:25:04.575100"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:04.576694"], ["updated_at", "2023-02-17 19:25:04.576694"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:04.578104"], ["updated_at", "2023-02-17 19:25:04.578104"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:04.579724"], ["updated_at", "2023-02-17 19:25:04.579724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:04.580988"], ["updated_at", "2023-02-17 19:25:04.580988"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:04.582631"], ["updated_at", "2023-02-17 19:25:04.582631"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:04.583882"], ["updated_at", "2023-02-17 19:25:04.583882"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:04.585390"], ["updated_at", "2023-02-17 19:25:04.585390"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:04.586691"], ["updated_at", "2023-02-17 19:25:04.586691"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:04.588598"], ["updated_at", "2023-02-17 19:25:04.588598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:04.590464"], ["updated_at", "2023-02-17 19:25:04.590464"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:04.592171"], ["updated_at", "2023-02-17 19:25:04.592171"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:04.593441"], ["updated_at", "2023-02-17 19:25:04.593441"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:04.594883"], ["updated_at", "2023-02-17 19:25:04.594883"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:04.596263"], ["updated_at", "2023-02-17 19:25:04.596263"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:04.597725"], ["updated_at", "2023-02-17 19:25:04.597725"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:04.599502"], ["updated_at", "2023-02-17 19:25:04.599502"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:04.601129"], ["updated_at", "2023-02-17 19:25:04.601129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:04.602405"], ["updated_at", "2023-02-17 19:25:04.602405"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:04.603972"], ["updated_at", "2023-02-17 19:25:04.603972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:04.605223"], ["updated_at", "2023-02-17 19:25:04.605223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:04.606838"], ["updated_at", "2023-02-17 19:25:04.606838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:04.608207"], ["updated_at", "2023-02-17 19:25:04.608207"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:04.609886"], ["updated_at", "2023-02-17 19:25:04.609886"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:04.611311"], ["updated_at", "2023-02-17 19:25:04.611311"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:04.612746"], ["updated_at", "2023-02-17 19:25:04.612746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:04.614091"], ["updated_at", "2023-02-17 19:25:04.614091"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:04.615641"], ["updated_at", "2023-02-17 19:25:04.615641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:04.616895"], ["updated_at", "2023-02-17 19:25:04.616895"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:04.618585"], ["updated_at", "2023-02-17 19:25:04.618585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:04.620163"], ["updated_at", "2023-02-17 19:25:04.620163"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:04.621815"], ["updated_at", "2023-02-17 19:25:04.621815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:04.623177"], ["updated_at", "2023-02-17 19:25:04.623177"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:04.624641"], ["updated_at", "2023-02-17 19:25:04.624641"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:04.626171"], ["updated_at", "2023-02-17 19:25:04.626171"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:04.627712"], ["updated_at", "2023-02-17 19:25:04.627712"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:04.629429"], ["updated_at", "2023-02-17 19:25:04.629429"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:04.631114"], ["updated_at", "2023-02-17 19:25:04.631114"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:04.632416"], ["updated_at", "2023-02-17 19:25:04.632416"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:04.634036"], ["updated_at", "2023-02-17 19:25:04.634036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:04.635313"], ["updated_at", "2023-02-17 19:25:04.635313"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:04.636899"], ["updated_at", "2023-02-17 19:25:04.636899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:04.638294"], ["updated_at", "2023-02-17 19:25:04.638294"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:04.639953"], ["updated_at", "2023-02-17 19:25:04.639953"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:04.641430"], ["updated_at", "2023-02-17 19:25:04.641430"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:04.642911"], ["updated_at", "2023-02-17 19:25:04.642911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:04.644229"], ["updated_at", "2023-02-17 19:25:04.644229"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:04.645779"], ["updated_at", "2023-02-17 19:25:04.645779"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:04.647027"], ["updated_at", "2023-02-17 19:25:04.647027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:04.648645"], ["updated_at", "2023-02-17 19:25:04.648645"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:04.650269"], ["updated_at", "2023-02-17 19:25:04.650269"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:04.651870"], ["updated_at", "2023-02-17 19:25:04.651870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:04.653260"], ["updated_at", "2023-02-17 19:25:04.653260"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:04.654852"], ["updated_at", "2023-02-17 19:25:04.654852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:04.656380"], ["updated_at", "2023-02-17 19:25:04.656380"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:04.658074"], ["updated_at", "2023-02-17 19:25:04.658074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:04.659595"], ["updated_at", "2023-02-17 19:25:04.659595"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:04.661248"], ["updated_at", "2023-02-17 19:25:04.661248"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:04.662630"], ["updated_at", "2023-02-17 19:25:04.662630"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:04.664401"], ["updated_at", "2023-02-17 19:25:04.664401"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:04.665834"], ["updated_at", "2023-02-17 19:25:04.665834"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:04.667618"], ["updated_at", "2023-02-17 19:25:04.667618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:04.669172"], ["updated_at", "2023-02-17 19:25:04.669172"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:04.670980"], ["updated_at", "2023-02-17 19:25:04.670980"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:04.672435"], ["updated_at", "2023-02-17 19:25:04.672435"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:04.674086"], ["updated_at", "2023-02-17 19:25:04.674086"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:04.675928"], ["updated_at", "2023-02-17 19:25:04.675928"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:04.678044"], ["updated_at", "2023-02-17 19:25:04.678044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:04.679623"], ["updated_at", "2023-02-17 19:25:04.679623"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:04.681740"], ["updated_at", "2023-02-17 19:25:04.681740"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:04.683186"], ["updated_at", "2023-02-17 19:25:04.683186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:04.684786"], ["updated_at", "2023-02-17 19:25:04.684786"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:04.686437"], ["updated_at", "2023-02-17 19:25:04.686437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:04.688205"], ["updated_at", "2023-02-17 19:25:04.688205"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:04.689815"], ["updated_at", "2023-02-17 19:25:04.689815"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:04.691191"], ["updated_at", "2023-02-17 19:25:04.691191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:04.703703"], ["updated_at", "2023-02-17 19:25:04.703703"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:04.705103"], ["updated_at", "2023-02-17 19:25:04.705103"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:04.706204"], ["updated_at", "2023-02-17 19:25:04.706204"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.707245"], ["updated_at", "2023-02-17 19:25:04.707245"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.708204"], ["updated_at", "2023-02-17 19:25:04.708204"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.709270"], ["updated_at", "2023-02-17 19:25:04.709270"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.710163"], ["updated_at", "2023-02-17 19:25:04.710163"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.710990"], ["updated_at", "2023-02-17 19:25:04.710990"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:04.711872"], ["updated_at", "2023-02-17 19:25:04.711872"]]
LikertScaleQuestion Create (0.9ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.713299"], ["updated_at", "2023-02-17 19:25:04.713299"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.715245"], ["updated_at", "2023-02-17 19:25:04.715245"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.716555"], ["updated_at", "2023-02-17 19:25:04.716555"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.717873"], ["updated_at", "2023-02-17 19:25:04.717873"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.719000"], ["updated_at", "2023-02-17 19:25:04.719000"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.720195"], ["updated_at", "2023-02-17 19:25:04.720195"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.721323"], ["updated_at", "2023-02-17 19:25:04.721323"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.722411"], ["updated_at", "2023-02-17 19:25:04.722411"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.723521"], ["updated_at", "2023-02-17 19:25:04.723521"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.724763"], ["updated_at", "2023-02-17 19:25:04.724763"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.725857"], ["updated_at", "2023-02-17 19:25:04.725857"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.726929"], ["updated_at", "2023-02-17 19:25:04.726929"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:04.741059"], ["updated_at", "2023-02-17 19:25:04.741059"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:04.742623"], ["updated_at", "2023-02-17 19:25:04.742623"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:04.743756"], ["updated_at", "2023-02-17 19:25:04.743756"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:04.744776"], ["updated_at", "2023-02-17 19:25:04.744776"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:04.745681"], ["updated_at", "2023-02-17 19:25:04.745681"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:04.746675"], ["updated_at", "2023-02-17 19:25:04.746675"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:04.747587"], ["updated_at", "2023-02-17 19:25:04.747587"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:04.748436"], ["updated_at", "2023-02-17 19:25:04.748436"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:04.749444"], ["updated_at", "2023-02-17 19:25:04.749444"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.750618"], ["updated_at", "2023-02-17 19:25:04.750618"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.751651"], ["updated_at", "2023-02-17 19:25:04.751651"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.752587"], ["updated_at", "2023-02-17 19:25:04.752587"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.753405"], ["updated_at", "2023-02-17 19:25:04.753405"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.754365"], ["updated_at", "2023-02-17 19:25:04.754365"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.755197"], ["updated_at", "2023-02-17 19:25:04.755197"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.756010"], ["updated_at", "2023-02-17 19:25:04.756010"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.756819"], ["updated_at", "2023-02-17 19:25:04.756819"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.757721"], ["updated_at", "2023-02-17 19:25:04.757721"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.758547"], ["updated_at", "2023-02-17 19:25:04.758547"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.759403"], ["updated_at", "2023-02-17 19:25:04.759403"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:04.760222"], ["updated_at", "2023-02-17 19:25:04.760222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.777580"], ["updated_at", "2023-02-17 19:25:04.777580"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.778776"], ["updated_at", "2023-02-17 19:25:04.778776"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.779670"], ["updated_at", "2023-02-17 19:25:04.779670"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.780558"], ["updated_at", "2023-02-17 19:25:04.780558"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.781409"], ["updated_at", "2023-02-17 19:25:04.781409"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.782278"], ["updated_at", "2023-02-17 19:25:04.782278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.783053"], ["updated_at", "2023-02-17 19:25:04.783053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.783771"], ["updated_at", "2023-02-17 19:25:04.783771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.784691"], ["updated_at", "2023-02-17 19:25:04.784691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.785474"], ["updated_at", "2023-02-17 19:25:04.785474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.786201"], ["updated_at", "2023-02-17 19:25:04.786201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.786921"], ["updated_at", "2023-02-17 19:25:04.786921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.787639"], ["updated_at", "2023-02-17 19:25:04.787639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.788478"], ["updated_at", "2023-02-17 19:25:04.788478"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.789289"], ["updated_at", "2023-02-17 19:25:04.789289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:04.790057"], ["updated_at", "2023-02-17 19:25:04.790057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.808859"], ["updated_at", "2023-02-17 19:25:04.808859"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.809987"], ["updated_at", "2023-02-17 19:25:04.809987"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.811065"], ["updated_at", "2023-02-17 19:25:04.811065"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.811932"], ["updated_at", "2023-02-17 19:25:04.811932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.812824"], ["updated_at", "2023-02-17 19:25:04.812824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.813712"], ["updated_at", "2023-02-17 19:25:04.813712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.814776"], ["updated_at", "2023-02-17 19:25:04.814776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.815639"], ["updated_at", "2023-02-17 19:25:04.815639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.816488"], ["updated_at", "2023-02-17 19:25:04.816488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.817329"], ["updated_at", "2023-02-17 19:25:04.817329"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.818344"], ["updated_at", "2023-02-17 19:25:04.818344"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.819228"], ["updated_at", "2023-02-17 19:25:04.819228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.820070"], ["updated_at", "2023-02-17 19:25:04.820070"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.820936"], ["updated_at", "2023-02-17 19:25:04.820936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.821977"], ["updated_at", "2023-02-17 19:25:04.821977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:04.822919"], ["updated_at", "2023-02-17 19:25:04.822919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.843981"], ["updated_at", "2023-02-17 19:25:04.843981"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.845108"], ["updated_at", "2023-02-17 19:25:04.845108"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.846006"], ["updated_at", "2023-02-17 19:25:04.846006"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.846958"], ["updated_at", "2023-02-17 19:25:04.846958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.848027"], ["updated_at", "2023-02-17 19:25:04.848027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.849107"], ["updated_at", "2023-02-17 19:25:04.849107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.850036"], ["updated_at", "2023-02-17 19:25:04.850036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.850874"], ["updated_at", "2023-02-17 19:25:04.850874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.851658"], ["updated_at", "2023-02-17 19:25:04.851658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.852549"], ["updated_at", "2023-02-17 19:25:04.852549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.853400"], ["updated_at", "2023-02-17 19:25:04.853400"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.854255"], ["updated_at", "2023-02-17 19:25:04.854255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.855461"], ["updated_at", "2023-02-17 19:25:04.855461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.856590"], ["updated_at", "2023-02-17 19:25:04.856590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.857625"], ["updated_at", "2023-02-17 19:25:04.857625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:04.858812"], ["updated_at", "2023-02-17 19:25:04.858812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.879259"], ["updated_at", "2023-02-17 19:25:04.879259"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.880401"], ["updated_at", "2023-02-17 19:25:04.880401"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.881404"], ["updated_at", "2023-02-17 19:25:04.881404"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.882392"], ["updated_at", "2023-02-17 19:25:04.882392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.883850"], ["updated_at", "2023-02-17 19:25:04.883850"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.884959"], ["updated_at", "2023-02-17 19:25:04.884959"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.886112"], ["updated_at", "2023-02-17 19:25:04.886112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.887203"], ["updated_at", "2023-02-17 19:25:04.887203"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.888395"], ["updated_at", "2023-02-17 19:25:04.888395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.889494"], ["updated_at", "2023-02-17 19:25:04.889494"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.890777"], ["updated_at", "2023-02-17 19:25:04.890777"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.892019"], ["updated_at", "2023-02-17 19:25:04.892019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.893298"], ["updated_at", "2023-02-17 19:25:04.893298"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.894376"], ["updated_at", "2023-02-17 19:25:04.894376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.895236"], ["updated_at", "2023-02-17 19:25:04.895236"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:04.896022"], ["updated_at", "2023-02-17 19:25:04.896022"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.915261"], ["updated_at", "2023-02-17 19:25:04.915261"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.916295"], ["updated_at", "2023-02-17 19:25:04.916295"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.917152"], ["updated_at", "2023-02-17 19:25:04.917152"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.917979"], ["updated_at", "2023-02-17 19:25:04.917979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.919320"], ["updated_at", "2023-02-17 19:25:04.919320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.920351"], ["updated_at", "2023-02-17 19:25:04.920351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.921263"], ["updated_at", "2023-02-17 19:25:04.921263"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.922148"], ["updated_at", "2023-02-17 19:25:04.922148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.923011"], ["updated_at", "2023-02-17 19:25:04.923011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.923817"], ["updated_at", "2023-02-17 19:25:04.923817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.924536"], ["updated_at", "2023-02-17 19:25:04.924536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.925301"], ["updated_at", "2023-02-17 19:25:04.925301"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.926129"], ["updated_at", "2023-02-17 19:25:04.926129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.927096"], ["updated_at", "2023-02-17 19:25:04.927096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.927893"], ["updated_at", "2023-02-17 19:25:04.927893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:04.928957"], ["updated_at", "2023-02-17 19:25:04.928957"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:04.946762"], ["updated_at", "2023-02-17 19:25:04.946762"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:04.947811"], ["updated_at", "2023-02-17 19:25:04.947811"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:04.948847"], ["updated_at", "2023-02-17 19:25:04.948847"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:04.950075"], ["updated_at", "2023-02-17 19:25:04.950075"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.951069"], ["updated_at", "2023-02-17 19:25:04.951069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.951908"], ["updated_at", "2023-02-17 19:25:04.951908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.952668"], ["updated_at", "2023-02-17 19:25:04.952668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.953476"], ["updated_at", "2023-02-17 19:25:04.953476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.954271"], ["updated_at", "2023-02-17 19:25:04.954271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.955052"], ["updated_at", "2023-02-17 19:25:04.955052"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.955908"], ["updated_at", "2023-02-17 19:25:04.955908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.956781"], ["updated_at", "2023-02-17 19:25:04.956781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.957578"], ["updated_at", "2023-02-17 19:25:04.957578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.958370"], ["updated_at", "2023-02-17 19:25:04.958370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.959471"], ["updated_at", "2023-02-17 19:25:04.959471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:04.960440"], ["updated_at", "2023-02-17 19:25:04.960440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:25:04 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:25:04 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:25:04 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:25:11.210289"], ["updated_at", "2023-02-17 19:25:11.210289"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 26ms (Views: 11.2ms | ActiveRecord: 1.2ms | Allocations: 17440)

TRANSACTION (0.2ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.4ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.2ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms | Allocations: 2382)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:56.807400"], ["updated_at", "2023-02-17 19:25:56.807400"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:56.825407"], ["updated_at", "2023-02-17 19:25:56.825407"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:25:56.831519"], ["updated_at", "2023-02-17 19:25:56.831519"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:56.844700"], ["updated_at", "2023-02-17 19:25:56.844700"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:56.854812"], ["updated_at", "2023-02-17 19:25:56.854812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:25:56.858464"], ["updated_at", "2023-02-17 19:25:56.858464"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:56.861021"], ["updated_at", "2023-02-17 19:25:56.861021"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 5.7ms | Allocations: 28612)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
 (1.0ms)  SELECT sqlite_version(*)

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:25:56.880577"], ["updated_at", "2023-02-17 19:25:56.880577"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 13ms (Views: 7.8ms | ActiveRecord: 0.9ms | Allocations: 4605)

TRANSACTION (0.2ms)  rollback transaction
ActiveRecord::InternalMetadata Pluck (1.1ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
 (0.1ms)  SELECT sqlite_version(*)

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000561ef12abac8>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms | Allocations: 658)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:56.942585"], ["updated_at", "2023-02-17 19:25:56.942585"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:56.944602"], ["updated_at", "2023-02-17 19:25:56.944602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:56.948669"], ["updated_at", "2023-02-17 19:25:56.948669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:56.949979"], ["updated_at", "2023-02-17 19:25:56.949979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.9ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:56.955595"], ["updated_at", "2023-02-17 19:25:56.955595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:56.957300"], ["updated_at", "2023-02-17 19:25:56.957300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:56.961076"], ["updated_at", "2023-02-17 19:25:56.961076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:56.963097"], ["updated_at", "2023-02-17 19:25:56.963097"], ["role_id", 34]]
TRANSACTION (0.3ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:56.965241"], ["updated_at", "2023-02-17 19:25:56.965241"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:56.967166"], ["updated_at", "2023-02-17 19:25:56.967166"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:56.969610"], ["updated_at", "2023-02-17 19:25:56.969610"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:56.971883"], ["updated_at", "2023-02-17 19:25:56.971883"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:56.974724"], ["updated_at", "2023-02-17 19:25:56.974724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:56.976750"], ["updated_at", "2023-02-17 19:25:56.976750"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:56.978351"], ["updated_at", "2023-02-17 19:25:56.978351"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:56.980315"], ["updated_at", "2023-02-17 19:25:56.980315"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:56.982289"], ["updated_at", "2023-02-17 19:25:56.982289"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:56.985089"], ["updated_at", "2023-02-17 19:25:56.985089"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:56.987728"], ["updated_at", "2023-02-17 19:25:56.987728"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:56.990348"], ["updated_at", "2023-02-17 19:25:56.990348"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:56.993059"], ["updated_at", "2023-02-17 19:25:56.993059"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.9ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:56.995057"], ["updated_at", "2023-02-17 19:25:56.995057"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:56.999065"], ["updated_at", "2023-02-17 19:25:56.999065"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:57.002758"], ["updated_at", "2023-02-17 19:25:57.002758"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:57.006016"], ["updated_at", "2023-02-17 19:25:57.006016"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:57.009595"], ["updated_at", "2023-02-17 19:25:57.009595"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.6ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:57.015657"], ["updated_at", "2023-02-17 19:25:57.015657"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:57.019572"], ["updated_at", "2023-02-17 19:25:57.019572"], ["role_id", 34]]
TRANSACTION (0.3ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:57.024058"], ["updated_at", "2023-02-17 19:25:57.024058"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:57.027895"], ["updated_at", "2023-02-17 19:25:57.027895"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:57.032539"], ["updated_at", "2023-02-17 19:25:57.032539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:57.034622"], ["updated_at", "2023-02-17 19:25:57.034622"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:57.037236"], ["updated_at", "2023-02-17 19:25:57.037236"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:57.038991"], ["updated_at", "2023-02-17 19:25:57.038991"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:57.040862"], ["updated_at", "2023-02-17 19:25:57.040862"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.4ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:57.042567"], ["updated_at", "2023-02-17 19:25:57.042567"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:57.044599"], ["updated_at", "2023-02-17 19:25:57.044599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:57.045856"], ["updated_at", "2023-02-17 19:25:57.045856"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:57.048211"], ["updated_at", "2023-02-17 19:25:57.048211"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:57.049904"], ["updated_at", "2023-02-17 19:25:57.049904"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:57.051806"], ["updated_at", "2023-02-17 19:25:57.051806"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:57.055105"], ["updated_at", "2023-02-17 19:25:57.055105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:57.057867"], ["updated_at", "2023-02-17 19:25:57.057867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:57.059800"], ["updated_at", "2023-02-17 19:25:57.059800"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:57.061424"], ["updated_at", "2023-02-17 19:25:57.061424"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:57.064017"], ["updated_at", "2023-02-17 19:25:57.064017"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:57.066252"], ["updated_at", "2023-02-17 19:25:57.066252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:57.067952"], ["updated_at", "2023-02-17 19:25:57.067952"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:57.071184"], ["updated_at", "2023-02-17 19:25:57.071184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:57.073270"], ["updated_at", "2023-02-17 19:25:57.073270"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:57.075810"], ["updated_at", "2023-02-17 19:25:57.075810"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 409)

Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:57.077225"], ["updated_at", "2023-02-17 19:25:57.077225"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:57.079402"], ["updated_at", "2023-02-17 19:25:57.079402"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:57.081137"], ["updated_at", "2023-02-17 19:25:57.081137"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.4ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:57.083434"], ["updated_at", "2023-02-17 19:25:57.083434"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:57.085720"], ["updated_at", "2023-02-17 19:25:57.085720"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:57.089502"], ["updated_at", "2023-02-17 19:25:57.089502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:57.091551"], ["updated_at", "2023-02-17 19:25:57.091551"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:57.094257"], ["updated_at", "2023-02-17 19:25:57.094257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:57.096673"], ["updated_at", "2023-02-17 19:25:57.096673"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:57.098260"], ["updated_at", "2023-02-17 19:25:57.098260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:57.100745"], ["updated_at", "2023-02-17 19:25:57.100745"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:57.103297"], ["updated_at", "2023-02-17 19:25:57.103297"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:57.105681"], ["updated_at", "2023-02-17 19:25:57.105681"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:57.109192"], ["updated_at", "2023-02-17 19:25:57.109192"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:57.112171"], ["updated_at", "2023-02-17 19:25:57.112171"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:57.114707"], ["updated_at", "2023-02-17 19:25:57.114707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:57.116729"], ["updated_at", "2023-02-17 19:25:57.116729"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:57.118573"], ["updated_at", "2023-02-17 19:25:57.118573"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:57.120327"], ["updated_at", "2023-02-17 19:25:57.120327"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:57.122774"], ["updated_at", "2023-02-17 19:25:57.122774"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:57.124789"], ["updated_at", "2023-02-17 19:25:57.124789"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:57.126629"], ["updated_at", "2023-02-17 19:25:57.126629"]]
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:57.128585"], ["updated_at", "2023-02-17 19:25:57.128585"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:57.130237"], ["updated_at", "2023-02-17 19:25:57.130237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:57.131833"], ["updated_at", "2023-02-17 19:25:57.131833"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:57.134252"], ["updated_at", "2023-02-17 19:25:57.134252"]]
TRANSACTION (0.3ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:57.136187"], ["updated_at", "2023-02-17 19:25:57.136187"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Create (0.6ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:57.135241"], ["updated_at", "2023-02-17 19:25:57.135241"]]
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:57.138607"], ["updated_at", "2023-02-17 19:25:57.138607"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 16ms (ActiveRecord: 1.7ms | Allocations: 6170)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:57.140376"], ["updated_at", "2023-02-17 19:25:57.140376"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:57.142197"], ["updated_at", "2023-02-17 19:25:57.142197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:57.143999"], ["updated_at", "2023-02-17 19:25:57.143999"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:57.145844"], ["updated_at", "2023-02-17 19:25:57.145844"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:57.147475"], ["updated_at", "2023-02-17 19:25:57.147475"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:57.149543"], ["updated_at", "2023-02-17 19:25:57.149543"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:57.151181"], ["updated_at", "2023-02-17 19:25:57.151181"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:57.153268"], ["updated_at", "2023-02-17 19:25:57.153268"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:57.155457"], ["updated_at", "2023-02-17 19:25:57.155457"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:57.157664"], ["updated_at", "2023-02-17 19:25:57.157664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:57.159346"], ["updated_at", "2023-02-17 19:25:57.159346"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:57.161257"], ["updated_at", "2023-02-17 19:25:57.161257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:57.162921"], ["updated_at", "2023-02-17 19:25:57.162921"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:57.165084"], ["updated_at", "2023-02-17 19:25:57.165084"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:57.166874"], ["updated_at", "2023-02-17 19:25:57.166874"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:57.168650"], ["updated_at", "2023-02-17 19:25:57.168650"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:57.170320"], ["updated_at", "2023-02-17 19:25:57.170320"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:57.172477"], ["updated_at", "2023-02-17 19:25:57.172477"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Create (0.4ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:25:57.171987"], ["updated_at", "2023-02-17 19:25:57.171987"], ["role_id", 1]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 16ms (ActiveRecord: 1.1ms | Allocations: 5708)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:57.174614"], ["updated_at", "2023-02-17 19:25:57.174614"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00007fe2d9793010>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:57.179880"], ["updated_at", "2023-02-17 19:25:57.179880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:57.181530"], ["updated_at", "2023-02-17 19:25:57.181530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:57.182864"], ["updated_at", "2023-02-17 19:25:57.182864"]]

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.4ms | Allocations: 3025)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:57.217864"], ["updated_at", "2023-02-17 19:25:57.217864"], ["role_id", 2]]
SurveyQuestion Create (0.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:57.219951"], ["updated_at", "2023-02-17 19:25:57.219951"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:57.221989"], ["updated_at", "2023-02-17 19:25:57.221989"]]
QuestionOption Create (0.3ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.223707"], ["updated_at", "2023-02-17 19:25:57.223707"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.224888"], ["updated_at", "2023-02-17 19:25:57.224888"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.225745"], ["updated_at", "2023-02-17 19:25:57.225745"]]
Member Exists? (0.3ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.226653"], ["updated_at", "2023-02-17 19:25:57.226653"]]

Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 6053)

QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.227581"], ["updated_at", "2023-02-17 19:25:57.227581"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:57.228589"], ["updated_at", "2023-02-17 19:25:57.228589"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.229722"], ["updated_at", "2023-02-17 19:25:57.229722"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.231068"], ["updated_at", "2023-02-17 19:25:57.231068"]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.232006"], ["updated_at", "2023-02-17 19:25:57.232006"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.233130"], ["updated_at", "2023-02-17 19:25:57.233130"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.233992"], ["updated_at", "2023-02-17 19:25:57.233992"]]
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.235094"], ["updated_at", "2023-02-17 19:25:57.235094"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.236289"], ["updated_at", "2023-02-17 19:25:57.236289"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.237431"], ["updated_at", "2023-02-17 19:25:57.237431"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.239032"], ["updated_at", "2023-02-17 19:25:57.239032"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.240668"], ["updated_at", "2023-02-17 19:25:57.240668"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.241697"], ["updated_at", "2023-02-17 19:25:57.241697"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.242778"], ["updated_at", "2023-02-17 19:25:57.242778"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:57.244548"], ["updated_at", "2023-02-17 19:25:57.244548"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:57.251139"], ["updated_at", "2023-02-17 19:25:57.251139"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:57.258232"], ["updated_at", "2023-02-17 19:25:57.258232"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:57.258555"], ["updated_at", "2023-02-17 19:25:57.258555"], ["role_id", 2]]
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:57.260092"], ["updated_at", "2023-02-17 19:25:57.260092"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:57.261343"], ["updated_at", "2023-02-17 19:25:57.261343"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:57.262651"], ["updated_at", "2023-02-17 19:25:57.262651"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:57.263444"], ["updated_at", "2023-02-17 19:25:57.263444"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:57.264164"], ["updated_at", "2023-02-17 19:25:57.264164"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:57.263968"], ["updated_at", "2023-02-17 19:25:57.263968"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:57.265257"], ["updated_at", "2023-02-17 19:25:57.265257"]]
TRANSACTION (0.1ms)  begin transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:57.266090"], ["updated_at", "2023-02-17 19:25:57.266090"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:57.267183"], ["updated_at", "2023-02-17 19:25:57.267183"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.268120"], ["updated_at", "2023-02-17 19:25:57.268120"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.269098"], ["updated_at", "2023-02-17 19:25:57.269098"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:57.269334"], ["updated_at", "2023-02-17 19:25:57.269334"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.270603"], ["updated_at", "2023-02-17 19:25:57.270603"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.271730"], ["updated_at", "2023-02-17 19:25:57.271730"]]
TRANSACTION (0.5ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.272810"], ["updated_at", "2023-02-17 19:25:57.272810"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.273820"], ["updated_at", "2023-02-17 19:25:57.273820"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.274629"], ["updated_at", "2023-02-17 19:25:57.274629"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.275431"], ["updated_at", "2023-02-17 19:25:57.275431"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.276204"], ["updated_at", "2023-02-17 19:25:57.276204"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:57.275984"], ["updated_at", "2023-02-17 19:25:57.275984"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.277323"], ["updated_at", "2023-02-17 19:25:57.277323"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.278143"], ["updated_at", "2023-02-17 19:25:57.278143"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.278892"], ["updated_at", "2023-02-17 19:25:57.278892"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:57.281786"], ["updated_at", "2023-02-17 19:25:57.281786"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:57.286924"], ["updated_at", "2023-02-17 19:25:57.286924"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:25:57 -0300

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 232)

LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.312891"], ["updated_at", "2023-02-17 19:25:57.312891"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.314039"], ["updated_at", "2023-02-17 19:25:57.314039"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.314972"], ["updated_at", "2023-02-17 19:25:57.314972"]]

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:25:57 -0300

QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.315713"], ["updated_at", "2023-02-17 19:25:57.315713"]]

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.316583"], ["updated_at", "2023-02-17 19:25:57.316583"]]

Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 180)

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.317510"], ["updated_at", "2023-02-17 19:25:57.317510"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.318326"], ["updated_at", "2023-02-17 19:25:57.318326"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.319123"], ["updated_at", "2023-02-17 19:25:57.319123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.320075"], ["updated_at", "2023-02-17 19:25:57.320075"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.320852"], ["updated_at", "2023-02-17 19:25:57.320852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.321617"], ["updated_at", "2023-02-17 19:25:57.321617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.322317"], ["updated_at", "2023-02-17 19:25:57.322317"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.323015"], ["updated_at", "2023-02-17 19:25:57.323015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.323782"], ["updated_at", "2023-02-17 19:25:57.323782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.324462"], ["updated_at", "2023-02-17 19:25:57.324462"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.325242"], ["updated_at", "2023-02-17 19:25:57.325242"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.341617"], ["updated_at", "2023-02-17 19:25:57.341617"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.342613"], ["updated_at", "2023-02-17 19:25:57.342613"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.343380"], ["updated_at", "2023-02-17 19:25:57.343380"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.344093"], ["updated_at", "2023-02-17 19:25:57.344093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.344885"], ["updated_at", "2023-02-17 19:25:57.344885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.345628"], ["updated_at", "2023-02-17 19:25:57.345628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.346322"], ["updated_at", "2023-02-17 19:25:57.346322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.347046"], ["updated_at", "2023-02-17 19:25:57.347046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.347775"], ["updated_at", "2023-02-17 19:25:57.347775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.348501"], ["updated_at", "2023-02-17 19:25:57.348501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.349200"], ["updated_at", "2023-02-17 19:25:57.349200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.350025"], ["updated_at", "2023-02-17 19:25:57.350025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.350832"], ["updated_at", "2023-02-17 19:25:57.350832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.351643"], ["updated_at", "2023-02-17 19:25:57.351643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.352476"], ["updated_at", "2023-02-17 19:25:57.352476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.353444"], ["updated_at", "2023-02-17 19:25:57.353444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.370672"], ["updated_at", "2023-02-17 19:25:57.370672"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.371730"], ["updated_at", "2023-02-17 19:25:57.371730"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.372630"], ["updated_at", "2023-02-17 19:25:57.372630"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.373692"], ["updated_at", "2023-02-17 19:25:57.373692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.374716"], ["updated_at", "2023-02-17 19:25:57.374716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.375698"], ["updated_at", "2023-02-17 19:25:57.375698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.376590"], ["updated_at", "2023-02-17 19:25:57.376590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.377422"], ["updated_at", "2023-02-17 19:25:57.377422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.378220"], ["updated_at", "2023-02-17 19:25:57.378220"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.379014"], ["updated_at", "2023-02-17 19:25:57.379014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.379958"], ["updated_at", "2023-02-17 19:25:57.379958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.380980"], ["updated_at", "2023-02-17 19:25:57.380980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.382005"], ["updated_at", "2023-02-17 19:25:57.382005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.383445"], ["updated_at", "2023-02-17 19:25:57.383445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.384517"], ["updated_at", "2023-02-17 19:25:57.384517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.385657"], ["updated_at", "2023-02-17 19:25:57.385657"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.404958"], ["updated_at", "2023-02-17 19:25:57.404958"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.406065"], ["updated_at", "2023-02-17 19:25:57.406065"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.407024"], ["updated_at", "2023-02-17 19:25:57.407024"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.407951"], ["updated_at", "2023-02-17 19:25:57.407951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.408923"], ["updated_at", "2023-02-17 19:25:57.408923"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.409835"], ["updated_at", "2023-02-17 19:25:57.409835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.410884"], ["updated_at", "2023-02-17 19:25:57.410884"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.411771"], ["updated_at", "2023-02-17 19:25:57.411771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.412636"], ["updated_at", "2023-02-17 19:25:57.412636"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.413495"], ["updated_at", "2023-02-17 19:25:57.413495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.414399"], ["updated_at", "2023-02-17 19:25:57.414399"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.415314"], ["updated_at", "2023-02-17 19:25:57.415314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.416202"], ["updated_at", "2023-02-17 19:25:57.416202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.417055"], ["updated_at", "2023-02-17 19:25:57.417055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.417981"], ["updated_at", "2023-02-17 19:25:57.417981"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.419089"], ["updated_at", "2023-02-17 19:25:57.419089"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.439022"], ["updated_at", "2023-02-17 19:25:57.439022"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.440181"], ["updated_at", "2023-02-17 19:25:57.440181"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.441194"], ["updated_at", "2023-02-17 19:25:57.441194"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.442031"], ["updated_at", "2023-02-17 19:25:57.442031"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.443100"], ["updated_at", "2023-02-17 19:25:57.443100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.443929"], ["updated_at", "2023-02-17 19:25:57.443929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.444641"], ["updated_at", "2023-02-17 19:25:57.444641"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.445412"], ["updated_at", "2023-02-17 19:25:57.445412"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.446109"], ["updated_at", "2023-02-17 19:25:57.446109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.446821"], ["updated_at", "2023-02-17 19:25:57.446821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.447502"], ["updated_at", "2023-02-17 19:25:57.447502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.448200"], ["updated_at", "2023-02-17 19:25:57.448200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.448895"], ["updated_at", "2023-02-17 19:25:57.448895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.449637"], ["updated_at", "2023-02-17 19:25:57.449637"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.450420"], ["updated_at", "2023-02-17 19:25:57.450420"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.451268"], ["updated_at", "2023-02-17 19:25:57.451268"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.467438"], ["updated_at", "2023-02-17 19:25:57.467438"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.468487"], ["updated_at", "2023-02-17 19:25:57.468487"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.469413"], ["updated_at", "2023-02-17 19:25:57.469413"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.470165"], ["updated_at", "2023-02-17 19:25:57.470165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.471255"], ["updated_at", "2023-02-17 19:25:57.471255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.472336"], ["updated_at", "2023-02-17 19:25:57.472336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.473168"], ["updated_at", "2023-02-17 19:25:57.473168"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.473908"], ["updated_at", "2023-02-17 19:25:57.473908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.474615"], ["updated_at", "2023-02-17 19:25:57.474615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.475323"], ["updated_at", "2023-02-17 19:25:57.475323"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.476036"], ["updated_at", "2023-02-17 19:25:57.476036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.476732"], ["updated_at", "2023-02-17 19:25:57.476732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.477501"], ["updated_at", "2023-02-17 19:25:57.477501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.478215"], ["updated_at", "2023-02-17 19:25:57.478215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.478986"], ["updated_at", "2023-02-17 19:25:57.478986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.479812"], ["updated_at", "2023-02-17 19:25:57.479812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:25:57 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 3127)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:57.504845"], ["updated_at", "2023-02-17 19:25:57.504845"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:57.506589"], ["updated_at", "2023-02-17 19:25:57.506589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:57.509635"], ["updated_at", "2023-02-17 19:25:57.509635"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:57.510951"], ["updated_at", "2023-02-17 19:25:57.510951"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:57.513869"], ["updated_at", "2023-02-17 19:25:57.513869"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:57.515079"], ["updated_at", "2023-02-17 19:25:57.515079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:57.517263"], ["updated_at", "2023-02-17 19:25:57.517263"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:57.518904"], ["updated_at", "2023-02-17 19:25:57.518904"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:57.521143"], ["updated_at", "2023-02-17 19:25:57.521143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:57.522881"], ["updated_at", "2023-02-17 19:25:57.522881"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:57.524848"], ["updated_at", "2023-02-17 19:25:57.524848"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:57.526561"], ["updated_at", "2023-02-17 19:25:57.526561"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:57.528036"], ["updated_at", "2023-02-17 19:25:57.528036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:57.529292"], ["updated_at", "2023-02-17 19:25:57.529292"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:57.530944"], ["updated_at", "2023-02-17 19:25:57.530944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:57.532246"], ["updated_at", "2023-02-17 19:25:57.532246"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:57.533776"], ["updated_at", "2023-02-17 19:25:57.533776"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:57.535124"], ["updated_at", "2023-02-17 19:25:57.535124"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:57.536647"], ["updated_at", "2023-02-17 19:25:57.536647"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:57.538157"], ["updated_at", "2023-02-17 19:25:57.538157"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:57.539877"], ["updated_at", "2023-02-17 19:25:57.539877"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:57.541834"], ["updated_at", "2023-02-17 19:25:57.541834"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:57.543678"], ["updated_at", "2023-02-17 19:25:57.543678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:57.545001"], ["updated_at", "2023-02-17 19:25:57.545001"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:57.546494"], ["updated_at", "2023-02-17 19:25:57.546494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:57.547749"], ["updated_at", "2023-02-17 19:25:57.547749"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:57.549238"], ["updated_at", "2023-02-17 19:25:57.549238"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:57.550548"], ["updated_at", "2023-02-17 19:25:57.550548"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:57.552147"], ["updated_at", "2023-02-17 19:25:57.552147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:57.553630"], ["updated_at", "2023-02-17 19:25:57.553630"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:57.555254"], ["updated_at", "2023-02-17 19:25:57.555254"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:57.556549"], ["updated_at", "2023-02-17 19:25:57.556549"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:57.557975"], ["updated_at", "2023-02-17 19:25:57.557975"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:57.559359"], ["updated_at", "2023-02-17 19:25:57.559359"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:57.560877"], ["updated_at", "2023-02-17 19:25:57.560877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:57.562376"], ["updated_at", "2023-02-17 19:25:57.562376"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:57.563988"], ["updated_at", "2023-02-17 19:25:57.563988"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:57.565345"], ["updated_at", "2023-02-17 19:25:57.565345"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:57.567101"], ["updated_at", "2023-02-17 19:25:57.567101"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:57.568864"], ["updated_at", "2023-02-17 19:25:57.568864"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:57.570669"], ["updated_at", "2023-02-17 19:25:57.570669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:57.572229"], ["updated_at", "2023-02-17 19:25:57.572229"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:57.573751"], ["updated_at", "2023-02-17 19:25:57.573751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:57.575072"], ["updated_at", "2023-02-17 19:25:57.575072"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:57.576657"], ["updated_at", "2023-02-17 19:25:57.576657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:57.578147"], ["updated_at", "2023-02-17 19:25:57.578147"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:57.579683"], ["updated_at", "2023-02-17 19:25:57.579683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:57.581073"], ["updated_at", "2023-02-17 19:25:57.581073"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:57.582597"], ["updated_at", "2023-02-17 19:25:57.582597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:57.583910"], ["updated_at", "2023-02-17 19:25:57.583910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:57.585465"], ["updated_at", "2023-02-17 19:25:57.585465"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:57.586804"], ["updated_at", "2023-02-17 19:25:57.586804"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:57.588519"], ["updated_at", "2023-02-17 19:25:57.588519"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:57.589984"], ["updated_at", "2023-02-17 19:25:57.589984"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:57.591598"], ["updated_at", "2023-02-17 19:25:57.591598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:57.592995"], ["updated_at", "2023-02-17 19:25:57.592995"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:57.594574"], ["updated_at", "2023-02-17 19:25:57.594574"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:57.595897"], ["updated_at", "2023-02-17 19:25:57.595897"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:57.597501"], ["updated_at", "2023-02-17 19:25:57.597501"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:57.598750"], ["updated_at", "2023-02-17 19:25:57.598750"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:57.600247"], ["updated_at", "2023-02-17 19:25:57.600247"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:57.601751"], ["updated_at", "2023-02-17 19:25:57.601751"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:57.603376"], ["updated_at", "2023-02-17 19:25:57.603376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:57.604877"], ["updated_at", "2023-02-17 19:25:57.604877"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:57.606656"], ["updated_at", "2023-02-17 19:25:57.606656"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:57.608005"], ["updated_at", "2023-02-17 19:25:57.608005"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:57.609733"], ["updated_at", "2023-02-17 19:25:57.609733"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:57.621731"], ["updated_at", "2023-02-17 19:25:57.621731"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:57.623257"], ["updated_at", "2023-02-17 19:25:57.623257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:57.624530"], ["updated_at", "2023-02-17 19:25:57.624530"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:57.626156"], ["updated_at", "2023-02-17 19:25:57.626156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:57.627574"], ["updated_at", "2023-02-17 19:25:57.627574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:57.629170"], ["updated_at", "2023-02-17 19:25:57.629170"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:57.630535"], ["updated_at", "2023-02-17 19:25:57.630535"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:57.632207"], ["updated_at", "2023-02-17 19:25:57.632207"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:57.633618"], ["updated_at", "2023-02-17 19:25:57.633618"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:57.635123"], ["updated_at", "2023-02-17 19:25:57.635123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:57.636418"], ["updated_at", "2023-02-17 19:25:57.636418"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:57.638067"], ["updated_at", "2023-02-17 19:25:57.638067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:57.639503"], ["updated_at", "2023-02-17 19:25:57.639503"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:57.641494"], ["updated_at", "2023-02-17 19:25:57.641494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:57.643038"], ["updated_at", "2023-02-17 19:25:57.643038"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:57.644723"], ["updated_at", "2023-02-17 19:25:57.644723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:57.646155"], ["updated_at", "2023-02-17 19:25:57.646155"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:57.647962"], ["updated_at", "2023-02-17 19:25:57.647962"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:57.649318"], ["updated_at", "2023-02-17 19:25:57.649318"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:57.650880"], ["updated_at", "2023-02-17 19:25:57.650880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:57.652465"], ["updated_at", "2023-02-17 19:25:57.652465"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:57.654172"], ["updated_at", "2023-02-17 19:25:57.654172"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:57.656222"], ["updated_at", "2023-02-17 19:25:57.656222"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:57.658161"], ["updated_at", "2023-02-17 19:25:57.658161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:57.659524"], ["updated_at", "2023-02-17 19:25:57.659524"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:57.661763"], ["updated_at", "2023-02-17 19:25:57.661763"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:57.663223"], ["updated_at", "2023-02-17 19:25:57.663223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:57.665023"], ["updated_at", "2023-02-17 19:25:57.665023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:57.666272"], ["updated_at", "2023-02-17 19:25:57.666272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:57.667680"], ["updated_at", "2023-02-17 19:25:57.667680"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:57.669274"], ["updated_at", "2023-02-17 19:25:57.669274"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:57.671381"], ["updated_at", "2023-02-17 19:25:57.671381"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:57.672780"], ["updated_at", "2023-02-17 19:25:57.672780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:57.673900"], ["updated_at", "2023-02-17 19:25:57.673900"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:57.688060"], ["updated_at", "2023-02-17 19:25:57.688060"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:57.689499"], ["updated_at", "2023-02-17 19:25:57.689499"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:57.690656"], ["updated_at", "2023-02-17 19:25:57.690656"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.691886"], ["updated_at", "2023-02-17 19:25:57.691886"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.692841"], ["updated_at", "2023-02-17 19:25:57.692841"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.693741"], ["updated_at", "2023-02-17 19:25:57.693741"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.694516"], ["updated_at", "2023-02-17 19:25:57.694516"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.695245"], ["updated_at", "2023-02-17 19:25:57.695245"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:57.696103"], ["updated_at", "2023-02-17 19:25:57.696103"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.697151"], ["updated_at", "2023-02-17 19:25:57.697151"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.698143"], ["updated_at", "2023-02-17 19:25:57.698143"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.698929"], ["updated_at", "2023-02-17 19:25:57.698929"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.699664"], ["updated_at", "2023-02-17 19:25:57.699664"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.700583"], ["updated_at", "2023-02-17 19:25:57.700583"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.701848"], ["updated_at", "2023-02-17 19:25:57.701848"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.702905"], ["updated_at", "2023-02-17 19:25:57.702905"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.704073"], ["updated_at", "2023-02-17 19:25:57.704073"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.705191"], ["updated_at", "2023-02-17 19:25:57.705191"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.706179"], ["updated_at", "2023-02-17 19:25:57.706179"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.707041"], ["updated_at", "2023-02-17 19:25:57.707041"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.707855"], ["updated_at", "2023-02-17 19:25:57.707855"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:57.720251"], ["updated_at", "2023-02-17 19:25:57.720251"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:57.721857"], ["updated_at", "2023-02-17 19:25:57.721857"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:57.722938"], ["updated_at", "2023-02-17 19:25:57.722938"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:57.724051"], ["updated_at", "2023-02-17 19:25:57.724051"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:57.724941"], ["updated_at", "2023-02-17 19:25:57.724941"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:57.725760"], ["updated_at", "2023-02-17 19:25:57.725760"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:57.726478"], ["updated_at", "2023-02-17 19:25:57.726478"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:57.727184"], ["updated_at", "2023-02-17 19:25:57.727184"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:57.728090"], ["updated_at", "2023-02-17 19:25:57.728090"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.728958"], ["updated_at", "2023-02-17 19:25:57.728958"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.729902"], ["updated_at", "2023-02-17 19:25:57.729902"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.730731"], ["updated_at", "2023-02-17 19:25:57.730731"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.731710"], ["updated_at", "2023-02-17 19:25:57.731710"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.732562"], ["updated_at", "2023-02-17 19:25:57.732562"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.733367"], ["updated_at", "2023-02-17 19:25:57.733367"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.734171"], ["updated_at", "2023-02-17 19:25:57.734171"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.734929"], ["updated_at", "2023-02-17 19:25:57.734929"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.735695"], ["updated_at", "2023-02-17 19:25:57.735695"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.736703"], ["updated_at", "2023-02-17 19:25:57.736703"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.737793"], ["updated_at", "2023-02-17 19:25:57.737793"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:57.738629"], ["updated_at", "2023-02-17 19:25:57.738629"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.757224"], ["updated_at", "2023-02-17 19:25:57.757224"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.758856"], ["updated_at", "2023-02-17 19:25:57.758856"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.759768"], ["updated_at", "2023-02-17 19:25:57.759768"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.760688"], ["updated_at", "2023-02-17 19:25:57.760688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.761569"], ["updated_at", "2023-02-17 19:25:57.761569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.762546"], ["updated_at", "2023-02-17 19:25:57.762546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.763357"], ["updated_at", "2023-02-17 19:25:57.763357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.764095"], ["updated_at", "2023-02-17 19:25:57.764095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.764801"], ["updated_at", "2023-02-17 19:25:57.764801"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.765504"], ["updated_at", "2023-02-17 19:25:57.765504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.766212"], ["updated_at", "2023-02-17 19:25:57.766212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.766923"], ["updated_at", "2023-02-17 19:25:57.766923"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.767644"], ["updated_at", "2023-02-17 19:25:57.767644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.768592"], ["updated_at", "2023-02-17 19:25:57.768592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.769478"], ["updated_at", "2023-02-17 19:25:57.769478"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:57.770523"], ["updated_at", "2023-02-17 19:25:57.770523"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.787704"], ["updated_at", "2023-02-17 19:25:57.787704"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.788758"], ["updated_at", "2023-02-17 19:25:57.788758"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.789518"], ["updated_at", "2023-02-17 19:25:57.789518"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.790221"], ["updated_at", "2023-02-17 19:25:57.790221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.791011"], ["updated_at", "2023-02-17 19:25:57.791011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.791850"], ["updated_at", "2023-02-17 19:25:57.791850"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.792735"], ["updated_at", "2023-02-17 19:25:57.792735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.793468"], ["updated_at", "2023-02-17 19:25:57.793468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.794160"], ["updated_at", "2023-02-17 19:25:57.794160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.794889"], ["updated_at", "2023-02-17 19:25:57.794889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.795617"], ["updated_at", "2023-02-17 19:25:57.795617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.796329"], ["updated_at", "2023-02-17 19:25:57.796329"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.797057"], ["updated_at", "2023-02-17 19:25:57.797057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.797750"], ["updated_at", "2023-02-17 19:25:57.797750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.798467"], ["updated_at", "2023-02-17 19:25:57.798467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:57.799181"], ["updated_at", "2023-02-17 19:25:57.799181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.815190"], ["updated_at", "2023-02-17 19:25:57.815190"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.816183"], ["updated_at", "2023-02-17 19:25:57.816183"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.817010"], ["updated_at", "2023-02-17 19:25:57.817010"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.817777"], ["updated_at", "2023-02-17 19:25:57.817777"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.818535"], ["updated_at", "2023-02-17 19:25:57.818535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.819311"], ["updated_at", "2023-02-17 19:25:57.819311"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.820353"], ["updated_at", "2023-02-17 19:25:57.820353"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.821355"], ["updated_at", "2023-02-17 19:25:57.821355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.822206"], ["updated_at", "2023-02-17 19:25:57.822206"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.822986"], ["updated_at", "2023-02-17 19:25:57.822986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.823738"], ["updated_at", "2023-02-17 19:25:57.823738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.824449"], ["updated_at", "2023-02-17 19:25:57.824449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.825158"], ["updated_at", "2023-02-17 19:25:57.825158"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.825894"], ["updated_at", "2023-02-17 19:25:57.825894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.826623"], ["updated_at", "2023-02-17 19:25:57.826623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:57.827354"], ["updated_at", "2023-02-17 19:25:57.827354"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.843809"], ["updated_at", "2023-02-17 19:25:57.843809"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.844794"], ["updated_at", "2023-02-17 19:25:57.844794"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.845559"], ["updated_at", "2023-02-17 19:25:57.845559"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.846286"], ["updated_at", "2023-02-17 19:25:57.846286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.847050"], ["updated_at", "2023-02-17 19:25:57.847050"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.847759"], ["updated_at", "2023-02-17 19:25:57.847759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.848447"], ["updated_at", "2023-02-17 19:25:57.848447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.849230"], ["updated_at", "2023-02-17 19:25:57.849230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.850010"], ["updated_at", "2023-02-17 19:25:57.850010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.850719"], ["updated_at", "2023-02-17 19:25:57.850719"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.851391"], ["updated_at", "2023-02-17 19:25:57.851391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.852147"], ["updated_at", "2023-02-17 19:25:57.852147"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.852960"], ["updated_at", "2023-02-17 19:25:57.852960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.853694"], ["updated_at", "2023-02-17 19:25:57.853694"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.854426"], ["updated_at", "2023-02-17 19:25:57.854426"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:57.855126"], ["updated_at", "2023-02-17 19:25:57.855126"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.870835"], ["updated_at", "2023-02-17 19:25:57.870835"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.871834"], ["updated_at", "2023-02-17 19:25:57.871834"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.872726"], ["updated_at", "2023-02-17 19:25:57.872726"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.873491"], ["updated_at", "2023-02-17 19:25:57.873491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.874323"], ["updated_at", "2023-02-17 19:25:57.874323"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.875081"], ["updated_at", "2023-02-17 19:25:57.875081"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.875786"], ["updated_at", "2023-02-17 19:25:57.875786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.876465"], ["updated_at", "2023-02-17 19:25:57.876465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.877173"], ["updated_at", "2023-02-17 19:25:57.877173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.877901"], ["updated_at", "2023-02-17 19:25:57.877901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.878595"], ["updated_at", "2023-02-17 19:25:57.878595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.879301"], ["updated_at", "2023-02-17 19:25:57.879301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.879992"], ["updated_at", "2023-02-17 19:25:57.879992"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.880659"], ["updated_at", "2023-02-17 19:25:57.880659"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.881433"], ["updated_at", "2023-02-17 19:25:57.881433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:57.882436"], ["updated_at", "2023-02-17 19:25:57.882436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:57.900366"], ["updated_at", "2023-02-17 19:25:57.900366"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:57.901365"], ["updated_at", "2023-02-17 19:25:57.901365"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:57.902141"], ["updated_at", "2023-02-17 19:25:57.902141"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:57.903352"], ["updated_at", "2023-02-17 19:25:57.903352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.904238"], ["updated_at", "2023-02-17 19:25:57.904238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.905048"], ["updated_at", "2023-02-17 19:25:57.905048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.905791"], ["updated_at", "2023-02-17 19:25:57.905791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.906507"], ["updated_at", "2023-02-17 19:25:57.906507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.907210"], ["updated_at", "2023-02-17 19:25:57.907210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.907918"], ["updated_at", "2023-02-17 19:25:57.907918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.908597"], ["updated_at", "2023-02-17 19:25:57.908597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.909296"], ["updated_at", "2023-02-17 19:25:57.909296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.909993"], ["updated_at", "2023-02-17 19:25:57.909993"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.910666"], ["updated_at", "2023-02-17 19:25:57.910666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.911367"], ["updated_at", "2023-02-17 19:25:57.911367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:57.912068"], ["updated_at", "2023-02-17 19:25:57.912068"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:25:57 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:57.922892"], ["updated_at", "2023-02-17 19:25:57.922892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:57.924669"], ["updated_at", "2023-02-17 19:25:57.924669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:57.927843"], ["updated_at", "2023-02-17 19:25:57.927843"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:57.929108"], ["updated_at", "2023-02-17 19:25:57.929108"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:57.932146"], ["updated_at", "2023-02-17 19:25:57.932146"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:57.933762"], ["updated_at", "2023-02-17 19:25:57.933762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:57.936140"], ["updated_at", "2023-02-17 19:25:57.936140"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:57.937712"], ["updated_at", "2023-02-17 19:25:57.937712"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:57.940487"], ["updated_at", "2023-02-17 19:25:57.940487"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:57.942033"], ["updated_at", "2023-02-17 19:25:57.942033"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:57.943662"], ["updated_at", "2023-02-17 19:25:57.943662"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:57.945392"], ["updated_at", "2023-02-17 19:25:57.945392"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:57.946915"], ["updated_at", "2023-02-17 19:25:57.946915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:57.948404"], ["updated_at", "2023-02-17 19:25:57.948404"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:57.949826"], ["updated_at", "2023-02-17 19:25:57.949826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:57.951029"], ["updated_at", "2023-02-17 19:25:57.951029"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:57.952524"], ["updated_at", "2023-02-17 19:25:57.952524"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:57.954461"], ["updated_at", "2023-02-17 19:25:57.954461"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:57.956245"], ["updated_at", "2023-02-17 19:25:57.956245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:57.957728"], ["updated_at", "2023-02-17 19:25:57.957728"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:57.959538"], ["updated_at", "2023-02-17 19:25:57.959538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:57.961340"], ["updated_at", "2023-02-17 19:25:57.961340"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:57.962949"], ["updated_at", "2023-02-17 19:25:57.962949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:57.964558"], ["updated_at", "2023-02-17 19:25:57.964558"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:57.966096"], ["updated_at", "2023-02-17 19:25:57.966096"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:57.967823"], ["updated_at", "2023-02-17 19:25:57.967823"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:57.969506"], ["updated_at", "2023-02-17 19:25:57.969506"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:57.971007"], ["updated_at", "2023-02-17 19:25:57.971007"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:57.972834"], ["updated_at", "2023-02-17 19:25:57.972834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:57.974335"], ["updated_at", "2023-02-17 19:25:57.974335"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:57.975780"], ["updated_at", "2023-02-17 19:25:57.975780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:57.976970"], ["updated_at", "2023-02-17 19:25:57.976970"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:57.978945"], ["updated_at", "2023-02-17 19:25:57.978945"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:57.980232"], ["updated_at", "2023-02-17 19:25:57.980232"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:57.981672"], ["updated_at", "2023-02-17 19:25:57.981672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:57.982995"], ["updated_at", "2023-02-17 19:25:57.982995"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:57.985064"], ["updated_at", "2023-02-17 19:25:57.985064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:57.986702"], ["updated_at", "2023-02-17 19:25:57.986702"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:57.988250"], ["updated_at", "2023-02-17 19:25:57.988250"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:57.989652"], ["updated_at", "2023-02-17 19:25:57.989652"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:57.991593"], ["updated_at", "2023-02-17 19:25:57.991593"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:57.992891"], ["updated_at", "2023-02-17 19:25:57.992891"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:57.994921"], ["updated_at", "2023-02-17 19:25:57.994921"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:57.996228"], ["updated_at", "2023-02-17 19:25:57.996228"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:57.997642"], ["updated_at", "2023-02-17 19:25:57.997642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:57.998881"], ["updated_at", "2023-02-17 19:25:57.998881"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:58.000319"], ["updated_at", "2023-02-17 19:25:58.000319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:58.001965"], ["updated_at", "2023-02-17 19:25:58.001965"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:58.003616"], ["updated_at", "2023-02-17 19:25:58.003616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:58.005059"], ["updated_at", "2023-02-17 19:25:58.005059"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:58.006521"], ["updated_at", "2023-02-17 19:25:58.006521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:58.007898"], ["updated_at", "2023-02-17 19:25:58.007898"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.9ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:58.009545"], ["updated_at", "2023-02-17 19:25:58.009545"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:58.012060"], ["updated_at", "2023-02-17 19:25:58.012060"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:58.014179"], ["updated_at", "2023-02-17 19:25:58.014179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:58.015814"], ["updated_at", "2023-02-17 19:25:58.015814"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:58.017292"], ["updated_at", "2023-02-17 19:25:58.017292"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:58.018509"], ["updated_at", "2023-02-17 19:25:58.018509"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:58.019941"], ["updated_at", "2023-02-17 19:25:58.019941"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:58.021652"], ["updated_at", "2023-02-17 19:25:58.021652"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:58.023243"], ["updated_at", "2023-02-17 19:25:58.023243"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:58.024837"], ["updated_at", "2023-02-17 19:25:58.024837"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:58.026321"], ["updated_at", "2023-02-17 19:25:58.026321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.027582"], ["updated_at", "2023-02-17 19:25:58.027582"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:58.029088"], ["updated_at", "2023-02-17 19:25:58.029088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:58.030354"], ["updated_at", "2023-02-17 19:25:58.030354"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:58.031757"], ["updated_at", "2023-02-17 19:25:58.031757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:58.033018"], ["updated_at", "2023-02-17 19:25:58.033018"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:58.034863"], ["updated_at", "2023-02-17 19:25:58.034863"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.036188"], ["updated_at", "2023-02-17 19:25:58.036188"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:58.037919"], ["updated_at", "2023-02-17 19:25:58.037919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:58.039167"], ["updated_at", "2023-02-17 19:25:58.039167"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:58.040610"], ["updated_at", "2023-02-17 19:25:58.040610"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:58.041825"], ["updated_at", "2023-02-17 19:25:58.041825"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:58.043267"], ["updated_at", "2023-02-17 19:25:58.043267"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:58.045059"], ["updated_at", "2023-02-17 19:25:58.045059"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:58.046543"], ["updated_at", "2023-02-17 19:25:58.046543"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:58.047744"], ["updated_at", "2023-02-17 19:25:58.047744"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:58.049169"], ["updated_at", "2023-02-17 19:25:58.049169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:58.050394"], ["updated_at", "2023-02-17 19:25:58.050394"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:58.051938"], ["updated_at", "2023-02-17 19:25:58.051938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.053366"], ["updated_at", "2023-02-17 19:25:58.053366"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:58.054877"], ["updated_at", "2023-02-17 19:25:58.054877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:58.056053"], ["updated_at", "2023-02-17 19:25:58.056053"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:58.057507"], ["updated_at", "2023-02-17 19:25:58.057507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:58.058744"], ["updated_at", "2023-02-17 19:25:58.058744"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:58.060337"], ["updated_at", "2023-02-17 19:25:58.060337"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:58.061750"], ["updated_at", "2023-02-17 19:25:58.061750"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:58.063298"], ["updated_at", "2023-02-17 19:25:58.063298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:58.064640"], ["updated_at", "2023-02-17 19:25:58.064640"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:58.066485"], ["updated_at", "2023-02-17 19:25:58.066485"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:58.067738"], ["updated_at", "2023-02-17 19:25:58.067738"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:58.069212"], ["updated_at", "2023-02-17 19:25:58.069212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:58.070547"], ["updated_at", "2023-02-17 19:25:58.070547"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:58.071994"], ["updated_at", "2023-02-17 19:25:58.071994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:58.073111"], ["updated_at", "2023-02-17 19:25:58.073111"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:58.074513"], ["updated_at", "2023-02-17 19:25:58.074513"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:58.075970"], ["updated_at", "2023-02-17 19:25:58.075970"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:58.077587"], ["updated_at", "2023-02-17 19:25:58.077587"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:58.078851"], ["updated_at", "2023-02-17 19:25:58.078851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:58.079913"], ["updated_at", "2023-02-17 19:25:58.079913"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:58.092431"], ["updated_at", "2023-02-17 19:25:58.092431"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:58.093845"], ["updated_at", "2023-02-17 19:25:58.093845"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:58.094939"], ["updated_at", "2023-02-17 19:25:58.094939"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.095884"], ["updated_at", "2023-02-17 19:25:58.095884"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.096699"], ["updated_at", "2023-02-17 19:25:58.096699"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.097635"], ["updated_at", "2023-02-17 19:25:58.097635"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.098597"], ["updated_at", "2023-02-17 19:25:58.098597"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.099474"], ["updated_at", "2023-02-17 19:25:58.099474"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:58.100331"], ["updated_at", "2023-02-17 19:25:58.100331"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.101215"], ["updated_at", "2023-02-17 19:25:58.101215"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.102062"], ["updated_at", "2023-02-17 19:25:58.102062"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.102849"], ["updated_at", "2023-02-17 19:25:58.102849"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.103686"], ["updated_at", "2023-02-17 19:25:58.103686"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.104498"], ["updated_at", "2023-02-17 19:25:58.104498"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.105269"], ["updated_at", "2023-02-17 19:25:58.105269"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.106206"], ["updated_at", "2023-02-17 19:25:58.106206"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.107305"], ["updated_at", "2023-02-17 19:25:58.107305"]]
LikertScaleQuestion Create (0.8ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.108419"], ["updated_at", "2023-02-17 19:25:58.108419"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.110161"], ["updated_at", "2023-02-17 19:25:58.110161"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.111084"], ["updated_at", "2023-02-17 19:25:58.111084"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.111902"], ["updated_at", "2023-02-17 19:25:58.111902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:58.123951"], ["updated_at", "2023-02-17 19:25:58.123951"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:58.125296"], ["updated_at", "2023-02-17 19:25:58.125296"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:58.126233"], ["updated_at", "2023-02-17 19:25:58.126233"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.127143"], ["updated_at", "2023-02-17 19:25:58.127143"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.127951"], ["updated_at", "2023-02-17 19:25:58.127951"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.128741"], ["updated_at", "2023-02-17 19:25:58.128741"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.129610"], ["updated_at", "2023-02-17 19:25:58.129610"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.130371"], ["updated_at", "2023-02-17 19:25:58.130371"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:58.131275"], ["updated_at", "2023-02-17 19:25:58.131275"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.132433"], ["updated_at", "2023-02-17 19:25:58.132433"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.133407"], ["updated_at", "2023-02-17 19:25:58.133407"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.134331"], ["updated_at", "2023-02-17 19:25:58.134331"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.135411"], ["updated_at", "2023-02-17 19:25:58.135411"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.136312"], ["updated_at", "2023-02-17 19:25:58.136312"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.137529"], ["updated_at", "2023-02-17 19:25:58.137529"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.138651"], ["updated_at", "2023-02-17 19:25:58.138651"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.139711"], ["updated_at", "2023-02-17 19:25:58.139711"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.140534"], ["updated_at", "2023-02-17 19:25:58.140534"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.141355"], ["updated_at", "2023-02-17 19:25:58.141355"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.142114"], ["updated_at", "2023-02-17 19:25:58.142114"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.142907"], ["updated_at", "2023-02-17 19:25:58.142907"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.161789"], ["updated_at", "2023-02-17 19:25:58.161789"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.162976"], ["updated_at", "2023-02-17 19:25:58.162976"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.163981"], ["updated_at", "2023-02-17 19:25:58.163981"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.164906"], ["updated_at", "2023-02-17 19:25:58.164906"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.165916"], ["updated_at", "2023-02-17 19:25:58.165916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.166895"], ["updated_at", "2023-02-17 19:25:58.166895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.167943"], ["updated_at", "2023-02-17 19:25:58.167943"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.168782"], ["updated_at", "2023-02-17 19:25:58.168782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.169512"], ["updated_at", "2023-02-17 19:25:58.169512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.170557"], ["updated_at", "2023-02-17 19:25:58.170557"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.171661"], ["updated_at", "2023-02-17 19:25:58.171661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.172757"], ["updated_at", "2023-02-17 19:25:58.172757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.173672"], ["updated_at", "2023-02-17 19:25:58.173672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.174497"], ["updated_at", "2023-02-17 19:25:58.174497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.175290"], ["updated_at", "2023-02-17 19:25:58.175290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.176278"], ["updated_at", "2023-02-17 19:25:58.176278"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.197798"], ["updated_at", "2023-02-17 19:25:58.197798"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.199080"], ["updated_at", "2023-02-17 19:25:58.199080"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.200239"], ["updated_at", "2023-02-17 19:25:58.200239"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.201417"], ["updated_at", "2023-02-17 19:25:58.201417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.202455"], ["updated_at", "2023-02-17 19:25:58.202455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.203477"], ["updated_at", "2023-02-17 19:25:58.203477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.204503"], ["updated_at", "2023-02-17 19:25:58.204503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.205440"], ["updated_at", "2023-02-17 19:25:58.205440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.206252"], ["updated_at", "2023-02-17 19:25:58.206252"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.207084"], ["updated_at", "2023-02-17 19:25:58.207084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.208165"], ["updated_at", "2023-02-17 19:25:58.208165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.209210"], ["updated_at", "2023-02-17 19:25:58.209210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.210195"], ["updated_at", "2023-02-17 19:25:58.210195"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.211404"], ["updated_at", "2023-02-17 19:25:58.211404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.212504"], ["updated_at", "2023-02-17 19:25:58.212504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.213528"], ["updated_at", "2023-02-17 19:25:58.213528"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.237660"], ["updated_at", "2023-02-17 19:25:58.237660"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.239046"], ["updated_at", "2023-02-17 19:25:58.239046"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.240432"], ["updated_at", "2023-02-17 19:25:58.240432"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.241692"], ["updated_at", "2023-02-17 19:25:58.241692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.242872"], ["updated_at", "2023-02-17 19:25:58.242872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.244073"], ["updated_at", "2023-02-17 19:25:58.244073"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.245266"], ["updated_at", "2023-02-17 19:25:58.245266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.246519"], ["updated_at", "2023-02-17 19:25:58.246519"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.247720"], ["updated_at", "2023-02-17 19:25:58.247720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.248857"], ["updated_at", "2023-02-17 19:25:58.248857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.250096"], ["updated_at", "2023-02-17 19:25:58.250096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.251359"], ["updated_at", "2023-02-17 19:25:58.251359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.252477"], ["updated_at", "2023-02-17 19:25:58.252477"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.253704"], ["updated_at", "2023-02-17 19:25:58.253704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.255032"], ["updated_at", "2023-02-17 19:25:58.255032"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.256334"], ["updated_at", "2023-02-17 19:25:58.256334"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.282025"], ["updated_at", "2023-02-17 19:25:58.282025"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.283379"], ["updated_at", "2023-02-17 19:25:58.283379"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.284553"], ["updated_at", "2023-02-17 19:25:58.284553"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.285672"], ["updated_at", "2023-02-17 19:25:58.285672"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.286968"], ["updated_at", "2023-02-17 19:25:58.286968"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.288350"], ["updated_at", "2023-02-17 19:25:58.288350"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.289599"], ["updated_at", "2023-02-17 19:25:58.289599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.290899"], ["updated_at", "2023-02-17 19:25:58.290899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.292194"], ["updated_at", "2023-02-17 19:25:58.292194"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.293443"], ["updated_at", "2023-02-17 19:25:58.293443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.294628"], ["updated_at", "2023-02-17 19:25:58.294628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.295856"], ["updated_at", "2023-02-17 19:25:58.295856"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.297087"], ["updated_at", "2023-02-17 19:25:58.297087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.298289"], ["updated_at", "2023-02-17 19:25:58.298289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.299432"], ["updated_at", "2023-02-17 19:25:58.299432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.300727"], ["updated_at", "2023-02-17 19:25:58.300727"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.324599"], ["updated_at", "2023-02-17 19:25:58.324599"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.325851"], ["updated_at", "2023-02-17 19:25:58.325851"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.326914"], ["updated_at", "2023-02-17 19:25:58.326914"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.328037"], ["updated_at", "2023-02-17 19:25:58.328037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.329280"], ["updated_at", "2023-02-17 19:25:58.329280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.330469"], ["updated_at", "2023-02-17 19:25:58.330469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.331779"], ["updated_at", "2023-02-17 19:25:58.331779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.332888"], ["updated_at", "2023-02-17 19:25:58.332888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.333970"], ["updated_at", "2023-02-17 19:25:58.333970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.335027"], ["updated_at", "2023-02-17 19:25:58.335027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.336041"], ["updated_at", "2023-02-17 19:25:58.336041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.337310"], ["updated_at", "2023-02-17 19:25:58.337310"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.338556"], ["updated_at", "2023-02-17 19:25:58.338556"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.339627"], ["updated_at", "2023-02-17 19:25:58.339627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.340625"], ["updated_at", "2023-02-17 19:25:58.340625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.341770"], ["updated_at", "2023-02-17 19:25:58.341770"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.364234"], ["updated_at", "2023-02-17 19:25:58.364234"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.365444"], ["updated_at", "2023-02-17 19:25:58.365444"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.366443"], ["updated_at", "2023-02-17 19:25:58.366443"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.367555"], ["updated_at", "2023-02-17 19:25:58.367555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.368736"], ["updated_at", "2023-02-17 19:25:58.368736"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.369939"], ["updated_at", "2023-02-17 19:25:58.369939"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.371205"], ["updated_at", "2023-02-17 19:25:58.371205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.372467"], ["updated_at", "2023-02-17 19:25:58.372467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.373699"], ["updated_at", "2023-02-17 19:25:58.373699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.374723"], ["updated_at", "2023-02-17 19:25:58.374723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.375796"], ["updated_at", "2023-02-17 19:25:58.375796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.376745"], ["updated_at", "2023-02-17 19:25:58.376745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.377775"], ["updated_at", "2023-02-17 19:25:58.377775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.378703"], ["updated_at", "2023-02-17 19:25:58.378703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.379650"], ["updated_at", "2023-02-17 19:25:58.379650"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.380606"], ["updated_at", "2023-02-17 19:25:58.380606"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:25:58 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 16ms (Views: 11.6ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (1.9ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:58.408864"], ["updated_at", "2023-02-17 19:25:58.408864"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:58.412456"], ["updated_at", "2023-02-17 19:25:58.412456"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:58.416489"], ["updated_at", "2023-02-17 19:25:58.416489"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:58.417785"], ["updated_at", "2023-02-17 19:25:58.417785"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:58.420825"], ["updated_at", "2023-02-17 19:25:58.420825"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:58.422396"], ["updated_at", "2023-02-17 19:25:58.422396"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:58.424766"], ["updated_at", "2023-02-17 19:25:58.424766"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:58.426315"], ["updated_at", "2023-02-17 19:25:58.426315"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:58.428075"], ["updated_at", "2023-02-17 19:25:58.428075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:58.429488"], ["updated_at", "2023-02-17 19:25:58.429488"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:58.431016"], ["updated_at", "2023-02-17 19:25:58.431016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:58.432279"], ["updated_at", "2023-02-17 19:25:58.432279"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:58.433717"], ["updated_at", "2023-02-17 19:25:58.433717"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:58.434978"], ["updated_at", "2023-02-17 19:25:58.434978"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:58.436416"], ["updated_at", "2023-02-17 19:25:58.436416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:58.437709"], ["updated_at", "2023-02-17 19:25:58.437709"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:58.439602"], ["updated_at", "2023-02-17 19:25:58.439602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:58.440968"], ["updated_at", "2023-02-17 19:25:58.440968"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:58.442512"], ["updated_at", "2023-02-17 19:25:58.442512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:58.443879"], ["updated_at", "2023-02-17 19:25:58.443879"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:58.445420"], ["updated_at", "2023-02-17 19:25:58.445420"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:58.446719"], ["updated_at", "2023-02-17 19:25:58.446719"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:58.448167"], ["updated_at", "2023-02-17 19:25:58.448167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:58.449410"], ["updated_at", "2023-02-17 19:25:58.449410"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:58.450903"], ["updated_at", "2023-02-17 19:25:58.450903"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:58.452210"], ["updated_at", "2023-02-17 19:25:58.452210"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:58.453648"], ["updated_at", "2023-02-17 19:25:58.453648"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:58.455111"], ["updated_at", "2023-02-17 19:25:58.455111"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:58.456792"], ["updated_at", "2023-02-17 19:25:58.456792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:58.458027"], ["updated_at", "2023-02-17 19:25:58.458027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:58.459491"], ["updated_at", "2023-02-17 19:25:58.459491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:58.460847"], ["updated_at", "2023-02-17 19:25:58.460847"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:58.462428"], ["updated_at", "2023-02-17 19:25:58.462428"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:58.463762"], ["updated_at", "2023-02-17 19:25:58.463762"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:58.465159"], ["updated_at", "2023-02-17 19:25:58.465159"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:58.466371"], ["updated_at", "2023-02-17 19:25:58.466371"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:58.467836"], ["updated_at", "2023-02-17 19:25:58.467836"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:58.469133"], ["updated_at", "2023-02-17 19:25:58.469133"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:58.470633"], ["updated_at", "2023-02-17 19:25:58.470633"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:58.472358"], ["updated_at", "2023-02-17 19:25:58.472358"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:58.473873"], ["updated_at", "2023-02-17 19:25:58.473873"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:58.475127"], ["updated_at", "2023-02-17 19:25:58.475127"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:58.476612"], ["updated_at", "2023-02-17 19:25:58.476612"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.477877"], ["updated_at", "2023-02-17 19:25:58.477877"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:58.479326"], ["updated_at", "2023-02-17 19:25:58.479326"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:58.480586"], ["updated_at", "2023-02-17 19:25:58.480586"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:58.482089"], ["updated_at", "2023-02-17 19:25:58.482089"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:58.483428"], ["updated_at", "2023-02-17 19:25:58.483428"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:58.484947"], ["updated_at", "2023-02-17 19:25:58.484947"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:58.486137"], ["updated_at", "2023-02-17 19:25:58.486137"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:58.487566"], ["updated_at", "2023-02-17 19:25:58.487566"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:58.488857"], ["updated_at", "2023-02-17 19:25:58.488857"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:58.490245"], ["updated_at", "2023-02-17 19:25:58.490245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:58.491482"], ["updated_at", "2023-02-17 19:25:58.491482"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:58.493040"], ["updated_at", "2023-02-17 19:25:58.493040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:58.494283"], ["updated_at", "2023-02-17 19:25:58.494283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:58.495696"], ["updated_at", "2023-02-17 19:25:58.495696"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:58.496996"], ["updated_at", "2023-02-17 19:25:58.496996"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:58.498386"], ["updated_at", "2023-02-17 19:25:58.498386"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:58.499538"], ["updated_at", "2023-02-17 19:25:58.499538"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:58.501012"], ["updated_at", "2023-02-17 19:25:58.501012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:58.502319"], ["updated_at", "2023-02-17 19:25:58.502319"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:58.503793"], ["updated_at", "2023-02-17 19:25:58.503793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.505117"], ["updated_at", "2023-02-17 19:25:58.505117"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:58.506529"], ["updated_at", "2023-02-17 19:25:58.506529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:58.507711"], ["updated_at", "2023-02-17 19:25:58.507711"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:58.509169"], ["updated_at", "2023-02-17 19:25:58.509169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:58.510391"], ["updated_at", "2023-02-17 19:25:58.510391"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:58.511818"], ["updated_at", "2023-02-17 19:25:58.511818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.513161"], ["updated_at", "2023-02-17 19:25:58.513161"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:58.514600"], ["updated_at", "2023-02-17 19:25:58.514600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:58.515873"], ["updated_at", "2023-02-17 19:25:58.515873"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:58.517487"], ["updated_at", "2023-02-17 19:25:58.517487"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:58.518733"], ["updated_at", "2023-02-17 19:25:58.518733"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:58.520246"], ["updated_at", "2023-02-17 19:25:58.520246"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:58.521589"], ["updated_at", "2023-02-17 19:25:58.521589"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:58.523177"], ["updated_at", "2023-02-17 19:25:58.523177"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:58.524690"], ["updated_at", "2023-02-17 19:25:58.524690"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:58.526351"], ["updated_at", "2023-02-17 19:25:58.526351"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:58.527861"], ["updated_at", "2023-02-17 19:25:58.527861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:58.529601"], ["updated_at", "2023-02-17 19:25:58.529601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.530974"], ["updated_at", "2023-02-17 19:25:58.530974"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:58.532425"], ["updated_at", "2023-02-17 19:25:58.532425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:58.533835"], ["updated_at", "2023-02-17 19:25:58.533835"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:58.535370"], ["updated_at", "2023-02-17 19:25:58.535370"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:58.536574"], ["updated_at", "2023-02-17 19:25:58.536574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:58.538145"], ["updated_at", "2023-02-17 19:25:58.538145"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:58.539566"], ["updated_at", "2023-02-17 19:25:58.539566"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:58.541035"], ["updated_at", "2023-02-17 19:25:58.541035"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:58.542443"], ["updated_at", "2023-02-17 19:25:58.542443"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:58.544162"], ["updated_at", "2023-02-17 19:25:58.544162"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:58.545784"], ["updated_at", "2023-02-17 19:25:58.545784"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:58.547382"], ["updated_at", "2023-02-17 19:25:58.547382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:58.548612"], ["updated_at", "2023-02-17 19:25:58.548612"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:58.550078"], ["updated_at", "2023-02-17 19:25:58.550078"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:58.551253"], ["updated_at", "2023-02-17 19:25:58.551253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:58.552504"], ["updated_at", "2023-02-17 19:25:58.552504"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:58.554056"], ["updated_at", "2023-02-17 19:25:58.554056"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:58.555800"], ["updated_at", "2023-02-17 19:25:58.555800"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:58.557206"], ["updated_at", "2023-02-17 19:25:58.557206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:58.558341"], ["updated_at", "2023-02-17 19:25:58.558341"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:58.570431"], ["updated_at", "2023-02-17 19:25:58.570431"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:58.572013"], ["updated_at", "2023-02-17 19:25:58.572013"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:58.573250"], ["updated_at", "2023-02-17 19:25:58.573250"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.574362"], ["updated_at", "2023-02-17 19:25:58.574362"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.575334"], ["updated_at", "2023-02-17 19:25:58.575334"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.576197"], ["updated_at", "2023-02-17 19:25:58.576197"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.577017"], ["updated_at", "2023-02-17 19:25:58.577017"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.578049"], ["updated_at", "2023-02-17 19:25:58.578049"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:58.579083"], ["updated_at", "2023-02-17 19:25:58.579083"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.580084"], ["updated_at", "2023-02-17 19:25:58.580084"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.580967"], ["updated_at", "2023-02-17 19:25:58.580967"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.581767"], ["updated_at", "2023-02-17 19:25:58.581767"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.582557"], ["updated_at", "2023-02-17 19:25:58.582557"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.583417"], ["updated_at", "2023-02-17 19:25:58.583417"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.584236"], ["updated_at", "2023-02-17 19:25:58.584236"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.584987"], ["updated_at", "2023-02-17 19:25:58.584987"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.585744"], ["updated_at", "2023-02-17 19:25:58.585744"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.586621"], ["updated_at", "2023-02-17 19:25:58.586621"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.587697"], ["updated_at", "2023-02-17 19:25:58.587697"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.588668"], ["updated_at", "2023-02-17 19:25:58.588668"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.589677"], ["updated_at", "2023-02-17 19:25:58.589677"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:58.601799"], ["updated_at", "2023-02-17 19:25:58.601799"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:58.603115"], ["updated_at", "2023-02-17 19:25:58.603115"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:58.604338"], ["updated_at", "2023-02-17 19:25:58.604338"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.605348"], ["updated_at", "2023-02-17 19:25:58.605348"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.606099"], ["updated_at", "2023-02-17 19:25:58.606099"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.606795"], ["updated_at", "2023-02-17 19:25:58.606795"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.607485"], ["updated_at", "2023-02-17 19:25:58.607485"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.608185"], ["updated_at", "2023-02-17 19:25:58.608185"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:58.608982"], ["updated_at", "2023-02-17 19:25:58.608982"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.609853"], ["updated_at", "2023-02-17 19:25:58.609853"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.610852"], ["updated_at", "2023-02-17 19:25:58.610852"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.611972"], ["updated_at", "2023-02-17 19:25:58.611972"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.612885"], ["updated_at", "2023-02-17 19:25:58.612885"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.613700"], ["updated_at", "2023-02-17 19:25:58.613700"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.614453"], ["updated_at", "2023-02-17 19:25:58.614453"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.615216"], ["updated_at", "2023-02-17 19:25:58.615216"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.615970"], ["updated_at", "2023-02-17 19:25:58.615970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.616817"], ["updated_at", "2023-02-17 19:25:58.616817"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.617630"], ["updated_at", "2023-02-17 19:25:58.617630"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.618422"], ["updated_at", "2023-02-17 19:25:58.618422"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.619384"], ["updated_at", "2023-02-17 19:25:58.619384"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.635850"], ["updated_at", "2023-02-17 19:25:58.635850"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.636983"], ["updated_at", "2023-02-17 19:25:58.636983"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.637900"], ["updated_at", "2023-02-17 19:25:58.637900"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.638674"], ["updated_at", "2023-02-17 19:25:58.638674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.639460"], ["updated_at", "2023-02-17 19:25:58.639460"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.640266"], ["updated_at", "2023-02-17 19:25:58.640266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.641004"], ["updated_at", "2023-02-17 19:25:58.641004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.641810"], ["updated_at", "2023-02-17 19:25:58.641810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.642606"], ["updated_at", "2023-02-17 19:25:58.642606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.643377"], ["updated_at", "2023-02-17 19:25:58.643377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.644112"], ["updated_at", "2023-02-17 19:25:58.644112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.644807"], ["updated_at", "2023-02-17 19:25:58.644807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.645560"], ["updated_at", "2023-02-17 19:25:58.645560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.646304"], ["updated_at", "2023-02-17 19:25:58.646304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.647020"], ["updated_at", "2023-02-17 19:25:58.647020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:58.647736"], ["updated_at", "2023-02-17 19:25:58.647736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.663607"], ["updated_at", "2023-02-17 19:25:58.663607"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.664639"], ["updated_at", "2023-02-17 19:25:58.664639"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.665450"], ["updated_at", "2023-02-17 19:25:58.665450"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.666200"], ["updated_at", "2023-02-17 19:25:58.666200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.667033"], ["updated_at", "2023-02-17 19:25:58.667033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.667785"], ["updated_at", "2023-02-17 19:25:58.667785"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.668509"], ["updated_at", "2023-02-17 19:25:58.668509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.669238"], ["updated_at", "2023-02-17 19:25:58.669238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.669958"], ["updated_at", "2023-02-17 19:25:58.669958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.670735"], ["updated_at", "2023-02-17 19:25:58.670735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.671488"], ["updated_at", "2023-02-17 19:25:58.671488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.672195"], ["updated_at", "2023-02-17 19:25:58.672195"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.672949"], ["updated_at", "2023-02-17 19:25:58.672949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.673693"], ["updated_at", "2023-02-17 19:25:58.673693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.674490"], ["updated_at", "2023-02-17 19:25:58.674490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:58.675299"], ["updated_at", "2023-02-17 19:25:58.675299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.691419"], ["updated_at", "2023-02-17 19:25:58.691419"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.692480"], ["updated_at", "2023-02-17 19:25:58.692480"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.693305"], ["updated_at", "2023-02-17 19:25:58.693305"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.694040"], ["updated_at", "2023-02-17 19:25:58.694040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.694844"], ["updated_at", "2023-02-17 19:25:58.694844"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.695625"], ["updated_at", "2023-02-17 19:25:58.695625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.696381"], ["updated_at", "2023-02-17 19:25:58.696381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.697137"], ["updated_at", "2023-02-17 19:25:58.697137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.697902"], ["updated_at", "2023-02-17 19:25:58.697902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.698627"], ["updated_at", "2023-02-17 19:25:58.698627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.699374"], ["updated_at", "2023-02-17 19:25:58.699374"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.700140"], ["updated_at", "2023-02-17 19:25:58.700140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.700887"], ["updated_at", "2023-02-17 19:25:58.700887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.701659"], ["updated_at", "2023-02-17 19:25:58.701659"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.702446"], ["updated_at", "2023-02-17 19:25:58.702446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:58.703283"], ["updated_at", "2023-02-17 19:25:58.703283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.725004"], ["updated_at", "2023-02-17 19:25:58.725004"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.726000"], ["updated_at", "2023-02-17 19:25:58.726000"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.726771"], ["updated_at", "2023-02-17 19:25:58.726771"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.727503"], ["updated_at", "2023-02-17 19:25:58.727503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.728251"], ["updated_at", "2023-02-17 19:25:58.728251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.728976"], ["updated_at", "2023-02-17 19:25:58.728976"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.729688"], ["updated_at", "2023-02-17 19:25:58.729688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.730378"], ["updated_at", "2023-02-17 19:25:58.730378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.731093"], ["updated_at", "2023-02-17 19:25:58.731093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.731813"], ["updated_at", "2023-02-17 19:25:58.731813"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.732517"], ["updated_at", "2023-02-17 19:25:58.732517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.733219"], ["updated_at", "2023-02-17 19:25:58.733219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.733936"], ["updated_at", "2023-02-17 19:25:58.733936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.734625"], ["updated_at", "2023-02-17 19:25:58.734625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.735327"], ["updated_at", "2023-02-17 19:25:58.735327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:58.736016"], ["updated_at", "2023-02-17 19:25:58.736016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.751240"], ["updated_at", "2023-02-17 19:25:58.751240"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.752214"], ["updated_at", "2023-02-17 19:25:58.752214"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.753020"], ["updated_at", "2023-02-17 19:25:58.753020"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.753749"], ["updated_at", "2023-02-17 19:25:58.753749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.754508"], ["updated_at", "2023-02-17 19:25:58.754508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.755248"], ["updated_at", "2023-02-17 19:25:58.755248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.755949"], ["updated_at", "2023-02-17 19:25:58.755949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.756636"], ["updated_at", "2023-02-17 19:25:58.756636"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.757347"], ["updated_at", "2023-02-17 19:25:58.757347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.758047"], ["updated_at", "2023-02-17 19:25:58.758047"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.758735"], ["updated_at", "2023-02-17 19:25:58.758735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.759434"], ["updated_at", "2023-02-17 19:25:58.759434"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.760105"], ["updated_at", "2023-02-17 19:25:58.760105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.760818"], ["updated_at", "2023-02-17 19:25:58.760818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.761537"], ["updated_at", "2023-02-17 19:25:58.761537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:58.762252"], ["updated_at", "2023-02-17 19:25:58.762252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:58.777829"], ["updated_at", "2023-02-17 19:25:58.777829"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:58.778828"], ["updated_at", "2023-02-17 19:25:58.778828"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.779593"], ["updated_at", "2023-02-17 19:25:58.779593"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.780284"], ["updated_at", "2023-02-17 19:25:58.780284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.781071"], ["updated_at", "2023-02-17 19:25:58.781071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.781837"], ["updated_at", "2023-02-17 19:25:58.781837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.782570"], ["updated_at", "2023-02-17 19:25:58.782570"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.783323"], ["updated_at", "2023-02-17 19:25:58.783323"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.784044"], ["updated_at", "2023-02-17 19:25:58.784044"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.784759"], ["updated_at", "2023-02-17 19:25:58.784759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.785544"], ["updated_at", "2023-02-17 19:25:58.785544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.786274"], ["updated_at", "2023-02-17 19:25:58.786274"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.786970"], ["updated_at", "2023-02-17 19:25:58.786970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.787686"], ["updated_at", "2023-02-17 19:25:58.787686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.788374"], ["updated_at", "2023-02-17 19:25:58.788374"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:58.789073"], ["updated_at", "2023-02-17 19:25:58.789073"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:25:58 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:58.806615"], ["updated_at", "2023-02-17 19:25:58.806615"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:58.808076"], ["updated_at", "2023-02-17 19:25:58.808076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:58.810999"], ["updated_at", "2023-02-17 19:25:58.810999"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:58.812195"], ["updated_at", "2023-02-17 19:25:58.812195"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:58.814897"], ["updated_at", "2023-02-17 19:25:58.814897"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:58.816061"], ["updated_at", "2023-02-17 19:25:58.816061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:58.818152"], ["updated_at", "2023-02-17 19:25:58.818152"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:58.819539"], ["updated_at", "2023-02-17 19:25:58.819539"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:58.821097"], ["updated_at", "2023-02-17 19:25:58.821097"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:58.822411"], ["updated_at", "2023-02-17 19:25:58.822411"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:58.823869"], ["updated_at", "2023-02-17 19:25:58.823869"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:58.825127"], ["updated_at", "2023-02-17 19:25:58.825127"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:58.826544"], ["updated_at", "2023-02-17 19:25:58.826544"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:58.827892"], ["updated_at", "2023-02-17 19:25:58.827892"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:58.829351"], ["updated_at", "2023-02-17 19:25:58.829351"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:58.830555"], ["updated_at", "2023-02-17 19:25:58.830555"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:58.832258"], ["updated_at", "2023-02-17 19:25:58.832258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:58.833511"], ["updated_at", "2023-02-17 19:25:58.833511"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:58.834877"], ["updated_at", "2023-02-17 19:25:58.834877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:58.836053"], ["updated_at", "2023-02-17 19:25:58.836053"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:58.837423"], ["updated_at", "2023-02-17 19:25:58.837423"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:58.838592"], ["updated_at", "2023-02-17 19:25:58.838592"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:58.839922"], ["updated_at", "2023-02-17 19:25:58.839922"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:58.841109"], ["updated_at", "2023-02-17 19:25:58.841109"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:58.842487"], ["updated_at", "2023-02-17 19:25:58.842487"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:58.843729"], ["updated_at", "2023-02-17 19:25:58.843729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:58.845136"], ["updated_at", "2023-02-17 19:25:58.845136"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:58.846326"], ["updated_at", "2023-02-17 19:25:58.846326"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:58.847671"], ["updated_at", "2023-02-17 19:25:58.847671"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:58.848822"], ["updated_at", "2023-02-17 19:25:58.848822"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:58.850193"], ["updated_at", "2023-02-17 19:25:58.850193"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:58.851399"], ["updated_at", "2023-02-17 19:25:58.851399"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:58.852743"], ["updated_at", "2023-02-17 19:25:58.852743"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:58.853951"], ["updated_at", "2023-02-17 19:25:58.853951"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:58.855315"], ["updated_at", "2023-02-17 19:25:58.855315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:58.856472"], ["updated_at", "2023-02-17 19:25:58.856472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:58.857813"], ["updated_at", "2023-02-17 19:25:58.857813"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:58.858983"], ["updated_at", "2023-02-17 19:25:58.858983"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:58.860375"], ["updated_at", "2023-02-17 19:25:58.860375"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:58.861582"], ["updated_at", "2023-02-17 19:25:58.861582"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:58.862937"], ["updated_at", "2023-02-17 19:25:58.862937"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:58.864166"], ["updated_at", "2023-02-17 19:25:58.864166"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:58.865561"], ["updated_at", "2023-02-17 19:25:58.865561"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.866733"], ["updated_at", "2023-02-17 19:25:58.866733"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:58.868064"], ["updated_at", "2023-02-17 19:25:58.868064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:58.869264"], ["updated_at", "2023-02-17 19:25:58.869264"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:58.870614"], ["updated_at", "2023-02-17 19:25:58.870614"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:58.871772"], ["updated_at", "2023-02-17 19:25:58.871772"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:58.873157"], ["updated_at", "2023-02-17 19:25:58.873157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:58.874391"], ["updated_at", "2023-02-17 19:25:58.874391"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:58.875854"], ["updated_at", "2023-02-17 19:25:58.875854"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:58.877104"], ["updated_at", "2023-02-17 19:25:58.877104"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:58.878595"], ["updated_at", "2023-02-17 19:25:58.878595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:58.879829"], ["updated_at", "2023-02-17 19:25:58.879829"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:58.881238"], ["updated_at", "2023-02-17 19:25:58.881238"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:58.882474"], ["updated_at", "2023-02-17 19:25:58.882474"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:58.884025"], ["updated_at", "2023-02-17 19:25:58.884025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:58.885343"], ["updated_at", "2023-02-17 19:25:58.885343"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:58.886851"], ["updated_at", "2023-02-17 19:25:58.886851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:58.888036"], ["updated_at", "2023-02-17 19:25:58.888036"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:58.889793"], ["updated_at", "2023-02-17 19:25:58.889793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:58.891209"], ["updated_at", "2023-02-17 19:25:58.891209"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:58.892647"], ["updated_at", "2023-02-17 19:25:58.892647"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.893942"], ["updated_at", "2023-02-17 19:25:58.893942"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:58.895387"], ["updated_at", "2023-02-17 19:25:58.895387"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:58.896571"], ["updated_at", "2023-02-17 19:25:58.896571"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:58.897927"], ["updated_at", "2023-02-17 19:25:58.897927"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:58.899107"], ["updated_at", "2023-02-17 19:25:58.899107"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:58.900444"], ["updated_at", "2023-02-17 19:25:58.900444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.901614"], ["updated_at", "2023-02-17 19:25:58.901614"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:58.903092"], ["updated_at", "2023-02-17 19:25:58.903092"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:58.904386"], ["updated_at", "2023-02-17 19:25:58.904386"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:58.905769"], ["updated_at", "2023-02-17 19:25:58.905769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:58.906938"], ["updated_at", "2023-02-17 19:25:58.906938"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:58.908299"], ["updated_at", "2023-02-17 19:25:58.908299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:58.909524"], ["updated_at", "2023-02-17 19:25:58.909524"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:58.910890"], ["updated_at", "2023-02-17 19:25:58.910890"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:58.912059"], ["updated_at", "2023-02-17 19:25:58.912059"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:58.913420"], ["updated_at", "2023-02-17 19:25:58.913420"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:58.914623"], ["updated_at", "2023-02-17 19:25:58.914623"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:58.915996"], ["updated_at", "2023-02-17 19:25:58.915996"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:58.917209"], ["updated_at", "2023-02-17 19:25:58.917209"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:58.918581"], ["updated_at", "2023-02-17 19:25:58.918581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:58.919944"], ["updated_at", "2023-02-17 19:25:58.919944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:58.921373"], ["updated_at", "2023-02-17 19:25:58.921373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:58.922578"], ["updated_at", "2023-02-17 19:25:58.922578"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:58.923955"], ["updated_at", "2023-02-17 19:25:58.923955"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:58.925189"], ["updated_at", "2023-02-17 19:25:58.925189"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:58.926649"], ["updated_at", "2023-02-17 19:25:58.926649"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:58.927862"], ["updated_at", "2023-02-17 19:25:58.927862"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:58.929210"], ["updated_at", "2023-02-17 19:25:58.929210"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:58.930401"], ["updated_at", "2023-02-17 19:25:58.930401"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:58.931735"], ["updated_at", "2023-02-17 19:25:58.931735"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:58.932893"], ["updated_at", "2023-02-17 19:25:58.932893"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:58.934287"], ["updated_at", "2023-02-17 19:25:58.934287"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:58.935367"], ["updated_at", "2023-02-17 19:25:58.935367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:58.936581"], ["updated_at", "2023-02-17 19:25:58.936581"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:58.937984"], ["updated_at", "2023-02-17 19:25:58.937984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:58.939443"], ["updated_at", "2023-02-17 19:25:58.939443"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:58.940570"], ["updated_at", "2023-02-17 19:25:58.940570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:58.941599"], ["updated_at", "2023-02-17 19:25:58.941599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:58.952733"], ["updated_at", "2023-02-17 19:25:58.952733"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:58.954031"], ["updated_at", "2023-02-17 19:25:58.954031"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:58.955018"], ["updated_at", "2023-02-17 19:25:58.955018"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.955843"], ["updated_at", "2023-02-17 19:25:58.955843"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.956619"], ["updated_at", "2023-02-17 19:25:58.956619"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.957334"], ["updated_at", "2023-02-17 19:25:58.957334"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.957999"], ["updated_at", "2023-02-17 19:25:58.957999"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:58.958695"], ["updated_at", "2023-02-17 19:25:58.958695"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:58.959441"], ["updated_at", "2023-02-17 19:25:58.959441"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.960259"], ["updated_at", "2023-02-17 19:25:58.960259"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.961091"], ["updated_at", "2023-02-17 19:25:58.961091"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.961883"], ["updated_at", "2023-02-17 19:25:58.961883"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.962648"], ["updated_at", "2023-02-17 19:25:58.962648"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.963453"], ["updated_at", "2023-02-17 19:25:58.963453"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.964218"], ["updated_at", "2023-02-17 19:25:58.964218"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.964982"], ["updated_at", "2023-02-17 19:25:58.964982"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.965744"], ["updated_at", "2023-02-17 19:25:58.965744"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.966494"], ["updated_at", "2023-02-17 19:25:58.966494"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.967207"], ["updated_at", "2023-02-17 19:25:58.967207"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.967947"], ["updated_at", "2023-02-17 19:25:58.967947"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:58.968709"], ["updated_at", "2023-02-17 19:25:58.968709"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:58.980260"], ["updated_at", "2023-02-17 19:25:58.980260"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:58.981515"], ["updated_at", "2023-02-17 19:25:58.981515"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:58.982442"], ["updated_at", "2023-02-17 19:25:58.982442"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.983347"], ["updated_at", "2023-02-17 19:25:58.983347"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.984211"], ["updated_at", "2023-02-17 19:25:58.984211"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.984979"], ["updated_at", "2023-02-17 19:25:58.984979"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.985672"], ["updated_at", "2023-02-17 19:25:58.985672"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:58.986392"], ["updated_at", "2023-02-17 19:25:58.986392"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:58.987131"], ["updated_at", "2023-02-17 19:25:58.987131"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.987970"], ["updated_at", "2023-02-17 19:25:58.987970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.988768"], ["updated_at", "2023-02-17 19:25:58.988768"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.989522"], ["updated_at", "2023-02-17 19:25:58.989522"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.990306"], ["updated_at", "2023-02-17 19:25:58.990306"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.991044"], ["updated_at", "2023-02-17 19:25:58.991044"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.991785"], ["updated_at", "2023-02-17 19:25:58.991785"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.992535"], ["updated_at", "2023-02-17 19:25:58.992535"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.993318"], ["updated_at", "2023-02-17 19:25:58.993318"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.994198"], ["updated_at", "2023-02-17 19:25:58.994198"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.995023"], ["updated_at", "2023-02-17 19:25:58.995023"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.995809"], ["updated_at", "2023-02-17 19:25:58.995809"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:58.996569"], ["updated_at", "2023-02-17 19:25:58.996569"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.012340"], ["updated_at", "2023-02-17 19:25:59.012340"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.013482"], ["updated_at", "2023-02-17 19:25:59.013482"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.014350"], ["updated_at", "2023-02-17 19:25:59.014350"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.015090"], ["updated_at", "2023-02-17 19:25:59.015090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.015861"], ["updated_at", "2023-02-17 19:25:59.015861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.016668"], ["updated_at", "2023-02-17 19:25:59.016668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.017404"], ["updated_at", "2023-02-17 19:25:59.017404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.018104"], ["updated_at", "2023-02-17 19:25:59.018104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.018824"], ["updated_at", "2023-02-17 19:25:59.018824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.019509"], ["updated_at", "2023-02-17 19:25:59.019509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.020245"], ["updated_at", "2023-02-17 19:25:59.020245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.021324"], ["updated_at", "2023-02-17 19:25:59.021324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.022306"], ["updated_at", "2023-02-17 19:25:59.022306"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.023072"], ["updated_at", "2023-02-17 19:25:59.023072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.023846"], ["updated_at", "2023-02-17 19:25:59.023846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.024609"], ["updated_at", "2023-02-17 19:25:59.024609"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.041295"], ["updated_at", "2023-02-17 19:25:59.041295"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.042324"], ["updated_at", "2023-02-17 19:25:59.042324"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.043139"], ["updated_at", "2023-02-17 19:25:59.043139"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.043992"], ["updated_at", "2023-02-17 19:25:59.043992"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.044909"], ["updated_at", "2023-02-17 19:25:59.044909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.045665"], ["updated_at", "2023-02-17 19:25:59.045665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.046385"], ["updated_at", "2023-02-17 19:25:59.046385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.047080"], ["updated_at", "2023-02-17 19:25:59.047080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.047786"], ["updated_at", "2023-02-17 19:25:59.047786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.048471"], ["updated_at", "2023-02-17 19:25:59.048471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.049179"], ["updated_at", "2023-02-17 19:25:59.049179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.049869"], ["updated_at", "2023-02-17 19:25:59.049869"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.050578"], ["updated_at", "2023-02-17 19:25:59.050578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.051454"], ["updated_at", "2023-02-17 19:25:59.051454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.052503"], ["updated_at", "2023-02-17 19:25:59.052503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.053337"], ["updated_at", "2023-02-17 19:25:59.053337"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.068837"], ["updated_at", "2023-02-17 19:25:59.068837"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.069877"], ["updated_at", "2023-02-17 19:25:59.069877"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.070655"], ["updated_at", "2023-02-17 19:25:59.070655"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.071384"], ["updated_at", "2023-02-17 19:25:59.071384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.072142"], ["updated_at", "2023-02-17 19:25:59.072142"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.072879"], ["updated_at", "2023-02-17 19:25:59.072879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.073602"], ["updated_at", "2023-02-17 19:25:59.073602"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.074326"], ["updated_at", "2023-02-17 19:25:59.074326"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.075036"], ["updated_at", "2023-02-17 19:25:59.075036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.075778"], ["updated_at", "2023-02-17 19:25:59.075778"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.076511"], ["updated_at", "2023-02-17 19:25:59.076511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.077249"], ["updated_at", "2023-02-17 19:25:59.077249"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.077982"], ["updated_at", "2023-02-17 19:25:59.077982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.078723"], ["updated_at", "2023-02-17 19:25:59.078723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.079444"], ["updated_at", "2023-02-17 19:25:59.079444"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.080164"], ["updated_at", "2023-02-17 19:25:59.080164"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.095657"], ["updated_at", "2023-02-17 19:25:59.095657"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.096672"], ["updated_at", "2023-02-17 19:25:59.096672"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.097480"], ["updated_at", "2023-02-17 19:25:59.097480"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.098184"], ["updated_at", "2023-02-17 19:25:59.098184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.098955"], ["updated_at", "2023-02-17 19:25:59.098955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.099680"], ["updated_at", "2023-02-17 19:25:59.099680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.100412"], ["updated_at", "2023-02-17 19:25:59.100412"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.101119"], ["updated_at", "2023-02-17 19:25:59.101119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.101818"], ["updated_at", "2023-02-17 19:25:59.101818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.102519"], ["updated_at", "2023-02-17 19:25:59.102519"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.103210"], ["updated_at", "2023-02-17 19:25:59.103210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.103906"], ["updated_at", "2023-02-17 19:25:59.103906"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.104660"], ["updated_at", "2023-02-17 19:25:59.104660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.105405"], ["updated_at", "2023-02-17 19:25:59.105405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.106094"], ["updated_at", "2023-02-17 19:25:59.106094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.106802"], ["updated_at", "2023-02-17 19:25:59.106802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.122038"], ["updated_at", "2023-02-17 19:25:59.122038"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.123219"], ["updated_at", "2023-02-17 19:25:59.123219"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.124215"], ["updated_at", "2023-02-17 19:25:59.124215"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.125170"], ["updated_at", "2023-02-17 19:25:59.125170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.126173"], ["updated_at", "2023-02-17 19:25:59.126173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.127110"], ["updated_at", "2023-02-17 19:25:59.127110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.128040"], ["updated_at", "2023-02-17 19:25:59.128040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.128965"], ["updated_at", "2023-02-17 19:25:59.128965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.129901"], ["updated_at", "2023-02-17 19:25:59.129901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.130827"], ["updated_at", "2023-02-17 19:25:59.130827"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.131732"], ["updated_at", "2023-02-17 19:25:59.131732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.132656"], ["updated_at", "2023-02-17 19:25:59.132656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.133720"], ["updated_at", "2023-02-17 19:25:59.133720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.134615"], ["updated_at", "2023-02-17 19:25:59.134615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.135376"], ["updated_at", "2023-02-17 19:25:59.135376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.136139"], ["updated_at", "2023-02-17 19:25:59.136139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.156013"], ["updated_at", "2023-02-17 19:25:59.156013"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.157217"], ["updated_at", "2023-02-17 19:25:59.157217"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.158155"], ["updated_at", "2023-02-17 19:25:59.158155"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.159018"], ["updated_at", "2023-02-17 19:25:59.159018"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.159952"], ["updated_at", "2023-02-17 19:25:59.159952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.161160"], ["updated_at", "2023-02-17 19:25:59.161160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.162448"], ["updated_at", "2023-02-17 19:25:59.162448"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.163765"], ["updated_at", "2023-02-17 19:25:59.163765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.164919"], ["updated_at", "2023-02-17 19:25:59.164919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.165841"], ["updated_at", "2023-02-17 19:25:59.165841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.166731"], ["updated_at", "2023-02-17 19:25:59.166731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.167594"], ["updated_at", "2023-02-17 19:25:59.167594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.168388"], ["updated_at", "2023-02-17 19:25:59.168388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.169389"], ["updated_at", "2023-02-17 19:25:59.169389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.170410"], ["updated_at", "2023-02-17 19:25:59.170410"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.171286"], ["updated_at", "2023-02-17 19:25:59.171286"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:25:59 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (2.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:59.182116"], ["updated_at", "2023-02-17 19:25:59.182116"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:59.186076"], ["updated_at", "2023-02-17 19:25:59.186076"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:59.191067"], ["updated_at", "2023-02-17 19:25:59.191067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:59.192534"], ["updated_at", "2023-02-17 19:25:59.192534"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:59.196601"], ["updated_at", "2023-02-17 19:25:59.196601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:59.197841"], ["updated_at", "2023-02-17 19:25:59.197841"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:59.199934"], ["updated_at", "2023-02-17 19:25:59.199934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:59.201438"], ["updated_at", "2023-02-17 19:25:59.201438"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:59.203166"], ["updated_at", "2023-02-17 19:25:59.203166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:59.204603"], ["updated_at", "2023-02-17 19:25:59.204603"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:59.206141"], ["updated_at", "2023-02-17 19:25:59.206141"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:59.207367"], ["updated_at", "2023-02-17 19:25:59.207367"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:59.208762"], ["updated_at", "2023-02-17 19:25:59.208762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:59.209983"], ["updated_at", "2023-02-17 19:25:59.209983"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:59.211726"], ["updated_at", "2023-02-17 19:25:59.211726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:59.213017"], ["updated_at", "2023-02-17 19:25:59.213017"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:59.214418"], ["updated_at", "2023-02-17 19:25:59.214418"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:59.215584"], ["updated_at", "2023-02-17 19:25:59.215584"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:59.216945"], ["updated_at", "2023-02-17 19:25:59.216945"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:59.218137"], ["updated_at", "2023-02-17 19:25:59.218137"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:59.219536"], ["updated_at", "2023-02-17 19:25:59.219536"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:59.220995"], ["updated_at", "2023-02-17 19:25:59.220995"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:59.222503"], ["updated_at", "2023-02-17 19:25:59.222503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:59.223701"], ["updated_at", "2023-02-17 19:25:59.223701"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:59.225109"], ["updated_at", "2023-02-17 19:25:59.225109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:59.226297"], ["updated_at", "2023-02-17 19:25:59.226297"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:59.227746"], ["updated_at", "2023-02-17 19:25:59.227746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:59.228985"], ["updated_at", "2023-02-17 19:25:59.228985"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:59.230451"], ["updated_at", "2023-02-17 19:25:59.230451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:59.231783"], ["updated_at", "2023-02-17 19:25:59.231783"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:59.233266"], ["updated_at", "2023-02-17 19:25:59.233266"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:59.234489"], ["updated_at", "2023-02-17 19:25:59.234489"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:59.236036"], ["updated_at", "2023-02-17 19:25:59.236036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:59.237376"], ["updated_at", "2023-02-17 19:25:59.237376"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:59.238801"], ["updated_at", "2023-02-17 19:25:59.238801"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:59.240000"], ["updated_at", "2023-02-17 19:25:59.240000"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:59.241436"], ["updated_at", "2023-02-17 19:25:59.241436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:59.242660"], ["updated_at", "2023-02-17 19:25:59.242660"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:59.244090"], ["updated_at", "2023-02-17 19:25:59.244090"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:59.245343"], ["updated_at", "2023-02-17 19:25:59.245343"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:59.246766"], ["updated_at", "2023-02-17 19:25:59.246766"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:59.247921"], ["updated_at", "2023-02-17 19:25:59.247921"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:59.249311"], ["updated_at", "2023-02-17 19:25:59.249311"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:59.250490"], ["updated_at", "2023-02-17 19:25:59.250490"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:59.251931"], ["updated_at", "2023-02-17 19:25:59.251931"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:59.253247"], ["updated_at", "2023-02-17 19:25:59.253247"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:59.254786"], ["updated_at", "2023-02-17 19:25:59.254786"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:59.256036"], ["updated_at", "2023-02-17 19:25:59.256036"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:59.257439"], ["updated_at", "2023-02-17 19:25:59.257439"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:59.258665"], ["updated_at", "2023-02-17 19:25:59.258665"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:59.260012"], ["updated_at", "2023-02-17 19:25:59.260012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:59.261345"], ["updated_at", "2023-02-17 19:25:59.261345"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:59.262738"], ["updated_at", "2023-02-17 19:25:59.262738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:59.263946"], ["updated_at", "2023-02-17 19:25:59.263946"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:59.265389"], ["updated_at", "2023-02-17 19:25:59.265389"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:59.266609"], ["updated_at", "2023-02-17 19:25:59.266609"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:59.268048"], ["updated_at", "2023-02-17 19:25:59.268048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:59.269270"], ["updated_at", "2023-02-17 19:25:59.269270"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:59.270740"], ["updated_at", "2023-02-17 19:25:59.270740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:59.272111"], ["updated_at", "2023-02-17 19:25:59.272111"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:59.273543"], ["updated_at", "2023-02-17 19:25:59.273543"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:59.274751"], ["updated_at", "2023-02-17 19:25:59.274751"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:59.276125"], ["updated_at", "2023-02-17 19:25:59.276125"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:59.277411"], ["updated_at", "2023-02-17 19:25:59.277411"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:59.278864"], ["updated_at", "2023-02-17 19:25:59.278864"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:59.280112"], ["updated_at", "2023-02-17 19:25:59.280112"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:59.281681"], ["updated_at", "2023-02-17 19:25:59.281681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:59.282945"], ["updated_at", "2023-02-17 19:25:59.282945"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:59.284350"], ["updated_at", "2023-02-17 19:25:59.284350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:59.285559"], ["updated_at", "2023-02-17 19:25:59.285559"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:59.286944"], ["updated_at", "2023-02-17 19:25:59.286944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:59.288197"], ["updated_at", "2023-02-17 19:25:59.288197"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:59.289852"], ["updated_at", "2023-02-17 19:25:59.289852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:59.291194"], ["updated_at", "2023-02-17 19:25:59.291194"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:59.292754"], ["updated_at", "2023-02-17 19:25:59.292754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:59.294143"], ["updated_at", "2023-02-17 19:25:59.294143"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:59.295679"], ["updated_at", "2023-02-17 19:25:59.295679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:59.297011"], ["updated_at", "2023-02-17 19:25:59.297011"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:59.298575"], ["updated_at", "2023-02-17 19:25:59.298575"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:59.299918"], ["updated_at", "2023-02-17 19:25:59.299918"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:59.301460"], ["updated_at", "2023-02-17 19:25:59.301460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:59.302807"], ["updated_at", "2023-02-17 19:25:59.302807"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:59.304557"], ["updated_at", "2023-02-17 19:25:59.304557"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:59.305978"], ["updated_at", "2023-02-17 19:25:59.305978"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:59.307503"], ["updated_at", "2023-02-17 19:25:59.307503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:59.308821"], ["updated_at", "2023-02-17 19:25:59.308821"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:59.310397"], ["updated_at", "2023-02-17 19:25:59.310397"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:59.311811"], ["updated_at", "2023-02-17 19:25:59.311811"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:59.313405"], ["updated_at", "2023-02-17 19:25:59.313405"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:59.314713"], ["updated_at", "2023-02-17 19:25:59.314713"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:59.316208"], ["updated_at", "2023-02-17 19:25:59.316208"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:59.317565"], ["updated_at", "2023-02-17 19:25:59.317565"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:59.319177"], ["updated_at", "2023-02-17 19:25:59.319177"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:59.320640"], ["updated_at", "2023-02-17 19:25:59.320640"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:59.322571"], ["updated_at", "2023-02-17 19:25:59.322571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:59.323963"], ["updated_at", "2023-02-17 19:25:59.323963"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:59.325316"], ["updated_at", "2023-02-17 19:25:59.325316"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:59.326877"], ["updated_at", "2023-02-17 19:25:59.326877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:59.328584"], ["updated_at", "2023-02-17 19:25:59.328584"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:59.329846"], ["updated_at", "2023-02-17 19:25:59.329846"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:59.330960"], ["updated_at", "2023-02-17 19:25:59.330960"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:59.343044"], ["updated_at", "2023-02-17 19:25:59.343044"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:59.344507"], ["updated_at", "2023-02-17 19:25:59.344507"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:59.345622"], ["updated_at", "2023-02-17 19:25:59.345622"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.346603"], ["updated_at", "2023-02-17 19:25:59.346603"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.347490"], ["updated_at", "2023-02-17 19:25:59.347490"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.348265"], ["updated_at", "2023-02-17 19:25:59.348265"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.349039"], ["updated_at", "2023-02-17 19:25:59.349039"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.349821"], ["updated_at", "2023-02-17 19:25:59.349821"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:59.350654"], ["updated_at", "2023-02-17 19:25:59.350654"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.351625"], ["updated_at", "2023-02-17 19:25:59.351625"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.352642"], ["updated_at", "2023-02-17 19:25:59.352642"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.353554"], ["updated_at", "2023-02-17 19:25:59.353554"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.354430"], ["updated_at", "2023-02-17 19:25:59.354430"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.355453"], ["updated_at", "2023-02-17 19:25:59.355453"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.356527"], ["updated_at", "2023-02-17 19:25:59.356527"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.357446"], ["updated_at", "2023-02-17 19:25:59.357446"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.358326"], ["updated_at", "2023-02-17 19:25:59.358326"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.359174"], ["updated_at", "2023-02-17 19:25:59.359174"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.360059"], ["updated_at", "2023-02-17 19:25:59.360059"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.361019"], ["updated_at", "2023-02-17 19:25:59.361019"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.361898"], ["updated_at", "2023-02-17 19:25:59.361898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:59.374753"], ["updated_at", "2023-02-17 19:25:59.374753"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:59.376135"], ["updated_at", "2023-02-17 19:25:59.376135"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:59.377210"], ["updated_at", "2023-02-17 19:25:59.377210"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:59.378161"], ["updated_at", "2023-02-17 19:25:59.378161"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:59.379035"], ["updated_at", "2023-02-17 19:25:59.379035"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:59.379863"], ["updated_at", "2023-02-17 19:25:59.379863"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:59.380651"], ["updated_at", "2023-02-17 19:25:59.380651"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:59.381499"], ["updated_at", "2023-02-17 19:25:59.381499"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:59.382499"], ["updated_at", "2023-02-17 19:25:59.382499"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.383770"], ["updated_at", "2023-02-17 19:25:59.383770"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.384836"], ["updated_at", "2023-02-17 19:25:59.384836"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.385824"], ["updated_at", "2023-02-17 19:25:59.385824"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.386786"], ["updated_at", "2023-02-17 19:25:59.386786"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.387692"], ["updated_at", "2023-02-17 19:25:59.387692"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.388592"], ["updated_at", "2023-02-17 19:25:59.388592"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.389485"], ["updated_at", "2023-02-17 19:25:59.389485"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.390339"], ["updated_at", "2023-02-17 19:25:59.390339"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.391166"], ["updated_at", "2023-02-17 19:25:59.391166"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.392060"], ["updated_at", "2023-02-17 19:25:59.392060"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.392931"], ["updated_at", "2023-02-17 19:25:59.392931"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.393805"], ["updated_at", "2023-02-17 19:25:59.393805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.412024"], ["updated_at", "2023-02-17 19:25:59.412024"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.413241"], ["updated_at", "2023-02-17 19:25:59.413241"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.414134"], ["updated_at", "2023-02-17 19:25:59.414134"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.414988"], ["updated_at", "2023-02-17 19:25:59.414988"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.415879"], ["updated_at", "2023-02-17 19:25:59.415879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.416756"], ["updated_at", "2023-02-17 19:25:59.416756"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.417595"], ["updated_at", "2023-02-17 19:25:59.417595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.418388"], ["updated_at", "2023-02-17 19:25:59.418388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.419175"], ["updated_at", "2023-02-17 19:25:59.419175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.420009"], ["updated_at", "2023-02-17 19:25:59.420009"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.420873"], ["updated_at", "2023-02-17 19:25:59.420873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.421681"], ["updated_at", "2023-02-17 19:25:59.421681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.422490"], ["updated_at", "2023-02-17 19:25:59.422490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.423332"], ["updated_at", "2023-02-17 19:25:59.423332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.424116"], ["updated_at", "2023-02-17 19:25:59.424116"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.424899"], ["updated_at", "2023-02-17 19:25:59.424899"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.441105"], ["updated_at", "2023-02-17 19:25:59.441105"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.442194"], ["updated_at", "2023-02-17 19:25:59.442194"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.443006"], ["updated_at", "2023-02-17 19:25:59.443006"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.443749"], ["updated_at", "2023-02-17 19:25:59.443749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.444566"], ["updated_at", "2023-02-17 19:25:59.444566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.445427"], ["updated_at", "2023-02-17 19:25:59.445427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.446130"], ["updated_at", "2023-02-17 19:25:59.446130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.446841"], ["updated_at", "2023-02-17 19:25:59.446841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.447554"], ["updated_at", "2023-02-17 19:25:59.447554"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.448275"], ["updated_at", "2023-02-17 19:25:59.448275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.448995"], ["updated_at", "2023-02-17 19:25:59.448995"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.449722"], ["updated_at", "2023-02-17 19:25:59.449722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.450499"], ["updated_at", "2023-02-17 19:25:59.450499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.451217"], ["updated_at", "2023-02-17 19:25:59.451217"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.452037"], ["updated_at", "2023-02-17 19:25:59.452037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.452811"], ["updated_at", "2023-02-17 19:25:59.452811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.468596"], ["updated_at", "2023-02-17 19:25:59.468596"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.469678"], ["updated_at", "2023-02-17 19:25:59.469678"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.470474"], ["updated_at", "2023-02-17 19:25:59.470474"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.471201"], ["updated_at", "2023-02-17 19:25:59.471201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.471979"], ["updated_at", "2023-02-17 19:25:59.471979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.472735"], ["updated_at", "2023-02-17 19:25:59.472735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.473481"], ["updated_at", "2023-02-17 19:25:59.473481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.474197"], ["updated_at", "2023-02-17 19:25:59.474197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.474928"], ["updated_at", "2023-02-17 19:25:59.474928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.475641"], ["updated_at", "2023-02-17 19:25:59.475641"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.476362"], ["updated_at", "2023-02-17 19:25:59.476362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.477081"], ["updated_at", "2023-02-17 19:25:59.477081"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.477835"], ["updated_at", "2023-02-17 19:25:59.477835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.478550"], ["updated_at", "2023-02-17 19:25:59.478550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.479313"], ["updated_at", "2023-02-17 19:25:59.479313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.480007"], ["updated_at", "2023-02-17 19:25:59.480007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.495590"], ["updated_at", "2023-02-17 19:25:59.495590"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.496602"], ["updated_at", "2023-02-17 19:25:59.496602"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.497421"], ["updated_at", "2023-02-17 19:25:59.497421"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.498173"], ["updated_at", "2023-02-17 19:25:59.498173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.498961"], ["updated_at", "2023-02-17 19:25:59.498961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.499711"], ["updated_at", "2023-02-17 19:25:59.499711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.500449"], ["updated_at", "2023-02-17 19:25:59.500449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.501210"], ["updated_at", "2023-02-17 19:25:59.501210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.502100"], ["updated_at", "2023-02-17 19:25:59.502100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.502841"], ["updated_at", "2023-02-17 19:25:59.502841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.503569"], ["updated_at", "2023-02-17 19:25:59.503569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.504315"], ["updated_at", "2023-02-17 19:25:59.504315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.505035"], ["updated_at", "2023-02-17 19:25:59.505035"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.505762"], ["updated_at", "2023-02-17 19:25:59.505762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.506485"], ["updated_at", "2023-02-17 19:25:59.506485"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.507142"], ["updated_at", "2023-02-17 19:25:59.507142"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.522911"], ["updated_at", "2023-02-17 19:25:59.522911"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.523973"], ["updated_at", "2023-02-17 19:25:59.523973"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.524799"], ["updated_at", "2023-02-17 19:25:59.524799"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.525543"], ["updated_at", "2023-02-17 19:25:59.525543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.526367"], ["updated_at", "2023-02-17 19:25:59.526367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.527061"], ["updated_at", "2023-02-17 19:25:59.527061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.527782"], ["updated_at", "2023-02-17 19:25:59.527782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.528498"], ["updated_at", "2023-02-17 19:25:59.528498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.529246"], ["updated_at", "2023-02-17 19:25:59.529246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.529944"], ["updated_at", "2023-02-17 19:25:59.529944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.530679"], ["updated_at", "2023-02-17 19:25:59.530679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.531426"], ["updated_at", "2023-02-17 19:25:59.531426"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.532177"], ["updated_at", "2023-02-17 19:25:59.532177"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.532872"], ["updated_at", "2023-02-17 19:25:59.532872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.533597"], ["updated_at", "2023-02-17 19:25:59.533597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.534315"], ["updated_at", "2023-02-17 19:25:59.534315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.549881"], ["updated_at", "2023-02-17 19:25:59.549881"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.550924"], ["updated_at", "2023-02-17 19:25:59.550924"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.551754"], ["updated_at", "2023-02-17 19:25:59.551754"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.552508"], ["updated_at", "2023-02-17 19:25:59.552508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.553304"], ["updated_at", "2023-02-17 19:25:59.553304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.554052"], ["updated_at", "2023-02-17 19:25:59.554052"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.554790"], ["updated_at", "2023-02-17 19:25:59.554790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.555560"], ["updated_at", "2023-02-17 19:25:59.555560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.556303"], ["updated_at", "2023-02-17 19:25:59.556303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.557009"], ["updated_at", "2023-02-17 19:25:59.557009"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.557749"], ["updated_at", "2023-02-17 19:25:59.557749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.558491"], ["updated_at", "2023-02-17 19:25:59.558491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.559211"], ["updated_at", "2023-02-17 19:25:59.559211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.559923"], ["updated_at", "2023-02-17 19:25:59.559923"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.560741"], ["updated_at", "2023-02-17 19:25:59.560741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.561571"], ["updated_at", "2023-02-17 19:25:59.561571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:25:59 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:59.570807"], ["updated_at", "2023-02-17 19:25:59.570807"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:59.572318"], ["updated_at", "2023-02-17 19:25:59.572318"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:59.575315"], ["updated_at", "2023-02-17 19:25:59.575315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:59.576554"], ["updated_at", "2023-02-17 19:25:59.576554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:59.579373"], ["updated_at", "2023-02-17 19:25:59.579373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:59.580546"], ["updated_at", "2023-02-17 19:25:59.580546"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:59.582780"], ["updated_at", "2023-02-17 19:25:59.582780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:59.584319"], ["updated_at", "2023-02-17 19:25:59.584319"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:59.586044"], ["updated_at", "2023-02-17 19:25:59.586044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:59.587459"], ["updated_at", "2023-02-17 19:25:59.587459"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:59.588989"], ["updated_at", "2023-02-17 19:25:59.588989"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:59.590262"], ["updated_at", "2023-02-17 19:25:59.590262"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:59.591700"], ["updated_at", "2023-02-17 19:25:59.591700"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:59.592931"], ["updated_at", "2023-02-17 19:25:59.592931"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:59.594395"], ["updated_at", "2023-02-17 19:25:59.594395"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:59.595567"], ["updated_at", "2023-02-17 19:25:59.595567"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:59.597096"], ["updated_at", "2023-02-17 19:25:59.597096"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:59.598384"], ["updated_at", "2023-02-17 19:25:59.598384"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:59.599789"], ["updated_at", "2023-02-17 19:25:59.599789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:59.601104"], ["updated_at", "2023-02-17 19:25:59.601104"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:25:59.602675"], ["updated_at", "2023-02-17 19:25:59.602675"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:25:59.603949"], ["updated_at", "2023-02-17 19:25:59.603949"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:25:59.605477"], ["updated_at", "2023-02-17 19:25:59.605477"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:25:59.606917"], ["updated_at", "2023-02-17 19:25:59.606917"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:25:59.608432"], ["updated_at", "2023-02-17 19:25:59.608432"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:25:59.609666"], ["updated_at", "2023-02-17 19:25:59.609666"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:25:59.611078"], ["updated_at", "2023-02-17 19:25:59.611078"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:25:59.612348"], ["updated_at", "2023-02-17 19:25:59.612348"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:25:59.613779"], ["updated_at", "2023-02-17 19:25:59.613779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:25:59.614984"], ["updated_at", "2023-02-17 19:25:59.614984"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:25:59.616495"], ["updated_at", "2023-02-17 19:25:59.616495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:25:59.617798"], ["updated_at", "2023-02-17 19:25:59.617798"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:25:59.619263"], ["updated_at", "2023-02-17 19:25:59.619263"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:25:59.620485"], ["updated_at", "2023-02-17 19:25:59.620485"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:25:59.621970"], ["updated_at", "2023-02-17 19:25:59.621970"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:25:59.623212"], ["updated_at", "2023-02-17 19:25:59.623212"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:25:59.624703"], ["updated_at", "2023-02-17 19:25:59.624703"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:25:59.625938"], ["updated_at", "2023-02-17 19:25:59.625938"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:25:59.627395"], ["updated_at", "2023-02-17 19:25:59.627395"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:25:59.628598"], ["updated_at", "2023-02-17 19:25:59.628598"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:25:59.629986"], ["updated_at", "2023-02-17 19:25:59.629986"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:25:59.631189"], ["updated_at", "2023-02-17 19:25:59.631189"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:25:59.632756"], ["updated_at", "2023-02-17 19:25:59.632756"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:25:59.634064"], ["updated_at", "2023-02-17 19:25:59.634064"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:25:59.635520"], ["updated_at", "2023-02-17 19:25:59.635520"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:25:59.636757"], ["updated_at", "2023-02-17 19:25:59.636757"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:25:59.638199"], ["updated_at", "2023-02-17 19:25:59.638199"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:25:59.639416"], ["updated_at", "2023-02-17 19:25:59.639416"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:25:59.640906"], ["updated_at", "2023-02-17 19:25:59.640906"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:25:59.642174"], ["updated_at", "2023-02-17 19:25:59.642174"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:25:59.643705"], ["updated_at", "2023-02-17 19:25:59.643705"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:25:59.645003"], ["updated_at", "2023-02-17 19:25:59.645003"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:25:59.646525"], ["updated_at", "2023-02-17 19:25:59.646525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:25:59.647803"], ["updated_at", "2023-02-17 19:25:59.647803"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:25:59.649322"], ["updated_at", "2023-02-17 19:25:59.649322"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:25:59.650704"], ["updated_at", "2023-02-17 19:25:59.650704"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:25:59.652185"], ["updated_at", "2023-02-17 19:25:59.652185"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:25:59.653558"], ["updated_at", "2023-02-17 19:25:59.653558"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:25:59.655130"], ["updated_at", "2023-02-17 19:25:59.655130"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:25:59.656486"], ["updated_at", "2023-02-17 19:25:59.656486"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:25:59.658031"], ["updated_at", "2023-02-17 19:25:59.658031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:25:59.659366"], ["updated_at", "2023-02-17 19:25:59.659366"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:25:59.660818"], ["updated_at", "2023-02-17 19:25:59.660818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:25:59.662167"], ["updated_at", "2023-02-17 19:25:59.662167"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:25:59.663866"], ["updated_at", "2023-02-17 19:25:59.663866"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:25:59.665131"], ["updated_at", "2023-02-17 19:25:59.665131"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:25:59.666714"], ["updated_at", "2023-02-17 19:25:59.666714"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:25:59.673619"], ["updated_at", "2023-02-17 19:25:59.673619"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:25:59.675206"], ["updated_at", "2023-02-17 19:25:59.675206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:25:59.676595"], ["updated_at", "2023-02-17 19:25:59.676595"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:25:59.678067"], ["updated_at", "2023-02-17 19:25:59.678067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:25:59.679404"], ["updated_at", "2023-02-17 19:25:59.679404"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:25:59.680867"], ["updated_at", "2023-02-17 19:25:59.680867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:25:59.682180"], ["updated_at", "2023-02-17 19:25:59.682180"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:25:59.683759"], ["updated_at", "2023-02-17 19:25:59.683759"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:25:59.685094"], ["updated_at", "2023-02-17 19:25:59.685094"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:25:59.686685"], ["updated_at", "2023-02-17 19:25:59.686685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:25:59.688116"], ["updated_at", "2023-02-17 19:25:59.688116"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:25:59.689563"], ["updated_at", "2023-02-17 19:25:59.689563"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:25:59.690795"], ["updated_at", "2023-02-17 19:25:59.690795"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:25:59.692334"], ["updated_at", "2023-02-17 19:25:59.692334"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:25:59.693626"], ["updated_at", "2023-02-17 19:25:59.693626"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:25:59.695081"], ["updated_at", "2023-02-17 19:25:59.695081"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:25:59.696371"], ["updated_at", "2023-02-17 19:25:59.696371"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:25:59.697858"], ["updated_at", "2023-02-17 19:25:59.697858"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:25:59.699111"], ["updated_at", "2023-02-17 19:25:59.699111"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:25:59.700578"], ["updated_at", "2023-02-17 19:25:59.700578"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:25:59.701786"], ["updated_at", "2023-02-17 19:25:59.701786"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:25:59.703385"], ["updated_at", "2023-02-17 19:25:59.703385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:25:59.704714"], ["updated_at", "2023-02-17 19:25:59.704714"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:25:59.706122"], ["updated_at", "2023-02-17 19:25:59.706122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:25:59.707364"], ["updated_at", "2023-02-17 19:25:59.707364"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:25:59.708877"], ["updated_at", "2023-02-17 19:25:59.708877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:25:59.710176"], ["updated_at", "2023-02-17 19:25:59.710176"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:25:59.711651"], ["updated_at", "2023-02-17 19:25:59.711651"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:25:59.712806"], ["updated_at", "2023-02-17 19:25:59.712806"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:25:59.714092"], ["updated_at", "2023-02-17 19:25:59.714092"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:25:59.715662"], ["updated_at", "2023-02-17 19:25:59.715662"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:25:59.717272"], ["updated_at", "2023-02-17 19:25:59.717272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:25:59.718428"], ["updated_at", "2023-02-17 19:25:59.718428"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:25:59.719468"], ["updated_at", "2023-02-17 19:25:59.719468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:59.731206"], ["updated_at", "2023-02-17 19:25:59.731206"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:59.732589"], ["updated_at", "2023-02-17 19:25:59.732589"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:59.733740"], ["updated_at", "2023-02-17 19:25:59.733740"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.734669"], ["updated_at", "2023-02-17 19:25:59.734669"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.735516"], ["updated_at", "2023-02-17 19:25:59.735516"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.736269"], ["updated_at", "2023-02-17 19:25:59.736269"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.737086"], ["updated_at", "2023-02-17 19:25:59.737086"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.737877"], ["updated_at", "2023-02-17 19:25:59.737877"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:59.738819"], ["updated_at", "2023-02-17 19:25:59.738819"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.739989"], ["updated_at", "2023-02-17 19:25:59.739989"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.741131"], ["updated_at", "2023-02-17 19:25:59.741131"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.742092"], ["updated_at", "2023-02-17 19:25:59.742092"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.742914"], ["updated_at", "2023-02-17 19:25:59.742914"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.743867"], ["updated_at", "2023-02-17 19:25:59.743867"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.744777"], ["updated_at", "2023-02-17 19:25:59.744777"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.745679"], ["updated_at", "2023-02-17 19:25:59.745679"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.746480"], ["updated_at", "2023-02-17 19:25:59.746480"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.747411"], ["updated_at", "2023-02-17 19:25:59.747411"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.748506"], ["updated_at", "2023-02-17 19:25:59.748506"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.749446"], ["updated_at", "2023-02-17 19:25:59.749446"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.750244"], ["updated_at", "2023-02-17 19:25:59.750244"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:25:59.762359"], ["updated_at", "2023-02-17 19:25:59.762359"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:25:59.763727"], ["updated_at", "2023-02-17 19:25:59.763727"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:25:59.765015"], ["updated_at", "2023-02-17 19:25:59.765015"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:59.766166"], ["updated_at", "2023-02-17 19:25:59.766166"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:59.767088"], ["updated_at", "2023-02-17 19:25:59.767088"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:59.767846"], ["updated_at", "2023-02-17 19:25:59.767846"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:59.768583"], ["updated_at", "2023-02-17 19:25:59.768583"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:25:59.769307"], ["updated_at", "2023-02-17 19:25:59.769307"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:25:59.770203"], ["updated_at", "2023-02-17 19:25:59.770203"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.771157"], ["updated_at", "2023-02-17 19:25:59.771157"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.772018"], ["updated_at", "2023-02-17 19:25:59.772018"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.772800"], ["updated_at", "2023-02-17 19:25:59.772800"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.773813"], ["updated_at", "2023-02-17 19:25:59.773813"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.774780"], ["updated_at", "2023-02-17 19:25:59.774780"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.775586"], ["updated_at", "2023-02-17 19:25:59.775586"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.776400"], ["updated_at", "2023-02-17 19:25:59.776400"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.777345"], ["updated_at", "2023-02-17 19:25:59.777345"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.778420"], ["updated_at", "2023-02-17 19:25:59.778420"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.779305"], ["updated_at", "2023-02-17 19:25:59.779305"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.780139"], ["updated_at", "2023-02-17 19:25:59.780139"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:25:59.781290"], ["updated_at", "2023-02-17 19:25:59.781290"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.799020"], ["updated_at", "2023-02-17 19:25:59.799020"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.800165"], ["updated_at", "2023-02-17 19:25:59.800165"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.801017"], ["updated_at", "2023-02-17 19:25:59.801017"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.801738"], ["updated_at", "2023-02-17 19:25:59.801738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.802614"], ["updated_at", "2023-02-17 19:25:59.802614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.803569"], ["updated_at", "2023-02-17 19:25:59.803569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.804406"], ["updated_at", "2023-02-17 19:25:59.804406"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.805175"], ["updated_at", "2023-02-17 19:25:59.805175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.805918"], ["updated_at", "2023-02-17 19:25:59.805918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.806656"], ["updated_at", "2023-02-17 19:25:59.806656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.807422"], ["updated_at", "2023-02-17 19:25:59.807422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.808195"], ["updated_at", "2023-02-17 19:25:59.808195"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.808942"], ["updated_at", "2023-02-17 19:25:59.808942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.809680"], ["updated_at", "2023-02-17 19:25:59.809680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.810497"], ["updated_at", "2023-02-17 19:25:59.810497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:25:59.811335"], ["updated_at", "2023-02-17 19:25:59.811335"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.827739"], ["updated_at", "2023-02-17 19:25:59.827739"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.828840"], ["updated_at", "2023-02-17 19:25:59.828840"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.829660"], ["updated_at", "2023-02-17 19:25:59.829660"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.830483"], ["updated_at", "2023-02-17 19:25:59.830483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.831601"], ["updated_at", "2023-02-17 19:25:59.831601"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.832507"], ["updated_at", "2023-02-17 19:25:59.832507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.833283"], ["updated_at", "2023-02-17 19:25:59.833283"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.833986"], ["updated_at", "2023-02-17 19:25:59.833986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.834757"], ["updated_at", "2023-02-17 19:25:59.834757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.835529"], ["updated_at", "2023-02-17 19:25:59.835529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.836314"], ["updated_at", "2023-02-17 19:25:59.836314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.837127"], ["updated_at", "2023-02-17 19:25:59.837127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.837892"], ["updated_at", "2023-02-17 19:25:59.837892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.838604"], ["updated_at", "2023-02-17 19:25:59.838604"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.839321"], ["updated_at", "2023-02-17 19:25:59.839321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:25:59.840155"], ["updated_at", "2023-02-17 19:25:59.840155"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.856844"], ["updated_at", "2023-02-17 19:25:59.856844"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.857928"], ["updated_at", "2023-02-17 19:25:59.857928"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.858719"], ["updated_at", "2023-02-17 19:25:59.858719"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.859451"], ["updated_at", "2023-02-17 19:25:59.859451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.860275"], ["updated_at", "2023-02-17 19:25:59.860275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.861154"], ["updated_at", "2023-02-17 19:25:59.861154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.861968"], ["updated_at", "2023-02-17 19:25:59.861968"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.862738"], ["updated_at", "2023-02-17 19:25:59.862738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.863464"], ["updated_at", "2023-02-17 19:25:59.863464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.864439"], ["updated_at", "2023-02-17 19:25:59.864439"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.865480"], ["updated_at", "2023-02-17 19:25:59.865480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.866304"], ["updated_at", "2023-02-17 19:25:59.866304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.867014"], ["updated_at", "2023-02-17 19:25:59.867014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.867730"], ["updated_at", "2023-02-17 19:25:59.867730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.868431"], ["updated_at", "2023-02-17 19:25:59.868431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:25:59.869219"], ["updated_at", "2023-02-17 19:25:59.869219"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.888191"], ["updated_at", "2023-02-17 19:25:59.888191"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.889460"], ["updated_at", "2023-02-17 19:25:59.889460"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.890366"], ["updated_at", "2023-02-17 19:25:59.890366"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.891411"], ["updated_at", "2023-02-17 19:25:59.891411"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.892620"], ["updated_at", "2023-02-17 19:25:59.892620"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.893765"], ["updated_at", "2023-02-17 19:25:59.893765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.894721"], ["updated_at", "2023-02-17 19:25:59.894721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.895486"], ["updated_at", "2023-02-17 19:25:59.895486"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.896192"], ["updated_at", "2023-02-17 19:25:59.896192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.896927"], ["updated_at", "2023-02-17 19:25:59.896927"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.897838"], ["updated_at", "2023-02-17 19:25:59.897838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.898909"], ["updated_at", "2023-02-17 19:25:59.898909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.899711"], ["updated_at", "2023-02-17 19:25:59.899711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.900427"], ["updated_at", "2023-02-17 19:25:59.900427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.901138"], ["updated_at", "2023-02-17 19:25:59.901138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:25:59.901849"], ["updated_at", "2023-02-17 19:25:59.901849"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.918692"], ["updated_at", "2023-02-17 19:25:59.918692"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.919845"], ["updated_at", "2023-02-17 19:25:59.919845"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.920691"], ["updated_at", "2023-02-17 19:25:59.920691"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.921503"], ["updated_at", "2023-02-17 19:25:59.921503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.922287"], ["updated_at", "2023-02-17 19:25:59.922287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.923037"], ["updated_at", "2023-02-17 19:25:59.923037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.923893"], ["updated_at", "2023-02-17 19:25:59.923893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.924639"], ["updated_at", "2023-02-17 19:25:59.924639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.925359"], ["updated_at", "2023-02-17 19:25:59.925359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.926068"], ["updated_at", "2023-02-17 19:25:59.926068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.926800"], ["updated_at", "2023-02-17 19:25:59.926800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.927769"], ["updated_at", "2023-02-17 19:25:59.927769"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.928717"], ["updated_at", "2023-02-17 19:25:59.928717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.929480"], ["updated_at", "2023-02-17 19:25:59.929480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.930210"], ["updated_at", "2023-02-17 19:25:59.930210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:25:59.931002"], ["updated_at", "2023-02-17 19:25:59.931002"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:25:59.947804"], ["updated_at", "2023-02-17 19:25:59.947804"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:25:59.948924"], ["updated_at", "2023-02-17 19:25:59.948924"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:25:59.949813"], ["updated_at", "2023-02-17 19:25:59.949813"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:25:59.950563"], ["updated_at", "2023-02-17 19:25:59.950563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.951351"], ["updated_at", "2023-02-17 19:25:59.951351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.952101"], ["updated_at", "2023-02-17 19:25:59.952101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.953005"], ["updated_at", "2023-02-17 19:25:59.953005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.953923"], ["updated_at", "2023-02-17 19:25:59.953923"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.954813"], ["updated_at", "2023-02-17 19:25:59.954813"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.955657"], ["updated_at", "2023-02-17 19:25:59.955657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.956387"], ["updated_at", "2023-02-17 19:25:59.956387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.957124"], ["updated_at", "2023-02-17 19:25:59.957124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.957908"], ["updated_at", "2023-02-17 19:25:59.957908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.958631"], ["updated_at", "2023-02-17 19:25:59.958631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.959344"], ["updated_at", "2023-02-17 19:25:59.959344"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:25:59.960052"], ["updated_at", "2023-02-17 19:25:59.960052"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:25:59 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:25:59.969499"], ["updated_at", "2023-02-17 19:25:59.969499"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:25:59.971067"], ["updated_at", "2023-02-17 19:25:59.971067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:25:59.974004"], ["updated_at", "2023-02-17 19:25:59.974004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:25:59.975205"], ["updated_at", "2023-02-17 19:25:59.975205"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:25:59.977961"], ["updated_at", "2023-02-17 19:25:59.977961"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:25:59.979201"], ["updated_at", "2023-02-17 19:25:59.979201"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:25:59.981343"], ["updated_at", "2023-02-17 19:25:59.981343"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:25:59.982807"], ["updated_at", "2023-02-17 19:25:59.982807"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:25:59.984410"], ["updated_at", "2023-02-17 19:25:59.984410"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:25:59.985728"], ["updated_at", "2023-02-17 19:25:59.985728"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:25:59.987246"], ["updated_at", "2023-02-17 19:25:59.987246"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:25:59.988468"], ["updated_at", "2023-02-17 19:25:59.988468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:25:59.989907"], ["updated_at", "2023-02-17 19:25:59.989907"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:25:59.991293"], ["updated_at", "2023-02-17 19:25:59.991293"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:25:59.992808"], ["updated_at", "2023-02-17 19:25:59.992808"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:25:59.994064"], ["updated_at", "2023-02-17 19:25:59.994064"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:25:59.995526"], ["updated_at", "2023-02-17 19:25:59.995526"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:25:59.996763"], ["updated_at", "2023-02-17 19:25:59.996763"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:25:59.998146"], ["updated_at", "2023-02-17 19:25:59.998146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:25:59.999409"], ["updated_at", "2023-02-17 19:25:59.999409"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:26:00.000982"], ["updated_at", "2023-02-17 19:26:00.000982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:26:00.002650"], ["updated_at", "2023-02-17 19:26:00.002650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:26:00.004263"], ["updated_at", "2023-02-17 19:26:00.004263"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:26:00.005559"], ["updated_at", "2023-02-17 19:26:00.005559"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:26:00.007216"], ["updated_at", "2023-02-17 19:26:00.007216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:26:00.008588"], ["updated_at", "2023-02-17 19:26:00.008588"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:26:00.010107"], ["updated_at", "2023-02-17 19:26:00.010107"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:26:00.011440"], ["updated_at", "2023-02-17 19:26:00.011440"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:26:00.012928"], ["updated_at", "2023-02-17 19:26:00.012928"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:26:00.014136"], ["updated_at", "2023-02-17 19:26:00.014136"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:26:00.015533"], ["updated_at", "2023-02-17 19:26:00.015533"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:26:00.016793"], ["updated_at", "2023-02-17 19:26:00.016793"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:26:00.018196"], ["updated_at", "2023-02-17 19:26:00.018196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:26:00.019435"], ["updated_at", "2023-02-17 19:26:00.019435"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:26:00.020906"], ["updated_at", "2023-02-17 19:26:00.020906"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:26:00.022556"], ["updated_at", "2023-02-17 19:26:00.022556"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:26:00.024107"], ["updated_at", "2023-02-17 19:26:00.024107"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:26:00.025475"], ["updated_at", "2023-02-17 19:26:00.025475"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:26:00.026969"], ["updated_at", "2023-02-17 19:26:00.026969"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:26:00.028584"], ["updated_at", "2023-02-17 19:26:00.028584"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:26:00.030123"], ["updated_at", "2023-02-17 19:26:00.030123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:26:00.031423"], ["updated_at", "2023-02-17 19:26:00.031423"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:26:00.033181"], ["updated_at", "2023-02-17 19:26:00.033181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:26:00.034440"], ["updated_at", "2023-02-17 19:26:00.034440"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:26:00.035882"], ["updated_at", "2023-02-17 19:26:00.035882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:26:00.037202"], ["updated_at", "2023-02-17 19:26:00.037202"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:26:00.038709"], ["updated_at", "2023-02-17 19:26:00.038709"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:26:00.039945"], ["updated_at", "2023-02-17 19:26:00.039945"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:26:00.041516"], ["updated_at", "2023-02-17 19:26:00.041516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:26:00.042888"], ["updated_at", "2023-02-17 19:26:00.042888"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:26:00.044398"], ["updated_at", "2023-02-17 19:26:00.044398"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:26:00.045744"], ["updated_at", "2023-02-17 19:26:00.045744"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:26:00.047154"], ["updated_at", "2023-02-17 19:26:00.047154"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:26:00.048440"], ["updated_at", "2023-02-17 19:26:00.048440"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:26:00.050251"], ["updated_at", "2023-02-17 19:26:00.050251"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:26:00.051655"], ["updated_at", "2023-02-17 19:26:00.051655"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:26:00.053383"], ["updated_at", "2023-02-17 19:26:00.053383"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:26:00.054689"], ["updated_at", "2023-02-17 19:26:00.054689"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:26:00.056109"], ["updated_at", "2023-02-17 19:26:00.056109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:26:00.057420"], ["updated_at", "2023-02-17 19:26:00.057420"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:26:00.058922"], ["updated_at", "2023-02-17 19:26:00.058922"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:26:00.060137"], ["updated_at", "2023-02-17 19:26:00.060137"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:26:00.061758"], ["updated_at", "2023-02-17 19:26:00.061758"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:26:00.063289"], ["updated_at", "2023-02-17 19:26:00.063289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:26:00.064716"], ["updated_at", "2023-02-17 19:26:00.064716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:26:00.066324"], ["updated_at", "2023-02-17 19:26:00.066324"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:26:00.067799"], ["updated_at", "2023-02-17 19:26:00.067799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:26:00.069012"], ["updated_at", "2023-02-17 19:26:00.069012"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:26:00.070429"], ["updated_at", "2023-02-17 19:26:00.070429"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:26:00.071739"], ["updated_at", "2023-02-17 19:26:00.071739"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:26:00.073306"], ["updated_at", "2023-02-17 19:26:00.073306"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:26:00.074658"], ["updated_at", "2023-02-17 19:26:00.074658"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:26:00.076094"], ["updated_at", "2023-02-17 19:26:00.076094"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:26:00.077354"], ["updated_at", "2023-02-17 19:26:00.077354"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:26:00.078860"], ["updated_at", "2023-02-17 19:26:00.078860"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:26:00.080095"], ["updated_at", "2023-02-17 19:26:00.080095"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:26:00.082168"], ["updated_at", "2023-02-17 19:26:00.082168"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:26:00.083936"], ["updated_at", "2023-02-17 19:26:00.083936"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:26:00.085431"], ["updated_at", "2023-02-17 19:26:00.085431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:26:00.086724"], ["updated_at", "2023-02-17 19:26:00.086724"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:26:00.088349"], ["updated_at", "2023-02-17 19:26:00.088349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:26:00.089706"], ["updated_at", "2023-02-17 19:26:00.089706"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:26:00.091430"], ["updated_at", "2023-02-17 19:26:00.091430"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:26:00.093174"], ["updated_at", "2023-02-17 19:26:00.093174"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:26:00.094937"], ["updated_at", "2023-02-17 19:26:00.094937"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:26:00.096399"], ["updated_at", "2023-02-17 19:26:00.096399"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:26:00.098000"], ["updated_at", "2023-02-17 19:26:00.098000"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:26:00.099673"], ["updated_at", "2023-02-17 19:26:00.099673"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:26:00.101309"], ["updated_at", "2023-02-17 19:26:00.101309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:26:00.102766"], ["updated_at", "2023-02-17 19:26:00.102766"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:26:00.105227"], ["updated_at", "2023-02-17 19:26:00.105227"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:26:00.106825"], ["updated_at", "2023-02-17 19:26:00.106825"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:26:00.108453"], ["updated_at", "2023-02-17 19:26:00.108453"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:26:00.109928"], ["updated_at", "2023-02-17 19:26:00.109928"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:26:00.111697"], ["updated_at", "2023-02-17 19:26:00.111697"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:26:00.113362"], ["updated_at", "2023-02-17 19:26:00.113362"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:26:00.115015"], ["updated_at", "2023-02-17 19:26:00.115015"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:26:00.116838"], ["updated_at", "2023-02-17 19:26:00.116838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:26:00.118672"], ["updated_at", "2023-02-17 19:26:00.118672"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:26:00.120226"], ["updated_at", "2023-02-17 19:26:00.120226"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:26:00.121624"], ["updated_at", "2023-02-17 19:26:00.121624"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:26:00.135515"], ["updated_at", "2023-02-17 19:26:00.135515"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:26:00.137157"], ["updated_at", "2023-02-17 19:26:00.137157"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:26:00.138538"], ["updated_at", "2023-02-17 19:26:00.138538"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.139736"], ["updated_at", "2023-02-17 19:26:00.139736"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.140789"], ["updated_at", "2023-02-17 19:26:00.140789"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.141776"], ["updated_at", "2023-02-17 19:26:00.141776"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.142961"], ["updated_at", "2023-02-17 19:26:00.142961"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.144084"], ["updated_at", "2023-02-17 19:26:00.144084"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:26:00.145323"], ["updated_at", "2023-02-17 19:26:00.145323"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.146538"], ["updated_at", "2023-02-17 19:26:00.146538"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.147651"], ["updated_at", "2023-02-17 19:26:00.147651"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.148736"], ["updated_at", "2023-02-17 19:26:00.148736"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.149806"], ["updated_at", "2023-02-17 19:26:00.149806"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.150861"], ["updated_at", "2023-02-17 19:26:00.150861"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.151963"], ["updated_at", "2023-02-17 19:26:00.151963"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.153213"], ["updated_at", "2023-02-17 19:26:00.153213"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.154530"], ["updated_at", "2023-02-17 19:26:00.154530"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.155723"], ["updated_at", "2023-02-17 19:26:00.155723"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.156799"], ["updated_at", "2023-02-17 19:26:00.156799"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.157838"], ["updated_at", "2023-02-17 19:26:00.157838"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.158913"], ["updated_at", "2023-02-17 19:26:00.158913"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:26:00.172985"], ["updated_at", "2023-02-17 19:26:00.172985"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:26:00.174593"], ["updated_at", "2023-02-17 19:26:00.174593"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:26:00.175812"], ["updated_at", "2023-02-17 19:26:00.175812"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:26:00.177030"], ["updated_at", "2023-02-17 19:26:00.177030"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:26:00.178195"], ["updated_at", "2023-02-17 19:26:00.178195"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:26:00.179266"], ["updated_at", "2023-02-17 19:26:00.179266"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:26:00.180274"], ["updated_at", "2023-02-17 19:26:00.180274"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:26:00.181255"], ["updated_at", "2023-02-17 19:26:00.181255"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:26:00.182236"], ["updated_at", "2023-02-17 19:26:00.182236"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.183576"], ["updated_at", "2023-02-17 19:26:00.183576"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.184787"], ["updated_at", "2023-02-17 19:26:00.184787"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.186023"], ["updated_at", "2023-02-17 19:26:00.186023"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.187170"], ["updated_at", "2023-02-17 19:26:00.187170"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.188267"], ["updated_at", "2023-02-17 19:26:00.188267"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.189352"], ["updated_at", "2023-02-17 19:26:00.189352"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.190414"], ["updated_at", "2023-02-17 19:26:00.190414"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.191417"], ["updated_at", "2023-02-17 19:26:00.191417"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.192508"], ["updated_at", "2023-02-17 19:26:00.192508"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.193666"], ["updated_at", "2023-02-17 19:26:00.193666"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.194888"], ["updated_at", "2023-02-17 19:26:00.194888"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:26:00.196014"], ["updated_at", "2023-02-17 19:26:00.196014"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:26:00.217258"], ["updated_at", "2023-02-17 19:26:00.217258"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:26:00.218535"], ["updated_at", "2023-02-17 19:26:00.218535"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.219798"], ["updated_at", "2023-02-17 19:26:00.219798"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.221035"], ["updated_at", "2023-02-17 19:26:00.221035"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.222166"], ["updated_at", "2023-02-17 19:26:00.222166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.223340"], ["updated_at", "2023-02-17 19:26:00.223340"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.224369"], ["updated_at", "2023-02-17 19:26:00.224369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.225378"], ["updated_at", "2023-02-17 19:26:00.225378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.226407"], ["updated_at", "2023-02-17 19:26:00.226407"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.227477"], ["updated_at", "2023-02-17 19:26:00.227477"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.228672"], ["updated_at", "2023-02-17 19:26:00.228672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.229788"], ["updated_at", "2023-02-17 19:26:00.229788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.230819"], ["updated_at", "2023-02-17 19:26:00.230819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.231812"], ["updated_at", "2023-02-17 19:26:00.231812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.232820"], ["updated_at", "2023-02-17 19:26:00.232820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:26:00.233865"], ["updated_at", "2023-02-17 19:26:00.233865"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:26:00.253903"], ["updated_at", "2023-02-17 19:26:00.253903"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:26:00.255095"], ["updated_at", "2023-02-17 19:26:00.255095"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.256107"], ["updated_at", "2023-02-17 19:26:00.256107"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.257023"], ["updated_at", "2023-02-17 19:26:00.257023"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.257838"], ["updated_at", "2023-02-17 19:26:00.257838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.258713"], ["updated_at", "2023-02-17 19:26:00.258713"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.259712"], ["updated_at", "2023-02-17 19:26:00.259712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.260827"], ["updated_at", "2023-02-17 19:26:00.260827"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.261965"], ["updated_at", "2023-02-17 19:26:00.261965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.262924"], ["updated_at", "2023-02-17 19:26:00.262924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.263765"], ["updated_at", "2023-02-17 19:26:00.263765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.264503"], ["updated_at", "2023-02-17 19:26:00.264503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.265193"], ["updated_at", "2023-02-17 19:26:00.265193"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.266070"], ["updated_at", "2023-02-17 19:26:00.266070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.266957"], ["updated_at", "2023-02-17 19:26:00.266957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:26:00.267713"], ["updated_at", "2023-02-17 19:26:00.267713"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:26:00.284837"], ["updated_at", "2023-02-17 19:26:00.284837"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:26:00.286139"], ["updated_at", "2023-02-17 19:26:00.286139"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.287206"], ["updated_at", "2023-02-17 19:26:00.287206"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.288090"], ["updated_at", "2023-02-17 19:26:00.288090"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.288962"], ["updated_at", "2023-02-17 19:26:00.288962"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.290178"], ["updated_at", "2023-02-17 19:26:00.290178"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.291456"], ["updated_at", "2023-02-17 19:26:00.291456"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.292753"], ["updated_at", "2023-02-17 19:26:00.292753"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.293990"], ["updated_at", "2023-02-17 19:26:00.293990"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.295019"], ["updated_at", "2023-02-17 19:26:00.295019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.295896"], ["updated_at", "2023-02-17 19:26:00.295896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.296710"], ["updated_at", "2023-02-17 19:26:00.296710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.297459"], ["updated_at", "2023-02-17 19:26:00.297459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.298207"], ["updated_at", "2023-02-17 19:26:00.298207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.298921"], ["updated_at", "2023-02-17 19:26:00.298921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:26:00.299628"], ["updated_at", "2023-02-17 19:26:00.299628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:26:00.315299"], ["updated_at", "2023-02-17 19:26:00.315299"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:26:00.316314"], ["updated_at", "2023-02-17 19:26:00.316314"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.317073"], ["updated_at", "2023-02-17 19:26:00.317073"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.317778"], ["updated_at", "2023-02-17 19:26:00.317778"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.318564"], ["updated_at", "2023-02-17 19:26:00.318564"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.319548"], ["updated_at", "2023-02-17 19:26:00.319548"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.320490"], ["updated_at", "2023-02-17 19:26:00.320490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.321263"], ["updated_at", "2023-02-17 19:26:00.321263"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.322007"], ["updated_at", "2023-02-17 19:26:00.322007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.322723"], ["updated_at", "2023-02-17 19:26:00.322723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.323419"], ["updated_at", "2023-02-17 19:26:00.323419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.324106"], ["updated_at", "2023-02-17 19:26:00.324106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.324815"], ["updated_at", "2023-02-17 19:26:00.324815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.325534"], ["updated_at", "2023-02-17 19:26:00.325534"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.326234"], ["updated_at", "2023-02-17 19:26:00.326234"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:26:00.326944"], ["updated_at", "2023-02-17 19:26:00.326944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:26:00.344673"], ["updated_at", "2023-02-17 19:26:00.344673"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:26:00.345917"], ["updated_at", "2023-02-17 19:26:00.345917"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.347063"], ["updated_at", "2023-02-17 19:26:00.347063"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.348180"], ["updated_at", "2023-02-17 19:26:00.348180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.349414"], ["updated_at", "2023-02-17 19:26:00.349414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.350475"], ["updated_at", "2023-02-17 19:26:00.350475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.351420"], ["updated_at", "2023-02-17 19:26:00.351420"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.352328"], ["updated_at", "2023-02-17 19:26:00.352328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.353269"], ["updated_at", "2023-02-17 19:26:00.353269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.354147"], ["updated_at", "2023-02-17 19:26:00.354147"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.355004"], ["updated_at", "2023-02-17 19:26:00.355004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.355990"], ["updated_at", "2023-02-17 19:26:00.355990"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.357167"], ["updated_at", "2023-02-17 19:26:00.357167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.358231"], ["updated_at", "2023-02-17 19:26:00.358231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.359131"], ["updated_at", "2023-02-17 19:26:00.359131"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:26:00.359987"], ["updated_at", "2023-02-17 19:26:00.359987"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:26:00.378597"], ["updated_at", "2023-02-17 19:26:00.378597"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:26:00.379660"], ["updated_at", "2023-02-17 19:26:00.379660"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:26:00.380657"], ["updated_at", "2023-02-17 19:26:00.380657"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:26:00.381731"], ["updated_at", "2023-02-17 19:26:00.381731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.382858"], ["updated_at", "2023-02-17 19:26:00.382858"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.383901"], ["updated_at", "2023-02-17 19:26:00.383901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.384847"], ["updated_at", "2023-02-17 19:26:00.384847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.385863"], ["updated_at", "2023-02-17 19:26:00.385863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.386954"], ["updated_at", "2023-02-17 19:26:00.386954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.387866"], ["updated_at", "2023-02-17 19:26:00.387866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.388726"], ["updated_at", "2023-02-17 19:26:00.388726"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.389651"], ["updated_at", "2023-02-17 19:26:00.389651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.390525"], ["updated_at", "2023-02-17 19:26:00.390525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.391388"], ["updated_at", "2023-02-17 19:26:00.391388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.392203"], ["updated_at", "2023-02-17 19:26:00.392203"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:26:00.393064"], ["updated_at", "2023-02-17 19:26:00.393064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:26:00 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:26:00 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:26:00 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.3ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.3ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms | Allocations: 409)

 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:09.819579"], ["updated_at", "2023-02-17 19:27:09.819579"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:09.834944"], ["updated_at", "2023-02-17 19:27:09.834944"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:27:09.841542"], ["updated_at", "2023-02-17 19:27:09.841542"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:09.852102"], ["updated_at", "2023-02-17 19:27:09.852102"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:09.859631"], ["updated_at", "2023-02-17 19:27:09.859631"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:27:09.863154"], ["updated_at", "2023-02-17 19:27:09.863154"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:09.865722"], ["updated_at", "2023-02-17 19:27:09.865722"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 5.5ms | Allocations: 28612)

Member Load (0.2ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:27:09.883460"], ["updated_at", "2023-02-17 19:27:09.883460"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 12ms (Views: 6.8ms | ActiveRecord: 1.0ms | Allocations: 4603)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000563526562ff0>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms | Allocations: 658)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.3ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.3ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:09.951788"], ["updated_at", "2023-02-17 19:27:09.951788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:09.953505"], ["updated_at", "2023-02-17 19:27:09.953505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:09.956576"], ["updated_at", "2023-02-17 19:27:09.956576"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:09.958450"], ["updated_at", "2023-02-17 19:27:09.958450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:09.961768"], ["updated_at", "2023-02-17 19:27:09.961768"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:09.962968"], ["updated_at", "2023-02-17 19:27:09.962968"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:09.965565"], ["updated_at", "2023-02-17 19:27:09.965565"]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:09.968154"], ["updated_at", "2023-02-17 19:27:09.968154"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:09.970185"], ["updated_at", "2023-02-17 19:27:09.970185"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:09.971734"], ["updated_at", "2023-02-17 19:27:09.971734"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:09.973235"], ["updated_at", "2023-02-17 19:27:09.973235"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:09.974708"], ["updated_at", "2023-02-17 19:27:09.974708"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:09.976481"], ["updated_at", "2023-02-17 19:27:09.976481"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:09.977952"], ["updated_at", "2023-02-17 19:27:09.977952"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:09.979577"], ["updated_at", "2023-02-17 19:27:09.979577"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:09.980855"], ["updated_at", "2023-02-17 19:27:09.980855"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:09.982481"], ["updated_at", "2023-02-17 19:27:09.982481"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:09.984939"], ["updated_at", "2023-02-17 19:27:09.984939"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:09.986530"], ["updated_at", "2023-02-17 19:27:09.986530"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:09.988185"], ["updated_at", "2023-02-17 19:27:09.988185"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:09.990045"], ["updated_at", "2023-02-17 19:27:09.990045"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:09.991485"], ["updated_at", "2023-02-17 19:27:09.991485"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (1.9ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:09.992980"], ["updated_at", "2023-02-17 19:27:09.992980"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:09.996404"], ["updated_at", "2023-02-17 19:27:09.996404"], ["role_id", 34]]

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:09.998468"], ["updated_at", "2023-02-17 19:27:09.998468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:10.000348"], ["updated_at", "2023-02-17 19:27:10.000348"], ["role_id", 34]]
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:10.002023"], ["updated_at", "2023-02-17 19:27:10.002023"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:10.003706"], ["updated_at", "2023-02-17 19:27:10.003706"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:10.005594"], ["updated_at", "2023-02-17 19:27:10.005594"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:10.006954"], ["updated_at", "2023-02-17 19:27:10.006954"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:10.008726"], ["updated_at", "2023-02-17 19:27:10.008726"]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:10.008322"], ["updated_at", "2023-02-17 19:27:10.008322"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 13ms (ActiveRecord: 1.5ms | Allocations: 6161)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:10.011456"], ["updated_at", "2023-02-17 19:27:10.011456"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:10.013392"], ["updated_at", "2023-02-17 19:27:10.013392"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:10.016018"], ["updated_at", "2023-02-17 19:27:10.016018"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:10.018160"], ["updated_at", "2023-02-17 19:27:10.018160"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:10.020759"], ["updated_at", "2023-02-17 19:27:10.020759"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:10.022592"], ["updated_at", "2023-02-17 19:27:10.022592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:10.023971"], ["updated_at", "2023-02-17 19:27:10.023971"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:10.025569"], ["updated_at", "2023-02-17 19:27:10.025569"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:10.027033"], ["updated_at", "2023-02-17 19:27:10.027033"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:10.029388"], ["updated_at", "2023-02-17 19:27:10.029388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:10.030942"], ["updated_at", "2023-02-17 19:27:10.030942"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:10.032482"], ["updated_at", "2023-02-17 19:27:10.032482"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Survey Create (0.4ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:27:10.034140"], ["updated_at", "2023-02-17 19:27:10.034140"], ["role_id", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.034551"], ["updated_at", "2023-02-17 19:27:10.034551"], ["role_id", 34]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.9ms | Allocations: 5712)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:10.036261"], ["updated_at", "2023-02-17 19:27:10.036261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:10.037752"], ["updated_at", "2023-02-17 19:27:10.037752"], ["role_id", 34]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000563402ddef00>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:10.039348"], ["updated_at", "2023-02-17 19:27:10.039348"]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:10.040681"], ["updated_at", "2023-02-17 19:27:10.040681"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:10.042283"], ["updated_at", "2023-02-17 19:27:10.042283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:10.043715"], ["updated_at", "2023-02-17 19:27:10.043715"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:10.045386"], ["updated_at", "2023-02-17 19:27:10.045386"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:10.046759"], ["updated_at", "2023-02-17 19:27:10.046759"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:10.049111"], ["updated_at", "2023-02-17 19:27:10.049111"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:10.051201"], ["updated_at", "2023-02-17 19:27:10.051201"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:10.052767"], ["updated_at", "2023-02-17 19:27:10.052767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms | Allocations: 3025)

Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:10.054034"], ["updated_at", "2023-02-17 19:27:10.054034"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:10.055779"], ["updated_at", "2023-02-17 19:27:10.055779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:10.057286"], ["updated_at", "2023-02-17 19:27:10.057286"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:10.059278"], ["updated_at", "2023-02-17 19:27:10.059278"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:10.060628"], ["updated_at", "2023-02-17 19:27:10.060628"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:10.062169"], ["updated_at", "2023-02-17 19:27:10.062169"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:10.063842"], ["updated_at", "2023-02-17 19:27:10.063842"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:10.065381"], ["updated_at", "2023-02-17 19:27:10.065381"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.067280"], ["updated_at", "2023-02-17 19:27:10.067280"], ["role_id", 34]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:10.069190"], ["updated_at", "2023-02-17 19:27:10.069190"]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:10.070761"], ["updated_at", "2023-02-17 19:27:10.070761"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:10.072362"], ["updated_at", "2023-02-17 19:27:10.072362"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:10.073588"], ["updated_at", "2023-02-17 19:27:10.073588"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:10.075174"], ["updated_at", "2023-02-17 19:27:10.075174"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.076537"], ["updated_at", "2023-02-17 19:27:10.076537"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:10.078376"], ["updated_at", "2023-02-17 19:27:10.078376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:10.079885"], ["updated_at", "2023-02-17 19:27:10.079885"], ["role_id", 34]]

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 6053)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:10.081675"], ["updated_at", "2023-02-17 19:27:10.081675"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:10.083753"], ["updated_at", "2023-02-17 19:27:10.083753"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:10.085594"], ["updated_at", "2023-02-17 19:27:10.085594"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:10.086906"], ["updated_at", "2023-02-17 19:27:10.086906"], ["role_id", 34]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:10.088704"], ["updated_at", "2023-02-17 19:27:10.088704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:10.090393"], ["updated_at", "2023-02-17 19:27:10.090393"], ["role_id", 34]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:10.092022"], ["updated_at", "2023-02-17 19:27:10.092022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:10.093901"], ["updated_at", "2023-02-17 19:27:10.093901"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:10.094655"], ["updated_at", "2023-02-17 19:27:10.094655"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:10.095637"], ["updated_at", "2023-02-17 19:27:10.095637"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.097478"], ["updated_at", "2023-02-17 19:27:10.097478"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:10.099198"], ["updated_at", "2023-02-17 19:27:10.099198"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:10.099909"], ["updated_at", "2023-02-17 19:27:10.099909"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:10.100882"], ["updated_at", "2023-02-17 19:27:10.100882"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:10.102499"], ["updated_at", "2023-02-17 19:27:10.102499"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:10.103945"], ["updated_at", "2023-02-17 19:27:10.103945"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:10.105745"], ["updated_at", "2023-02-17 19:27:10.105745"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:10.106457"], ["updated_at", "2023-02-17 19:27:10.106457"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:10.108159"], ["updated_at", "2023-02-17 19:27:10.108159"], ["role_id", 34]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:10.110017"], ["updated_at", "2023-02-17 19:27:10.110017"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:10.110710"], ["updated_at", "2023-02-17 19:27:10.110710"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:10.111551"], ["updated_at", "2023-02-17 19:27:10.111551"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:10.113065"], ["updated_at", "2023-02-17 19:27:10.113065"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:10.114748"], ["updated_at", "2023-02-17 19:27:10.114748"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:10.115420"], ["updated_at", "2023-02-17 19:27:10.115420"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:10.116452"], ["updated_at", "2023-02-17 19:27:10.116452"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:10.118757"], ["updated_at", "2023-02-17 19:27:10.118757"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:10.120525"], ["updated_at", "2023-02-17 19:27:10.120525"]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:10.120452"], ["updated_at", "2023-02-17 19:27:10.120452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:10.121659"], ["updated_at", "2023-02-17 19:27:10.121659"]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:10.123225"], ["updated_at", "2023-02-17 19:27:10.123225"], ["role_id", 35]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:10.124740"], ["updated_at", "2023-02-17 19:27:10.124740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:10.125825"], ["updated_at", "2023-02-17 19:27:10.125825"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:10.129493"], ["updated_at", "2023-02-17 19:27:10.129493"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:10.131186"], ["updated_at", "2023-02-17 19:27:10.131186"]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:10.131894"], ["updated_at", "2023-02-17 19:27:10.131894"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:10.133441"], ["updated_at", "2023-02-17 19:27:10.133441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:27:10 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 232)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:27:10 -0300

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 180)

QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:10.163299"], ["updated_at", "2023-02-17 19:27:10.163299"], ["role_id", 2]]
TRANSACTION (0.1ms)  rollback transaction
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:10.164957"], ["updated_at", "2023-02-17 19:27:10.164957"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:10.166329"], ["updated_at", "2023-02-17 19:27:10.166329"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.167432"], ["updated_at", "2023-02-17 19:27:10.167432"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.168594"], ["updated_at", "2023-02-17 19:27:10.168594"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.169551"], ["updated_at", "2023-02-17 19:27:10.169551"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.170290"], ["updated_at", "2023-02-17 19:27:10.170290"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.171231"], ["updated_at", "2023-02-17 19:27:10.171231"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:10.172071"], ["updated_at", "2023-02-17 19:27:10.172071"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.172982"], ["updated_at", "2023-02-17 19:27:10.172982"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.173857"], ["updated_at", "2023-02-17 19:27:10.173857"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.174764"], ["updated_at", "2023-02-17 19:27:10.174764"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.175517"], ["updated_at", "2023-02-17 19:27:10.175517"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.176278"], ["updated_at", "2023-02-17 19:27:10.176278"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.177020"], ["updated_at", "2023-02-17 19:27:10.177020"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.177783"], ["updated_at", "2023-02-17 19:27:10.177783"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.179079"], ["updated_at", "2023-02-17 19:27:10.179079"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.179981"], ["updated_at", "2023-02-17 19:27:10.179981"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.180730"], ["updated_at", "2023-02-17 19:27:10.180730"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.181509"], ["updated_at", "2023-02-17 19:27:10.181509"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.182540"], ["updated_at", "2023-02-17 19:27:10.182540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:10.194916"], ["updated_at", "2023-02-17 19:27:10.194916"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:10.196168"], ["updated_at", "2023-02-17 19:27:10.196168"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:10.197274"], ["updated_at", "2023-02-17 19:27:10.197274"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:10.198398"], ["updated_at", "2023-02-17 19:27:10.198398"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:10.199541"], ["updated_at", "2023-02-17 19:27:10.199541"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:10.200351"], ["updated_at", "2023-02-17 19:27:10.200351"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:10.201293"], ["updated_at", "2023-02-17 19:27:10.201293"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:10.202071"], ["updated_at", "2023-02-17 19:27:10.202071"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:10.202852"], ["updated_at", "2023-02-17 19:27:10.202852"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.203698"], ["updated_at", "2023-02-17 19:27:10.203698"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.204624"], ["updated_at", "2023-02-17 19:27:10.204624"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.205527"], ["updated_at", "2023-02-17 19:27:10.205527"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.207012"], ["updated_at", "2023-02-17 19:27:10.207012"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.208509"], ["updated_at", "2023-02-17 19:27:10.208509"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.209598"], ["updated_at", "2023-02-17 19:27:10.209598"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.210541"], ["updated_at", "2023-02-17 19:27:10.210541"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.211356"], ["updated_at", "2023-02-17 19:27:10.211356"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.212105"], ["updated_at", "2023-02-17 19:27:10.212105"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.212870"], ["updated_at", "2023-02-17 19:27:10.212870"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.213664"], ["updated_at", "2023-02-17 19:27:10.213664"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.214793"], ["updated_at", "2023-02-17 19:27:10.214793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.251779"], ["updated_at", "2023-02-17 19:27:10.251779"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.252876"], ["updated_at", "2023-02-17 19:27:10.252876"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.253914"], ["updated_at", "2023-02-17 19:27:10.253914"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.254682"], ["updated_at", "2023-02-17 19:27:10.254682"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.255502"], ["updated_at", "2023-02-17 19:27:10.255502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.256482"], ["updated_at", "2023-02-17 19:27:10.256482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.257766"], ["updated_at", "2023-02-17 19:27:10.257766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.258730"], ["updated_at", "2023-02-17 19:27:10.258730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.259479"], ["updated_at", "2023-02-17 19:27:10.259479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.260204"], ["updated_at", "2023-02-17 19:27:10.260204"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.260896"], ["updated_at", "2023-02-17 19:27:10.260896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.261745"], ["updated_at", "2023-02-17 19:27:10.261745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.262447"], ["updated_at", "2023-02-17 19:27:10.262447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.263153"], ["updated_at", "2023-02-17 19:27:10.263153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.263879"], ["updated_at", "2023-02-17 19:27:10.263879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.264562"], ["updated_at", "2023-02-17 19:27:10.264562"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.281663"], ["updated_at", "2023-02-17 19:27:10.281663"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.282650"], ["updated_at", "2023-02-17 19:27:10.282650"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.283483"], ["updated_at", "2023-02-17 19:27:10.283483"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.284370"], ["updated_at", "2023-02-17 19:27:10.284370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.285161"], ["updated_at", "2023-02-17 19:27:10.285161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.285892"], ["updated_at", "2023-02-17 19:27:10.285892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.286975"], ["updated_at", "2023-02-17 19:27:10.286975"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.288224"], ["updated_at", "2023-02-17 19:27:10.288224"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.289191"], ["updated_at", "2023-02-17 19:27:10.289191"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.289941"], ["updated_at", "2023-02-17 19:27:10.289941"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.290636"], ["updated_at", "2023-02-17 19:27:10.290636"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.291450"], ["updated_at", "2023-02-17 19:27:10.291450"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.292243"], ["updated_at", "2023-02-17 19:27:10.292243"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.293008"], ["updated_at", "2023-02-17 19:27:10.293008"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.293734"], ["updated_at", "2023-02-17 19:27:10.293734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.294430"], ["updated_at", "2023-02-17 19:27:10.294430"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.312193"], ["updated_at", "2023-02-17 19:27:10.312193"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.313151"], ["updated_at", "2023-02-17 19:27:10.313151"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.314018"], ["updated_at", "2023-02-17 19:27:10.314018"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.314792"], ["updated_at", "2023-02-17 19:27:10.314792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.315559"], ["updated_at", "2023-02-17 19:27:10.315559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.316498"], ["updated_at", "2023-02-17 19:27:10.316498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.317583"], ["updated_at", "2023-02-17 19:27:10.317583"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.318629"], ["updated_at", "2023-02-17 19:27:10.318629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.319380"], ["updated_at", "2023-02-17 19:27:10.319380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.320064"], ["updated_at", "2023-02-17 19:27:10.320064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.320777"], ["updated_at", "2023-02-17 19:27:10.320777"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.321570"], ["updated_at", "2023-02-17 19:27:10.321570"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.322302"], ["updated_at", "2023-02-17 19:27:10.322302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.323043"], ["updated_at", "2023-02-17 19:27:10.323043"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.323728"], ["updated_at", "2023-02-17 19:27:10.323728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.324430"], ["updated_at", "2023-02-17 19:27:10.324430"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.342862"], ["updated_at", "2023-02-17 19:27:10.342862"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.343841"], ["updated_at", "2023-02-17 19:27:10.343841"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.344585"], ["updated_at", "2023-02-17 19:27:10.344585"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.345428"], ["updated_at", "2023-02-17 19:27:10.345428"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.346223"], ["updated_at", "2023-02-17 19:27:10.346223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.347249"], ["updated_at", "2023-02-17 19:27:10.347249"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.348242"], ["updated_at", "2023-02-17 19:27:10.348242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.349207"], ["updated_at", "2023-02-17 19:27:10.349207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.350056"], ["updated_at", "2023-02-17 19:27:10.350056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.350799"], ["updated_at", "2023-02-17 19:27:10.350799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.351493"], ["updated_at", "2023-02-17 19:27:10.351493"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.352170"], ["updated_at", "2023-02-17 19:27:10.352170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.353009"], ["updated_at", "2023-02-17 19:27:10.353009"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.353724"], ["updated_at", "2023-02-17 19:27:10.353724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.354455"], ["updated_at", "2023-02-17 19:27:10.354455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.355156"], ["updated_at", "2023-02-17 19:27:10.355156"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.372180"], ["updated_at", "2023-02-17 19:27:10.372180"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.373147"], ["updated_at", "2023-02-17 19:27:10.373147"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.374060"], ["updated_at", "2023-02-17 19:27:10.374060"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.374782"], ["updated_at", "2023-02-17 19:27:10.374782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.375543"], ["updated_at", "2023-02-17 19:27:10.375543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.376291"], ["updated_at", "2023-02-17 19:27:10.376291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.377397"], ["updated_at", "2023-02-17 19:27:10.377397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.378443"], ["updated_at", "2023-02-17 19:27:10.378443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.379231"], ["updated_at", "2023-02-17 19:27:10.379231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.379926"], ["updated_at", "2023-02-17 19:27:10.379926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.380617"], ["updated_at", "2023-02-17 19:27:10.380617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.381481"], ["updated_at", "2023-02-17 19:27:10.381481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.382224"], ["updated_at", "2023-02-17 19:27:10.382224"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.382993"], ["updated_at", "2023-02-17 19:27:10.382993"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.383757"], ["updated_at", "2023-02-17 19:27:10.383757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.384533"], ["updated_at", "2023-02-17 19:27:10.384533"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.4ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.402963"], ["updated_at", "2023-02-17 19:27:10.402963"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.404225"], ["updated_at", "2023-02-17 19:27:10.404225"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.405155"], ["updated_at", "2023-02-17 19:27:10.405155"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.405955"], ["updated_at", "2023-02-17 19:27:10.405955"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.406846"], ["updated_at", "2023-02-17 19:27:10.406846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.408151"], ["updated_at", "2023-02-17 19:27:10.408151"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.409054"], ["updated_at", "2023-02-17 19:27:10.409054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.410336"], ["updated_at", "2023-02-17 19:27:10.410336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.411291"], ["updated_at", "2023-02-17 19:27:10.411291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.412093"], ["updated_at", "2023-02-17 19:27:10.412093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.412827"], ["updated_at", "2023-02-17 19:27:10.412827"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.413722"], ["updated_at", "2023-02-17 19:27:10.413722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.414550"], ["updated_at", "2023-02-17 19:27:10.414550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.415251"], ["updated_at", "2023-02-17 19:27:10.415251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.415986"], ["updated_at", "2023-02-17 19:27:10.415986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.416849"], ["updated_at", "2023-02-17 19:27:10.416849"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:27:10 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.4ms | Allocations: 3127)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:10.443657"], ["updated_at", "2023-02-17 19:27:10.443657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:10.445119"], ["updated_at", "2023-02-17 19:27:10.445119"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:10.448810"], ["updated_at", "2023-02-17 19:27:10.448810"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:10.450143"], ["updated_at", "2023-02-17 19:27:10.450143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:10.452963"], ["updated_at", "2023-02-17 19:27:10.452963"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:10.454300"], ["updated_at", "2023-02-17 19:27:10.454300"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:10.456715"], ["updated_at", "2023-02-17 19:27:10.456715"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:10.458439"], ["updated_at", "2023-02-17 19:27:10.458439"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:10.460061"], ["updated_at", "2023-02-17 19:27:10.460061"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:10.461663"], ["updated_at", "2023-02-17 19:27:10.461663"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:10.463191"], ["updated_at", "2023-02-17 19:27:10.463191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:10.464414"], ["updated_at", "2023-02-17 19:27:10.464414"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:10.465942"], ["updated_at", "2023-02-17 19:27:10.465942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:10.467235"], ["updated_at", "2023-02-17 19:27:10.467235"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:10.469206"], ["updated_at", "2023-02-17 19:27:10.469206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:10.470540"], ["updated_at", "2023-02-17 19:27:10.470540"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:10.471969"], ["updated_at", "2023-02-17 19:27:10.471969"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:10.473317"], ["updated_at", "2023-02-17 19:27:10.473317"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:10.474715"], ["updated_at", "2023-02-17 19:27:10.474715"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:10.475994"], ["updated_at", "2023-02-17 19:27:10.475994"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:10.477776"], ["updated_at", "2023-02-17 19:27:10.477776"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:10.479237"], ["updated_at", "2023-02-17 19:27:10.479237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:10.480789"], ["updated_at", "2023-02-17 19:27:10.480789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:10.482054"], ["updated_at", "2023-02-17 19:27:10.482054"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:10.483611"], ["updated_at", "2023-02-17 19:27:10.483611"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:10.485098"], ["updated_at", "2023-02-17 19:27:10.485098"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:10.486502"], ["updated_at", "2023-02-17 19:27:10.486502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:10.487925"], ["updated_at", "2023-02-17 19:27:10.487925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:10.489491"], ["updated_at", "2023-02-17 19:27:10.489491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:10.490702"], ["updated_at", "2023-02-17 19:27:10.490702"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:10.492398"], ["updated_at", "2023-02-17 19:27:10.492398"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:10.493650"], ["updated_at", "2023-02-17 19:27:10.493650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:10.495109"], ["updated_at", "2023-02-17 19:27:10.495109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:10.496335"], ["updated_at", "2023-02-17 19:27:10.496335"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:10.497962"], ["updated_at", "2023-02-17 19:27:10.497962"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:10.499652"], ["updated_at", "2023-02-17 19:27:10.499652"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:10.501166"], ["updated_at", "2023-02-17 19:27:10.501166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:10.502529"], ["updated_at", "2023-02-17 19:27:10.502529"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:10.503971"], ["updated_at", "2023-02-17 19:27:10.503971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:10.505186"], ["updated_at", "2023-02-17 19:27:10.505186"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:10.506817"], ["updated_at", "2023-02-17 19:27:10.506817"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:10.508468"], ["updated_at", "2023-02-17 19:27:10.508468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:10.510085"], ["updated_at", "2023-02-17 19:27:10.510085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.511424"], ["updated_at", "2023-02-17 19:27:10.511424"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:10.512836"], ["updated_at", "2023-02-17 19:27:10.512836"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:10.514272"], ["updated_at", "2023-02-17 19:27:10.514272"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:10.515795"], ["updated_at", "2023-02-17 19:27:10.515795"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:10.517025"], ["updated_at", "2023-02-17 19:27:10.517025"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:10.518769"], ["updated_at", "2023-02-17 19:27:10.518769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:10.520008"], ["updated_at", "2023-02-17 19:27:10.520008"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:10.521551"], ["updated_at", "2023-02-17 19:27:10.521551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:10.522928"], ["updated_at", "2023-02-17 19:27:10.522928"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:10.525137"], ["updated_at", "2023-02-17 19:27:10.525137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:10.526613"], ["updated_at", "2023-02-17 19:27:10.526613"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:10.528948"], ["updated_at", "2023-02-17 19:27:10.528948"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:10.530751"], ["updated_at", "2023-02-17 19:27:10.530751"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:10.532687"], ["updated_at", "2023-02-17 19:27:10.532687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:10.534359"], ["updated_at", "2023-02-17 19:27:10.534359"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:10.536334"], ["updated_at", "2023-02-17 19:27:10.536334"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:10.538032"], ["updated_at", "2023-02-17 19:27:10.538032"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:10.539985"], ["updated_at", "2023-02-17 19:27:10.539985"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:10.542121"], ["updated_at", "2023-02-17 19:27:10.542121"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:10.543890"], ["updated_at", "2023-02-17 19:27:10.543890"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.545903"], ["updated_at", "2023-02-17 19:27:10.545903"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:10.547974"], ["updated_at", "2023-02-17 19:27:10.547974"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:10.549861"], ["updated_at", "2023-02-17 19:27:10.549861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:10.551832"], ["updated_at", "2023-02-17 19:27:10.551832"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:10.553601"], ["updated_at", "2023-02-17 19:27:10.553601"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:10.555505"], ["updated_at", "2023-02-17 19:27:10.555505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.557157"], ["updated_at", "2023-02-17 19:27:10.557157"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:10.559068"], ["updated_at", "2023-02-17 19:27:10.559068"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:10.560795"], ["updated_at", "2023-02-17 19:27:10.560795"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:10.562746"], ["updated_at", "2023-02-17 19:27:10.562746"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:10.564452"], ["updated_at", "2023-02-17 19:27:10.564452"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:10.566216"], ["updated_at", "2023-02-17 19:27:10.566216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:10.567903"], ["updated_at", "2023-02-17 19:27:10.567903"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:10.569977"], ["updated_at", "2023-02-17 19:27:10.569977"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:10.571733"], ["updated_at", "2023-02-17 19:27:10.571733"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:10.573678"], ["updated_at", "2023-02-17 19:27:10.573678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:10.575349"], ["updated_at", "2023-02-17 19:27:10.575349"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:10.577131"], ["updated_at", "2023-02-17 19:27:10.577131"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.578912"], ["updated_at", "2023-02-17 19:27:10.578912"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:10.580646"], ["updated_at", "2023-02-17 19:27:10.580646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:10.582403"], ["updated_at", "2023-02-17 19:27:10.582403"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:10.584071"], ["updated_at", "2023-02-17 19:27:10.584071"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:10.585797"], ["updated_at", "2023-02-17 19:27:10.585797"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:10.587627"], ["updated_at", "2023-02-17 19:27:10.587627"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:10.589537"], ["updated_at", "2023-02-17 19:27:10.589537"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:10.591225"], ["updated_at", "2023-02-17 19:27:10.591225"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:10.603674"], ["updated_at", "2023-02-17 19:27:10.603674"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:10.605822"], ["updated_at", "2023-02-17 19:27:10.605822"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:10.607214"], ["updated_at", "2023-02-17 19:27:10.607214"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:10.608965"], ["updated_at", "2023-02-17 19:27:10.608965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:10.610512"], ["updated_at", "2023-02-17 19:27:10.610512"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:10.612298"], ["updated_at", "2023-02-17 19:27:10.612298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:10.613948"], ["updated_at", "2023-02-17 19:27:10.613948"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:10.615370"], ["updated_at", "2023-02-17 19:27:10.615370"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:10.617198"], ["updated_at", "2023-02-17 19:27:10.617198"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:10.619387"], ["updated_at", "2023-02-17 19:27:10.619387"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:10.621136"], ["updated_at", "2023-02-17 19:27:10.621136"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:10.622653"], ["updated_at", "2023-02-17 19:27:10.622653"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:10.635560"], ["updated_at", "2023-02-17 19:27:10.635560"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:10.636866"], ["updated_at", "2023-02-17 19:27:10.636866"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:10.637947"], ["updated_at", "2023-02-17 19:27:10.637947"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.639032"], ["updated_at", "2023-02-17 19:27:10.639032"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.639846"], ["updated_at", "2023-02-17 19:27:10.639846"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.640548"], ["updated_at", "2023-02-17 19:27:10.640548"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.641229"], ["updated_at", "2023-02-17 19:27:10.641229"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.642246"], ["updated_at", "2023-02-17 19:27:10.642246"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:10.643123"], ["updated_at", "2023-02-17 19:27:10.643123"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.643984"], ["updated_at", "2023-02-17 19:27:10.643984"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.644801"], ["updated_at", "2023-02-17 19:27:10.644801"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.645826"], ["updated_at", "2023-02-17 19:27:10.645826"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.646702"], ["updated_at", "2023-02-17 19:27:10.646702"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.647804"], ["updated_at", "2023-02-17 19:27:10.647804"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.648982"], ["updated_at", "2023-02-17 19:27:10.648982"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.650286"], ["updated_at", "2023-02-17 19:27:10.650286"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.651266"], ["updated_at", "2023-02-17 19:27:10.651266"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.652260"], ["updated_at", "2023-02-17 19:27:10.652260"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.653446"], ["updated_at", "2023-02-17 19:27:10.653446"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.654514"], ["updated_at", "2023-02-17 19:27:10.654514"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.655332"], ["updated_at", "2023-02-17 19:27:10.655332"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:10.667572"], ["updated_at", "2023-02-17 19:27:10.667572"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:10.668960"], ["updated_at", "2023-02-17 19:27:10.668960"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:10.669915"], ["updated_at", "2023-02-17 19:27:10.669915"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:10.670768"], ["updated_at", "2023-02-17 19:27:10.670768"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:10.671742"], ["updated_at", "2023-02-17 19:27:10.671742"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:10.672483"], ["updated_at", "2023-02-17 19:27:10.672483"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:10.673197"], ["updated_at", "2023-02-17 19:27:10.673197"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:10.673880"], ["updated_at", "2023-02-17 19:27:10.673880"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:10.674612"], ["updated_at", "2023-02-17 19:27:10.674612"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.675564"], ["updated_at", "2023-02-17 19:27:10.675564"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.676354"], ["updated_at", "2023-02-17 19:27:10.676354"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.677088"], ["updated_at", "2023-02-17 19:27:10.677088"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.677815"], ["updated_at", "2023-02-17 19:27:10.677815"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.679035"], ["updated_at", "2023-02-17 19:27:10.679035"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.680023"], ["updated_at", "2023-02-17 19:27:10.680023"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.680804"], ["updated_at", "2023-02-17 19:27:10.680804"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.681572"], ["updated_at", "2023-02-17 19:27:10.681572"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.682306"], ["updated_at", "2023-02-17 19:27:10.682306"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.683216"], ["updated_at", "2023-02-17 19:27:10.683216"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.683984"], ["updated_at", "2023-02-17 19:27:10.683984"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:10.684695"], ["updated_at", "2023-02-17 19:27:10.684695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.701654"], ["updated_at", "2023-02-17 19:27:10.701654"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.702731"], ["updated_at", "2023-02-17 19:27:10.702731"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.703528"], ["updated_at", "2023-02-17 19:27:10.703528"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.704235"], ["updated_at", "2023-02-17 19:27:10.704235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.705109"], ["updated_at", "2023-02-17 19:27:10.705109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.705965"], ["updated_at", "2023-02-17 19:27:10.705965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.706704"], ["updated_at", "2023-02-17 19:27:10.706704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.707461"], ["updated_at", "2023-02-17 19:27:10.707461"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.708160"], ["updated_at", "2023-02-17 19:27:10.708160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.709359"], ["updated_at", "2023-02-17 19:27:10.709359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.710323"], ["updated_at", "2023-02-17 19:27:10.710323"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.711087"], ["updated_at", "2023-02-17 19:27:10.711087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.711781"], ["updated_at", "2023-02-17 19:27:10.711781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.712469"], ["updated_at", "2023-02-17 19:27:10.712469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.713350"], ["updated_at", "2023-02-17 19:27:10.713350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:10.714098"], ["updated_at", "2023-02-17 19:27:10.714098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.731317"], ["updated_at", "2023-02-17 19:27:10.731317"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.732555"], ["updated_at", "2023-02-17 19:27:10.732555"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.733406"], ["updated_at", "2023-02-17 19:27:10.733406"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.734115"], ["updated_at", "2023-02-17 19:27:10.734115"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.734863"], ["updated_at", "2023-02-17 19:27:10.734863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.735728"], ["updated_at", "2023-02-17 19:27:10.735728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.736460"], ["updated_at", "2023-02-17 19:27:10.736460"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.737168"], ["updated_at", "2023-02-17 19:27:10.737168"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.737862"], ["updated_at", "2023-02-17 19:27:10.737862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.738655"], ["updated_at", "2023-02-17 19:27:10.738655"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.739914"], ["updated_at", "2023-02-17 19:27:10.739914"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.740707"], ["updated_at", "2023-02-17 19:27:10.740707"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.741423"], ["updated_at", "2023-02-17 19:27:10.741423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.742112"], ["updated_at", "2023-02-17 19:27:10.742112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.743092"], ["updated_at", "2023-02-17 19:27:10.743092"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:10.744178"], ["updated_at", "2023-02-17 19:27:10.744178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.760320"], ["updated_at", "2023-02-17 19:27:10.760320"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.761292"], ["updated_at", "2023-02-17 19:27:10.761292"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.762252"], ["updated_at", "2023-02-17 19:27:10.762252"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.762975"], ["updated_at", "2023-02-17 19:27:10.762975"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.763766"], ["updated_at", "2023-02-17 19:27:10.763766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.764711"], ["updated_at", "2023-02-17 19:27:10.764711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.765503"], ["updated_at", "2023-02-17 19:27:10.765503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.766218"], ["updated_at", "2023-02-17 19:27:10.766218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.766998"], ["updated_at", "2023-02-17 19:27:10.766998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.767730"], ["updated_at", "2023-02-17 19:27:10.767730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.768698"], ["updated_at", "2023-02-17 19:27:10.768698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.769464"], ["updated_at", "2023-02-17 19:27:10.769464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.770175"], ["updated_at", "2023-02-17 19:27:10.770175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.770875"], ["updated_at", "2023-02-17 19:27:10.770875"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.771542"], ["updated_at", "2023-02-17 19:27:10.771542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:10.772366"], ["updated_at", "2023-02-17 19:27:10.772366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.791475"], ["updated_at", "2023-02-17 19:27:10.791475"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.792462"], ["updated_at", "2023-02-17 19:27:10.792462"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.793206"], ["updated_at", "2023-02-17 19:27:10.793206"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.793898"], ["updated_at", "2023-02-17 19:27:10.793898"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.794771"], ["updated_at", "2023-02-17 19:27:10.794771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.795521"], ["updated_at", "2023-02-17 19:27:10.795521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.796220"], ["updated_at", "2023-02-17 19:27:10.796220"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.796973"], ["updated_at", "2023-02-17 19:27:10.796973"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.797796"], ["updated_at", "2023-02-17 19:27:10.797796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.798785"], ["updated_at", "2023-02-17 19:27:10.798785"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.799711"], ["updated_at", "2023-02-17 19:27:10.799711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.800532"], ["updated_at", "2023-02-17 19:27:10.800532"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.801572"], ["updated_at", "2023-02-17 19:27:10.801572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.802623"], ["updated_at", "2023-02-17 19:27:10.802623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.803481"], ["updated_at", "2023-02-17 19:27:10.803481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:10.804256"], ["updated_at", "2023-02-17 19:27:10.804256"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.823994"], ["updated_at", "2023-02-17 19:27:10.823994"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.825133"], ["updated_at", "2023-02-17 19:27:10.825133"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.826087"], ["updated_at", "2023-02-17 19:27:10.826087"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.827106"], ["updated_at", "2023-02-17 19:27:10.827106"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.828234"], ["updated_at", "2023-02-17 19:27:10.828234"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.829422"], ["updated_at", "2023-02-17 19:27:10.829422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.830632"], ["updated_at", "2023-02-17 19:27:10.830632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.831624"], ["updated_at", "2023-02-17 19:27:10.831624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.832555"], ["updated_at", "2023-02-17 19:27:10.832555"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.833435"], ["updated_at", "2023-02-17 19:27:10.833435"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.834615"], ["updated_at", "2023-02-17 19:27:10.834615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.835876"], ["updated_at", "2023-02-17 19:27:10.835876"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.837129"], ["updated_at", "2023-02-17 19:27:10.837129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.838389"], ["updated_at", "2023-02-17 19:27:10.838389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.839502"], ["updated_at", "2023-02-17 19:27:10.839502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:10.840411"], ["updated_at", "2023-02-17 19:27:10.840411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:10.860170"], ["updated_at", "2023-02-17 19:27:10.860170"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:10.861365"], ["updated_at", "2023-02-17 19:27:10.861365"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:10.862302"], ["updated_at", "2023-02-17 19:27:10.862302"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:10.863225"], ["updated_at", "2023-02-17 19:27:10.863225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.864183"], ["updated_at", "2023-02-17 19:27:10.864183"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.865094"], ["updated_at", "2023-02-17 19:27:10.865094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.865891"], ["updated_at", "2023-02-17 19:27:10.865891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.866626"], ["updated_at", "2023-02-17 19:27:10.866626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.867655"], ["updated_at", "2023-02-17 19:27:10.867655"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.868429"], ["updated_at", "2023-02-17 19:27:10.868429"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.869243"], ["updated_at", "2023-02-17 19:27:10.869243"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.870006"], ["updated_at", "2023-02-17 19:27:10.870006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.870804"], ["updated_at", "2023-02-17 19:27:10.870804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.871551"], ["updated_at", "2023-02-17 19:27:10.871551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.872240"], ["updated_at", "2023-02-17 19:27:10.872240"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:10.872923"], ["updated_at", "2023-02-17 19:27:10.872923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:27:10 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:10.882772"], ["updated_at", "2023-02-17 19:27:10.882772"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:10.884209"], ["updated_at", "2023-02-17 19:27:10.884209"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:10.887461"], ["updated_at", "2023-02-17 19:27:10.887461"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:10.888759"], ["updated_at", "2023-02-17 19:27:10.888759"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:10.892432"], ["updated_at", "2023-02-17 19:27:10.892432"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:10.893748"], ["updated_at", "2023-02-17 19:27:10.893748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:10.895806"], ["updated_at", "2023-02-17 19:27:10.895806"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:10.897399"], ["updated_at", "2023-02-17 19:27:10.897399"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:10.899051"], ["updated_at", "2023-02-17 19:27:10.899051"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:10.900442"], ["updated_at", "2023-02-17 19:27:10.900442"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:10.902007"], ["updated_at", "2023-02-17 19:27:10.902007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:10.903226"], ["updated_at", "2023-02-17 19:27:10.903226"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:10.904651"], ["updated_at", "2023-02-17 19:27:10.904651"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:10.906043"], ["updated_at", "2023-02-17 19:27:10.906043"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:10.907508"], ["updated_at", "2023-02-17 19:27:10.907508"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:10.908855"], ["updated_at", "2023-02-17 19:27:10.908855"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:10.910259"], ["updated_at", "2023-02-17 19:27:10.910259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:10.911433"], ["updated_at", "2023-02-17 19:27:10.911433"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:10.912992"], ["updated_at", "2023-02-17 19:27:10.912992"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:10.914253"], ["updated_at", "2023-02-17 19:27:10.914253"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:10.915580"], ["updated_at", "2023-02-17 19:27:10.915580"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:10.917055"], ["updated_at", "2023-02-17 19:27:10.917055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:10.918488"], ["updated_at", "2023-02-17 19:27:10.918488"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:10.919790"], ["updated_at", "2023-02-17 19:27:10.919790"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:10.921300"], ["updated_at", "2023-02-17 19:27:10.921300"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:10.922487"], ["updated_at", "2023-02-17 19:27:10.922487"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:10.923927"], ["updated_at", "2023-02-17 19:27:10.923927"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:10.925108"], ["updated_at", "2023-02-17 19:27:10.925108"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:10.926475"], ["updated_at", "2023-02-17 19:27:10.926475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:10.927895"], ["updated_at", "2023-02-17 19:27:10.927895"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:10.929357"], ["updated_at", "2023-02-17 19:27:10.929357"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:10.930550"], ["updated_at", "2023-02-17 19:27:10.930550"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:10.932006"], ["updated_at", "2023-02-17 19:27:10.932006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:10.933237"], ["updated_at", "2023-02-17 19:27:10.933237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:10.934603"], ["updated_at", "2023-02-17 19:27:10.934603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:10.936044"], ["updated_at", "2023-02-17 19:27:10.936044"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:10.937503"], ["updated_at", "2023-02-17 19:27:10.937503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:10.938815"], ["updated_at", "2023-02-17 19:27:10.938815"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:10.940198"], ["updated_at", "2023-02-17 19:27:10.940198"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:10.941356"], ["updated_at", "2023-02-17 19:27:10.941356"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:10.942861"], ["updated_at", "2023-02-17 19:27:10.942861"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:10.944116"], ["updated_at", "2023-02-17 19:27:10.944116"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:10.945703"], ["updated_at", "2023-02-17 19:27:10.945703"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.947438"], ["updated_at", "2023-02-17 19:27:10.947438"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:10.948998"], ["updated_at", "2023-02-17 19:27:10.948998"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:10.950390"], ["updated_at", "2023-02-17 19:27:10.950390"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:10.951764"], ["updated_at", "2023-02-17 19:27:10.951764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:10.953038"], ["updated_at", "2023-02-17 19:27:10.953038"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:10.954416"], ["updated_at", "2023-02-17 19:27:10.954416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:10.955565"], ["updated_at", "2023-02-17 19:27:10.955565"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:10.957097"], ["updated_at", "2023-02-17 19:27:10.957097"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:10.958375"], ["updated_at", "2023-02-17 19:27:10.958375"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:10.959736"], ["updated_at", "2023-02-17 19:27:10.959736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:10.961037"], ["updated_at", "2023-02-17 19:27:10.961037"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:10.962433"], ["updated_at", "2023-02-17 19:27:10.962433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:10.963612"], ["updated_at", "2023-02-17 19:27:10.963612"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:10.965190"], ["updated_at", "2023-02-17 19:27:10.965190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:10.966425"], ["updated_at", "2023-02-17 19:27:10.966425"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:10.968053"], ["updated_at", "2023-02-17 19:27:10.968053"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:10.969347"], ["updated_at", "2023-02-17 19:27:10.969347"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:10.970707"], ["updated_at", "2023-02-17 19:27:10.970707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:10.972084"], ["updated_at", "2023-02-17 19:27:10.972084"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:10.973481"], ["updated_at", "2023-02-17 19:27:10.973481"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.974636"], ["updated_at", "2023-02-17 19:27:10.974636"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:10.976132"], ["updated_at", "2023-02-17 19:27:10.976132"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:10.977361"], ["updated_at", "2023-02-17 19:27:10.977361"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:10.978882"], ["updated_at", "2023-02-17 19:27:10.978882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:10.980180"], ["updated_at", "2023-02-17 19:27:10.980180"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:10.981558"], ["updated_at", "2023-02-17 19:27:10.981558"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.982804"], ["updated_at", "2023-02-17 19:27:10.982804"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:10.984254"], ["updated_at", "2023-02-17 19:27:10.984254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:10.985422"], ["updated_at", "2023-02-17 19:27:10.985422"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:10.987045"], ["updated_at", "2023-02-17 19:27:10.987045"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:10.988351"], ["updated_at", "2023-02-17 19:27:10.988351"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:10.989729"], ["updated_at", "2023-02-17 19:27:10.989729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:10.991042"], ["updated_at", "2023-02-17 19:27:10.991042"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:10.992375"], ["updated_at", "2023-02-17 19:27:10.992375"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:10.993551"], ["updated_at", "2023-02-17 19:27:10.993551"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:10.995465"], ["updated_at", "2023-02-17 19:27:10.995465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:10.996799"], ["updated_at", "2023-02-17 19:27:10.996799"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:10.998299"], ["updated_at", "2023-02-17 19:27:10.998299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:10.999487"], ["updated_at", "2023-02-17 19:27:10.999487"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:11.000823"], ["updated_at", "2023-02-17 19:27:11.000823"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:11.002177"], ["updated_at", "2023-02-17 19:27:11.002177"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:11.003534"], ["updated_at", "2023-02-17 19:27:11.003534"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:11.004679"], ["updated_at", "2023-02-17 19:27:11.004679"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:11.006198"], ["updated_at", "2023-02-17 19:27:11.006198"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:11.007426"], ["updated_at", "2023-02-17 19:27:11.007426"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:11.008900"], ["updated_at", "2023-02-17 19:27:11.008900"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:11.010289"], ["updated_at", "2023-02-17 19:27:11.010289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:11.011670"], ["updated_at", "2023-02-17 19:27:11.011670"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:11.012921"], ["updated_at", "2023-02-17 19:27:11.012921"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:11.014319"], ["updated_at", "2023-02-17 19:27:11.014319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:11.015483"], ["updated_at", "2023-02-17 19:27:11.015483"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:11.017049"], ["updated_at", "2023-02-17 19:27:11.017049"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:11.018351"], ["updated_at", "2023-02-17 19:27:11.018351"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:11.020150"], ["updated_at", "2023-02-17 19:27:11.020150"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:11.021756"], ["updated_at", "2023-02-17 19:27:11.021756"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:11.023240"], ["updated_at", "2023-02-17 19:27:11.023240"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:11.024577"], ["updated_at", "2023-02-17 19:27:11.024577"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:11.025660"], ["updated_at", "2023-02-17 19:27:11.025660"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:11.037231"], ["updated_at", "2023-02-17 19:27:11.037231"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:11.038543"], ["updated_at", "2023-02-17 19:27:11.038543"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:11.039682"], ["updated_at", "2023-02-17 19:27:11.039682"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.040638"], ["updated_at", "2023-02-17 19:27:11.040638"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.041442"], ["updated_at", "2023-02-17 19:27:11.041442"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.042118"], ["updated_at", "2023-02-17 19:27:11.042118"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.042793"], ["updated_at", "2023-02-17 19:27:11.042793"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.043588"], ["updated_at", "2023-02-17 19:27:11.043588"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:11.044321"], ["updated_at", "2023-02-17 19:27:11.044321"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.045198"], ["updated_at", "2023-02-17 19:27:11.045198"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.046023"], ["updated_at", "2023-02-17 19:27:11.046023"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.046897"], ["updated_at", "2023-02-17 19:27:11.046897"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.047986"], ["updated_at", "2023-02-17 19:27:11.047986"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.049020"], ["updated_at", "2023-02-17 19:27:11.049020"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.049880"], ["updated_at", "2023-02-17 19:27:11.049880"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.050737"], ["updated_at", "2023-02-17 19:27:11.050737"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.051500"], ["updated_at", "2023-02-17 19:27:11.051500"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.052242"], ["updated_at", "2023-02-17 19:27:11.052242"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.053001"], ["updated_at", "2023-02-17 19:27:11.053001"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.053719"], ["updated_at", "2023-02-17 19:27:11.053719"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.054607"], ["updated_at", "2023-02-17 19:27:11.054607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:11.066235"], ["updated_at", "2023-02-17 19:27:11.066235"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:11.067486"], ["updated_at", "2023-02-17 19:27:11.067486"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:11.068400"], ["updated_at", "2023-02-17 19:27:11.068400"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.069373"], ["updated_at", "2023-02-17 19:27:11.069373"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.070291"], ["updated_at", "2023-02-17 19:27:11.070291"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.071100"], ["updated_at", "2023-02-17 19:27:11.071100"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.072015"], ["updated_at", "2023-02-17 19:27:11.072015"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.072729"], ["updated_at", "2023-02-17 19:27:11.072729"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:11.073498"], ["updated_at", "2023-02-17 19:27:11.073498"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.074351"], ["updated_at", "2023-02-17 19:27:11.074351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.075292"], ["updated_at", "2023-02-17 19:27:11.075292"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.076153"], ["updated_at", "2023-02-17 19:27:11.076153"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.076910"], ["updated_at", "2023-02-17 19:27:11.076910"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.077688"], ["updated_at", "2023-02-17 19:27:11.077688"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.078437"], ["updated_at", "2023-02-17 19:27:11.078437"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.079265"], ["updated_at", "2023-02-17 19:27:11.079265"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.080017"], ["updated_at", "2023-02-17 19:27:11.080017"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.080738"], ["updated_at", "2023-02-17 19:27:11.080738"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.081455"], ["updated_at", "2023-02-17 19:27:11.081455"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.082193"], ["updated_at", "2023-02-17 19:27:11.082193"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.083137"], ["updated_at", "2023-02-17 19:27:11.083137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.099506"], ["updated_at", "2023-02-17 19:27:11.099506"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.100596"], ["updated_at", "2023-02-17 19:27:11.100596"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.101537"], ["updated_at", "2023-02-17 19:27:11.101537"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.102317"], ["updated_at", "2023-02-17 19:27:11.102317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.103110"], ["updated_at", "2023-02-17 19:27:11.103110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.103894"], ["updated_at", "2023-02-17 19:27:11.103894"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.104651"], ["updated_at", "2023-02-17 19:27:11.104651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.105835"], ["updated_at", "2023-02-17 19:27:11.105835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.106667"], ["updated_at", "2023-02-17 19:27:11.106667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.107409"], ["updated_at", "2023-02-17 19:27:11.107409"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.108172"], ["updated_at", "2023-02-17 19:27:11.108172"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.109000"], ["updated_at", "2023-02-17 19:27:11.109000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.109813"], ["updated_at", "2023-02-17 19:27:11.109813"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.110557"], ["updated_at", "2023-02-17 19:27:11.110557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.111281"], ["updated_at", "2023-02-17 19:27:11.111281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.111974"], ["updated_at", "2023-02-17 19:27:11.111974"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.128397"], ["updated_at", "2023-02-17 19:27:11.128397"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.129430"], ["updated_at", "2023-02-17 19:27:11.129430"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.130209"], ["updated_at", "2023-02-17 19:27:11.130209"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.130930"], ["updated_at", "2023-02-17 19:27:11.130930"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.131781"], ["updated_at", "2023-02-17 19:27:11.131781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.132547"], ["updated_at", "2023-02-17 19:27:11.132547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.133293"], ["updated_at", "2023-02-17 19:27:11.133293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.134026"], ["updated_at", "2023-02-17 19:27:11.134026"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.134715"], ["updated_at", "2023-02-17 19:27:11.134715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.135557"], ["updated_at", "2023-02-17 19:27:11.135557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.136394"], ["updated_at", "2023-02-17 19:27:11.136394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.137142"], ["updated_at", "2023-02-17 19:27:11.137142"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.137889"], ["updated_at", "2023-02-17 19:27:11.137889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.138597"], ["updated_at", "2023-02-17 19:27:11.138597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.139387"], ["updated_at", "2023-02-17 19:27:11.139387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.140121"], ["updated_at", "2023-02-17 19:27:11.140121"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.158549"], ["updated_at", "2023-02-17 19:27:11.158549"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.159558"], ["updated_at", "2023-02-17 19:27:11.159558"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.160630"], ["updated_at", "2023-02-17 19:27:11.160630"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.161497"], ["updated_at", "2023-02-17 19:27:11.161497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.162371"], ["updated_at", "2023-02-17 19:27:11.162371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.163215"], ["updated_at", "2023-02-17 19:27:11.163215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.164193"], ["updated_at", "2023-02-17 19:27:11.164193"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.165060"], ["updated_at", "2023-02-17 19:27:11.165060"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.165924"], ["updated_at", "2023-02-17 19:27:11.165924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.166692"], ["updated_at", "2023-02-17 19:27:11.166692"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.167578"], ["updated_at", "2023-02-17 19:27:11.167578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.168611"], ["updated_at", "2023-02-17 19:27:11.168611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.169485"], ["updated_at", "2023-02-17 19:27:11.169485"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.170240"], ["updated_at", "2023-02-17 19:27:11.170240"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.171092"], ["updated_at", "2023-02-17 19:27:11.171092"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.172230"], ["updated_at", "2023-02-17 19:27:11.172230"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.190693"], ["updated_at", "2023-02-17 19:27:11.190693"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.191821"], ["updated_at", "2023-02-17 19:27:11.191821"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.192735"], ["updated_at", "2023-02-17 19:27:11.192735"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.193610"], ["updated_at", "2023-02-17 19:27:11.193610"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.194683"], ["updated_at", "2023-02-17 19:27:11.194683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.195574"], ["updated_at", "2023-02-17 19:27:11.195574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.196420"], ["updated_at", "2023-02-17 19:27:11.196420"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.197269"], ["updated_at", "2023-02-17 19:27:11.197269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.198316"], ["updated_at", "2023-02-17 19:27:11.198316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.199216"], ["updated_at", "2023-02-17 19:27:11.199216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.200065"], ["updated_at", "2023-02-17 19:27:11.200065"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.200936"], ["updated_at", "2023-02-17 19:27:11.200936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.201996"], ["updated_at", "2023-02-17 19:27:11.201996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.202806"], ["updated_at", "2023-02-17 19:27:11.202806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.203654"], ["updated_at", "2023-02-17 19:27:11.203654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.204449"], ["updated_at", "2023-02-17 19:27:11.204449"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.223599"], ["updated_at", "2023-02-17 19:27:11.223599"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.224745"], ["updated_at", "2023-02-17 19:27:11.224745"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.225821"], ["updated_at", "2023-02-17 19:27:11.225821"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.226801"], ["updated_at", "2023-02-17 19:27:11.226801"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.227753"], ["updated_at", "2023-02-17 19:27:11.227753"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.228670"], ["updated_at", "2023-02-17 19:27:11.228670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.229650"], ["updated_at", "2023-02-17 19:27:11.229650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.230530"], ["updated_at", "2023-02-17 19:27:11.230530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.231352"], ["updated_at", "2023-02-17 19:27:11.231352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.232096"], ["updated_at", "2023-02-17 19:27:11.232096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.232962"], ["updated_at", "2023-02-17 19:27:11.232962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.234020"], ["updated_at", "2023-02-17 19:27:11.234020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.234873"], ["updated_at", "2023-02-17 19:27:11.234873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.235795"], ["updated_at", "2023-02-17 19:27:11.235795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.236629"], ["updated_at", "2023-02-17 19:27:11.236629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.237705"], ["updated_at", "2023-02-17 19:27:11.237705"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.256426"], ["updated_at", "2023-02-17 19:27:11.256426"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.257616"], ["updated_at", "2023-02-17 19:27:11.257616"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.258770"], ["updated_at", "2023-02-17 19:27:11.258770"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.259637"], ["updated_at", "2023-02-17 19:27:11.259637"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.260520"], ["updated_at", "2023-02-17 19:27:11.260520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.261523"], ["updated_at", "2023-02-17 19:27:11.261523"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.262457"], ["updated_at", "2023-02-17 19:27:11.262457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.263358"], ["updated_at", "2023-02-17 19:27:11.263358"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.264224"], ["updated_at", "2023-02-17 19:27:11.264224"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.265078"], ["updated_at", "2023-02-17 19:27:11.265078"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.266125"], ["updated_at", "2023-02-17 19:27:11.266125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.267057"], ["updated_at", "2023-02-17 19:27:11.267057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.267988"], ["updated_at", "2023-02-17 19:27:11.267988"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.268940"], ["updated_at", "2023-02-17 19:27:11.268940"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.269943"], ["updated_at", "2023-02-17 19:27:11.269943"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.270784"], ["updated_at", "2023-02-17 19:27:11.270784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:27:11 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.5ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 15ms (Views: 11.3ms | ActiveRecord: 0.6ms | Allocations: 9579)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:11.296192"], ["updated_at", "2023-02-17 19:27:11.296192"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:11.297823"], ["updated_at", "2023-02-17 19:27:11.297823"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:11.301231"], ["updated_at", "2023-02-17 19:27:11.301231"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:11.302527"], ["updated_at", "2023-02-17 19:27:11.302527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:11.305801"], ["updated_at", "2023-02-17 19:27:11.305801"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:11.307168"], ["updated_at", "2023-02-17 19:27:11.307168"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:11.309576"], ["updated_at", "2023-02-17 19:27:11.309576"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:11.311322"], ["updated_at", "2023-02-17 19:27:11.311322"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:11.313079"], ["updated_at", "2023-02-17 19:27:11.313079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:11.314659"], ["updated_at", "2023-02-17 19:27:11.314659"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:11.316268"], ["updated_at", "2023-02-17 19:27:11.316268"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:11.317703"], ["updated_at", "2023-02-17 19:27:11.317703"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:11.319554"], ["updated_at", "2023-02-17 19:27:11.319554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:11.320979"], ["updated_at", "2023-02-17 19:27:11.320979"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:11.322659"], ["updated_at", "2023-02-17 19:27:11.322659"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:11.324022"], ["updated_at", "2023-02-17 19:27:11.324022"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:11.325571"], ["updated_at", "2023-02-17 19:27:11.325571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:11.327148"], ["updated_at", "2023-02-17 19:27:11.327148"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:11.328802"], ["updated_at", "2023-02-17 19:27:11.328802"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:11.330377"], ["updated_at", "2023-02-17 19:27:11.330377"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:11.331943"], ["updated_at", "2023-02-17 19:27:11.331943"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:11.333405"], ["updated_at", "2023-02-17 19:27:11.333405"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:11.335075"], ["updated_at", "2023-02-17 19:27:11.335075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:11.336444"], ["updated_at", "2023-02-17 19:27:11.336444"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:11.338236"], ["updated_at", "2023-02-17 19:27:11.338236"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:11.339607"], ["updated_at", "2023-02-17 19:27:11.339607"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:11.341268"], ["updated_at", "2023-02-17 19:27:11.341268"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:11.342642"], ["updated_at", "2023-02-17 19:27:11.342642"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:11.344169"], ["updated_at", "2023-02-17 19:27:11.344169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:11.345766"], ["updated_at", "2023-02-17 19:27:11.345766"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:11.347322"], ["updated_at", "2023-02-17 19:27:11.347322"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:11.348859"], ["updated_at", "2023-02-17 19:27:11.348859"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:11.350527"], ["updated_at", "2023-02-17 19:27:11.350527"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:11.352507"], ["updated_at", "2023-02-17 19:27:11.352507"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:11.354412"], ["updated_at", "2023-02-17 19:27:11.354412"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:11.355818"], ["updated_at", "2023-02-17 19:27:11.355818"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:11.357499"], ["updated_at", "2023-02-17 19:27:11.357499"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:11.358909"], ["updated_at", "2023-02-17 19:27:11.358909"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:11.360595"], ["updated_at", "2023-02-17 19:27:11.360595"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:11.362067"], ["updated_at", "2023-02-17 19:27:11.362067"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:11.363640"], ["updated_at", "2023-02-17 19:27:11.363640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:11.365170"], ["updated_at", "2023-02-17 19:27:11.365170"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:11.366747"], ["updated_at", "2023-02-17 19:27:11.366747"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:11.368321"], ["updated_at", "2023-02-17 19:27:11.368321"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:11.370026"], ["updated_at", "2023-02-17 19:27:11.370026"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:11.371434"], ["updated_at", "2023-02-17 19:27:11.371434"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:11.373192"], ["updated_at", "2023-02-17 19:27:11.373192"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:11.374742"], ["updated_at", "2023-02-17 19:27:11.374742"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:11.376402"], ["updated_at", "2023-02-17 19:27:11.376402"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:11.377848"], ["updated_at", "2023-02-17 19:27:11.377848"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:11.379541"], ["updated_at", "2023-02-17 19:27:11.379541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:11.380896"], ["updated_at", "2023-02-17 19:27:11.380896"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:11.382637"], ["updated_at", "2023-02-17 19:27:11.382637"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:11.384132"], ["updated_at", "2023-02-17 19:27:11.384132"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:11.385902"], ["updated_at", "2023-02-17 19:27:11.385902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:11.387352"], ["updated_at", "2023-02-17 19:27:11.387352"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:11.389023"], ["updated_at", "2023-02-17 19:27:11.389023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:11.390613"], ["updated_at", "2023-02-17 19:27:11.390613"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:11.392185"], ["updated_at", "2023-02-17 19:27:11.392185"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:11.393658"], ["updated_at", "2023-02-17 19:27:11.393658"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:11.395286"], ["updated_at", "2023-02-17 19:27:11.395286"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:11.396644"], ["updated_at", "2023-02-17 19:27:11.396644"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:11.398412"], ["updated_at", "2023-02-17 19:27:11.398412"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:11.399862"], ["updated_at", "2023-02-17 19:27:11.399862"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:11.401602"], ["updated_at", "2023-02-17 19:27:11.401602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:11.403056"], ["updated_at", "2023-02-17 19:27:11.403056"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:11.404580"], ["updated_at", "2023-02-17 19:27:11.404580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:11.406178"], ["updated_at", "2023-02-17 19:27:11.406178"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:11.407753"], ["updated_at", "2023-02-17 19:27:11.407753"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:11.409245"], ["updated_at", "2023-02-17 19:27:11.409245"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:11.410880"], ["updated_at", "2023-02-17 19:27:11.410880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:11.412326"], ["updated_at", "2023-02-17 19:27:11.412326"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:11.414016"], ["updated_at", "2023-02-17 19:27:11.414016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:11.415395"], ["updated_at", "2023-02-17 19:27:11.415395"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:11.417186"], ["updated_at", "2023-02-17 19:27:11.417186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:11.418674"], ["updated_at", "2023-02-17 19:27:11.418674"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:11.420416"], ["updated_at", "2023-02-17 19:27:11.420416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:11.421832"], ["updated_at", "2023-02-17 19:27:11.421832"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:11.423345"], ["updated_at", "2023-02-17 19:27:11.423345"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:11.424827"], ["updated_at", "2023-02-17 19:27:11.424827"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:11.427011"], ["updated_at", "2023-02-17 19:27:11.427011"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:11.428485"], ["updated_at", "2023-02-17 19:27:11.428485"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:11.430324"], ["updated_at", "2023-02-17 19:27:11.430324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:11.431679"], ["updated_at", "2023-02-17 19:27:11.431679"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:11.433275"], ["updated_at", "2023-02-17 19:27:11.433275"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:11.434733"], ["updated_at", "2023-02-17 19:27:11.434733"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:11.436229"], ["updated_at", "2023-02-17 19:27:11.436229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:11.437784"], ["updated_at", "2023-02-17 19:27:11.437784"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:11.439341"], ["updated_at", "2023-02-17 19:27:11.439341"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:11.440624"], ["updated_at", "2023-02-17 19:27:11.440624"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:11.442076"], ["updated_at", "2023-02-17 19:27:11.442076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:11.443280"], ["updated_at", "2023-02-17 19:27:11.443280"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:11.444802"], ["updated_at", "2023-02-17 19:27:11.444802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:11.446124"], ["updated_at", "2023-02-17 19:27:11.446124"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:11.447528"], ["updated_at", "2023-02-17 19:27:11.447528"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:11.448780"], ["updated_at", "2023-02-17 19:27:11.448780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:11.450258"], ["updated_at", "2023-02-17 19:27:11.450258"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:11.451751"], ["updated_at", "2023-02-17 19:27:11.451751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:11.453593"], ["updated_at", "2023-02-17 19:27:11.453593"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:11.454836"], ["updated_at", "2023-02-17 19:27:11.454836"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:11.456033"], ["updated_at", "2023-02-17 19:27:11.456033"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:11.468008"], ["updated_at", "2023-02-17 19:27:11.468008"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:11.469405"], ["updated_at", "2023-02-17 19:27:11.469405"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:11.470427"], ["updated_at", "2023-02-17 19:27:11.470427"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.471444"], ["updated_at", "2023-02-17 19:27:11.471444"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.472362"], ["updated_at", "2023-02-17 19:27:11.472362"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.473206"], ["updated_at", "2023-02-17 19:27:11.473206"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.473955"], ["updated_at", "2023-02-17 19:27:11.473955"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.474835"], ["updated_at", "2023-02-17 19:27:11.474835"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:11.475718"], ["updated_at", "2023-02-17 19:27:11.475718"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.476657"], ["updated_at", "2023-02-17 19:27:11.476657"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.477723"], ["updated_at", "2023-02-17 19:27:11.477723"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.478631"], ["updated_at", "2023-02-17 19:27:11.478631"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.479460"], ["updated_at", "2023-02-17 19:27:11.479460"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.480219"], ["updated_at", "2023-02-17 19:27:11.480219"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.481128"], ["updated_at", "2023-02-17 19:27:11.481128"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.482042"], ["updated_at", "2023-02-17 19:27:11.482042"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.482845"], ["updated_at", "2023-02-17 19:27:11.482845"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.483697"], ["updated_at", "2023-02-17 19:27:11.483697"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.484655"], ["updated_at", "2023-02-17 19:27:11.484655"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.485584"], ["updated_at", "2023-02-17 19:27:11.485584"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.486441"], ["updated_at", "2023-02-17 19:27:11.486441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:11.498773"], ["updated_at", "2023-02-17 19:27:11.498773"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:11.500289"], ["updated_at", "2023-02-17 19:27:11.500289"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:11.501347"], ["updated_at", "2023-02-17 19:27:11.501347"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.502316"], ["updated_at", "2023-02-17 19:27:11.502316"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.503114"], ["updated_at", "2023-02-17 19:27:11.503114"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.504103"], ["updated_at", "2023-02-17 19:27:11.504103"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.504955"], ["updated_at", "2023-02-17 19:27:11.504955"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.505767"], ["updated_at", "2023-02-17 19:27:11.505767"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:11.506638"], ["updated_at", "2023-02-17 19:27:11.506638"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.507751"], ["updated_at", "2023-02-17 19:27:11.507751"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.508737"], ["updated_at", "2023-02-17 19:27:11.508737"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.509731"], ["updated_at", "2023-02-17 19:27:11.509731"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.510610"], ["updated_at", "2023-02-17 19:27:11.510610"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.511612"], ["updated_at", "2023-02-17 19:27:11.511612"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.512466"], ["updated_at", "2023-02-17 19:27:11.512466"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.513318"], ["updated_at", "2023-02-17 19:27:11.513318"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.514085"], ["updated_at", "2023-02-17 19:27:11.514085"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.515031"], ["updated_at", "2023-02-17 19:27:11.515031"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.515874"], ["updated_at", "2023-02-17 19:27:11.515874"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.516772"], ["updated_at", "2023-02-17 19:27:11.516772"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.517664"], ["updated_at", "2023-02-17 19:27:11.517664"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.536384"], ["updated_at", "2023-02-17 19:27:11.536384"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.537576"], ["updated_at", "2023-02-17 19:27:11.537576"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.538499"], ["updated_at", "2023-02-17 19:27:11.538499"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.539241"], ["updated_at", "2023-02-17 19:27:11.539241"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.540054"], ["updated_at", "2023-02-17 19:27:11.540054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.540827"], ["updated_at", "2023-02-17 19:27:11.540827"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.541717"], ["updated_at", "2023-02-17 19:27:11.541717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.542483"], ["updated_at", "2023-02-17 19:27:11.542483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.543184"], ["updated_at", "2023-02-17 19:27:11.543184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.543905"], ["updated_at", "2023-02-17 19:27:11.543905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.544618"], ["updated_at", "2023-02-17 19:27:11.544618"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.545451"], ["updated_at", "2023-02-17 19:27:11.545451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.546194"], ["updated_at", "2023-02-17 19:27:11.546194"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.546910"], ["updated_at", "2023-02-17 19:27:11.546910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.547621"], ["updated_at", "2023-02-17 19:27:11.547621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.548344"], ["updated_at", "2023-02-17 19:27:11.548344"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.571367"], ["updated_at", "2023-02-17 19:27:11.571367"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.572578"], ["updated_at", "2023-02-17 19:27:11.572578"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.573400"], ["updated_at", "2023-02-17 19:27:11.573400"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.574130"], ["updated_at", "2023-02-17 19:27:11.574130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.574893"], ["updated_at", "2023-02-17 19:27:11.574893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.575600"], ["updated_at", "2023-02-17 19:27:11.575600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.576464"], ["updated_at", "2023-02-17 19:27:11.576464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.577201"], ["updated_at", "2023-02-17 19:27:11.577201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.578142"], ["updated_at", "2023-02-17 19:27:11.578142"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.578946"], ["updated_at", "2023-02-17 19:27:11.578946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.579675"], ["updated_at", "2023-02-17 19:27:11.579675"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.580352"], ["updated_at", "2023-02-17 19:27:11.580352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.581058"], ["updated_at", "2023-02-17 19:27:11.581058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.581911"], ["updated_at", "2023-02-17 19:27:11.581911"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.582662"], ["updated_at", "2023-02-17 19:27:11.582662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.583386"], ["updated_at", "2023-02-17 19:27:11.583386"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.599250"], ["updated_at", "2023-02-17 19:27:11.599250"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.600319"], ["updated_at", "2023-02-17 19:27:11.600319"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.601227"], ["updated_at", "2023-02-17 19:27:11.601227"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.601972"], ["updated_at", "2023-02-17 19:27:11.601972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.602718"], ["updated_at", "2023-02-17 19:27:11.602718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.603442"], ["updated_at", "2023-02-17 19:27:11.603442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.604232"], ["updated_at", "2023-02-17 19:27:11.604232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.604956"], ["updated_at", "2023-02-17 19:27:11.604956"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.605661"], ["updated_at", "2023-02-17 19:27:11.605661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.606347"], ["updated_at", "2023-02-17 19:27:11.606347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.607022"], ["updated_at", "2023-02-17 19:27:11.607022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.607721"], ["updated_at", "2023-02-17 19:27:11.607721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.608690"], ["updated_at", "2023-02-17 19:27:11.608690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.609462"], ["updated_at", "2023-02-17 19:27:11.609462"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.610226"], ["updated_at", "2023-02-17 19:27:11.610226"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:11.610937"], ["updated_at", "2023-02-17 19:27:11.610937"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.626794"], ["updated_at", "2023-02-17 19:27:11.626794"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.627793"], ["updated_at", "2023-02-17 19:27:11.627793"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.628845"], ["updated_at", "2023-02-17 19:27:11.628845"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.629906"], ["updated_at", "2023-02-17 19:27:11.629906"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.630744"], ["updated_at", "2023-02-17 19:27:11.630744"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.631482"], ["updated_at", "2023-02-17 19:27:11.631482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.632177"], ["updated_at", "2023-02-17 19:27:11.632177"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.633060"], ["updated_at", "2023-02-17 19:27:11.633060"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.633815"], ["updated_at", "2023-02-17 19:27:11.633815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.634511"], ["updated_at", "2023-02-17 19:27:11.634511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.635212"], ["updated_at", "2023-02-17 19:27:11.635212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.635908"], ["updated_at", "2023-02-17 19:27:11.635908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.636710"], ["updated_at", "2023-02-17 19:27:11.636710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.637449"], ["updated_at", "2023-02-17 19:27:11.637449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.638150"], ["updated_at", "2023-02-17 19:27:11.638150"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:11.638853"], ["updated_at", "2023-02-17 19:27:11.638853"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.655238"], ["updated_at", "2023-02-17 19:27:11.655238"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.656403"], ["updated_at", "2023-02-17 19:27:11.656403"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.657158"], ["updated_at", "2023-02-17 19:27:11.657158"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.657858"], ["updated_at", "2023-02-17 19:27:11.657858"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.658619"], ["updated_at", "2023-02-17 19:27:11.658619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.659463"], ["updated_at", "2023-02-17 19:27:11.659463"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.660233"], ["updated_at", "2023-02-17 19:27:11.660233"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.660968"], ["updated_at", "2023-02-17 19:27:11.660968"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.661673"], ["updated_at", "2023-02-17 19:27:11.661673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.662378"], ["updated_at", "2023-02-17 19:27:11.662378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.663225"], ["updated_at", "2023-02-17 19:27:11.663225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.663954"], ["updated_at", "2023-02-17 19:27:11.663954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.664657"], ["updated_at", "2023-02-17 19:27:11.664657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.665352"], ["updated_at", "2023-02-17 19:27:11.665352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.666049"], ["updated_at", "2023-02-17 19:27:11.666049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:11.666867"], ["updated_at", "2023-02-17 19:27:11.666867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.682651"], ["updated_at", "2023-02-17 19:27:11.682651"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.683714"], ["updated_at", "2023-02-17 19:27:11.683714"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.684578"], ["updated_at", "2023-02-17 19:27:11.684578"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.685321"], ["updated_at", "2023-02-17 19:27:11.685321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.686088"], ["updated_at", "2023-02-17 19:27:11.686088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.686819"], ["updated_at", "2023-02-17 19:27:11.686819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.687588"], ["updated_at", "2023-02-17 19:27:11.687588"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.688347"], ["updated_at", "2023-02-17 19:27:11.688347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.689075"], ["updated_at", "2023-02-17 19:27:11.689075"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.689799"], ["updated_at", "2023-02-17 19:27:11.689799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.690501"], ["updated_at", "2023-02-17 19:27:11.690501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.691287"], ["updated_at", "2023-02-17 19:27:11.691287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.692070"], ["updated_at", "2023-02-17 19:27:11.692070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.692780"], ["updated_at", "2023-02-17 19:27:11.692780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.693507"], ["updated_at", "2023-02-17 19:27:11.693507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:11.694196"], ["updated_at", "2023-02-17 19:27:11.694196"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:27:11 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:11.712082"], ["updated_at", "2023-02-17 19:27:11.712082"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:11.713529"], ["updated_at", "2023-02-17 19:27:11.713529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:11.716460"], ["updated_at", "2023-02-17 19:27:11.716460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:11.717710"], ["updated_at", "2023-02-17 19:27:11.717710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:11.720425"], ["updated_at", "2023-02-17 19:27:11.720425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:11.721718"], ["updated_at", "2023-02-17 19:27:11.721718"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:11.723811"], ["updated_at", "2023-02-17 19:27:11.723811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:11.725265"], ["updated_at", "2023-02-17 19:27:11.725265"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:11.726839"], ["updated_at", "2023-02-17 19:27:11.726839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:11.728086"], ["updated_at", "2023-02-17 19:27:11.728086"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:11.729628"], ["updated_at", "2023-02-17 19:27:11.729628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:11.730873"], ["updated_at", "2023-02-17 19:27:11.730873"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:11.732232"], ["updated_at", "2023-02-17 19:27:11.732232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:11.733524"], ["updated_at", "2023-02-17 19:27:11.733524"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:11.734953"], ["updated_at", "2023-02-17 19:27:11.734953"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:11.736223"], ["updated_at", "2023-02-17 19:27:11.736223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:11.737849"], ["updated_at", "2023-02-17 19:27:11.737849"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:11.739130"], ["updated_at", "2023-02-17 19:27:11.739130"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:11.741010"], ["updated_at", "2023-02-17 19:27:11.741010"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:11.742228"], ["updated_at", "2023-02-17 19:27:11.742228"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:11.743567"], ["updated_at", "2023-02-17 19:27:11.743567"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:11.744940"], ["updated_at", "2023-02-17 19:27:11.744940"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:11.746305"], ["updated_at", "2023-02-17 19:27:11.746305"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:11.747494"], ["updated_at", "2023-02-17 19:27:11.747494"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:11.749039"], ["updated_at", "2023-02-17 19:27:11.749039"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:11.750469"], ["updated_at", "2023-02-17 19:27:11.750469"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:11.752039"], ["updated_at", "2023-02-17 19:27:11.752039"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:11.753290"], ["updated_at", "2023-02-17 19:27:11.753290"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:11.754632"], ["updated_at", "2023-02-17 19:27:11.754632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:11.755938"], ["updated_at", "2023-02-17 19:27:11.755938"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:11.757731"], ["updated_at", "2023-02-17 19:27:11.757731"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:11.759590"], ["updated_at", "2023-02-17 19:27:11.759590"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:11.761360"], ["updated_at", "2023-02-17 19:27:11.761360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:11.762583"], ["updated_at", "2023-02-17 19:27:11.762583"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:11.764101"], ["updated_at", "2023-02-17 19:27:11.764101"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:11.765298"], ["updated_at", "2023-02-17 19:27:11.765298"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:11.766769"], ["updated_at", "2023-02-17 19:27:11.766769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:11.768103"], ["updated_at", "2023-02-17 19:27:11.768103"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:11.769888"], ["updated_at", "2023-02-17 19:27:11.769888"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:11.771493"], ["updated_at", "2023-02-17 19:27:11.771493"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:11.772922"], ["updated_at", "2023-02-17 19:27:11.772922"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:11.774098"], ["updated_at", "2023-02-17 19:27:11.774098"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:11.775705"], ["updated_at", "2023-02-17 19:27:11.775705"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:11.776898"], ["updated_at", "2023-02-17 19:27:11.776898"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:11.778333"], ["updated_at", "2023-02-17 19:27:11.778333"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:11.779672"], ["updated_at", "2023-02-17 19:27:11.779672"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:11.781430"], ["updated_at", "2023-02-17 19:27:11.781430"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:11.782823"], ["updated_at", "2023-02-17 19:27:11.782823"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:11.784403"], ["updated_at", "2023-02-17 19:27:11.784403"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:11.786007"], ["updated_at", "2023-02-17 19:27:11.786007"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:11.787771"], ["updated_at", "2023-02-17 19:27:11.787771"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:11.789566"], ["updated_at", "2023-02-17 19:27:11.789566"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:11.791156"], ["updated_at", "2023-02-17 19:27:11.791156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:11.792899"], ["updated_at", "2023-02-17 19:27:11.792899"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:11.794511"], ["updated_at", "2023-02-17 19:27:11.794511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:11.796011"], ["updated_at", "2023-02-17 19:27:11.796011"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:11.797640"], ["updated_at", "2023-02-17 19:27:11.797640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:11.798946"], ["updated_at", "2023-02-17 19:27:11.798946"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:11.800647"], ["updated_at", "2023-02-17 19:27:11.800647"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:11.801905"], ["updated_at", "2023-02-17 19:27:11.801905"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:11.803372"], ["updated_at", "2023-02-17 19:27:11.803372"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:11.804829"], ["updated_at", "2023-02-17 19:27:11.804829"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:11.806268"], ["updated_at", "2023-02-17 19:27:11.806268"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:11.807574"], ["updated_at", "2023-02-17 19:27:11.807574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:11.808952"], ["updated_at", "2023-02-17 19:27:11.808952"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:11.810228"], ["updated_at", "2023-02-17 19:27:11.810228"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:11.811831"], ["updated_at", "2023-02-17 19:27:11.811831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:11.813048"], ["updated_at", "2023-02-17 19:27:11.813048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:11.814552"], ["updated_at", "2023-02-17 19:27:11.814552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:11.815858"], ["updated_at", "2023-02-17 19:27:11.815858"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:11.817261"], ["updated_at", "2023-02-17 19:27:11.817261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:11.818581"], ["updated_at", "2023-02-17 19:27:11.818581"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:11.820203"], ["updated_at", "2023-02-17 19:27:11.820203"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:11.821474"], ["updated_at", "2023-02-17 19:27:11.821474"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:11.822996"], ["updated_at", "2023-02-17 19:27:11.822996"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:11.824214"], ["updated_at", "2023-02-17 19:27:11.824214"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:11.825554"], ["updated_at", "2023-02-17 19:27:11.825554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:11.827006"], ["updated_at", "2023-02-17 19:27:11.827006"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:11.828393"], ["updated_at", "2023-02-17 19:27:11.828393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:11.829700"], ["updated_at", "2023-02-17 19:27:11.829700"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:11.831368"], ["updated_at", "2023-02-17 19:27:11.831368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:11.832968"], ["updated_at", "2023-02-17 19:27:11.832968"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:11.834372"], ["updated_at", "2023-02-17 19:27:11.834372"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:11.835757"], ["updated_at", "2023-02-17 19:27:11.835757"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:11.837301"], ["updated_at", "2023-02-17 19:27:11.837301"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:11.838522"], ["updated_at", "2023-02-17 19:27:11.838522"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:11.840082"], ["updated_at", "2023-02-17 19:27:11.840082"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:11.841338"], ["updated_at", "2023-02-17 19:27:11.841338"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:11.842712"], ["updated_at", "2023-02-17 19:27:11.842712"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:11.844112"], ["updated_at", "2023-02-17 19:27:11.844112"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:11.845519"], ["updated_at", "2023-02-17 19:27:11.845519"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:11.846779"], ["updated_at", "2023-02-17 19:27:11.846779"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:11.848234"], ["updated_at", "2023-02-17 19:27:11.848234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:11.849451"], ["updated_at", "2023-02-17 19:27:11.849451"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:11.851158"], ["updated_at", "2023-02-17 19:27:11.851158"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:11.852380"], ["updated_at", "2023-02-17 19:27:11.852380"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:11.853574"], ["updated_at", "2023-02-17 19:27:11.853574"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:11.855070"], ["updated_at", "2023-02-17 19:27:11.855070"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:11.856552"], ["updated_at", "2023-02-17 19:27:11.856552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:11.857725"], ["updated_at", "2023-02-17 19:27:11.857725"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:11.858980"], ["updated_at", "2023-02-17 19:27:11.858980"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:11.870865"], ["updated_at", "2023-02-17 19:27:11.870865"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:11.872384"], ["updated_at", "2023-02-17 19:27:11.872384"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:11.873413"], ["updated_at", "2023-02-17 19:27:11.873413"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.874266"], ["updated_at", "2023-02-17 19:27:11.874266"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.875142"], ["updated_at", "2023-02-17 19:27:11.875142"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.875969"], ["updated_at", "2023-02-17 19:27:11.875969"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.876699"], ["updated_at", "2023-02-17 19:27:11.876699"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.877410"], ["updated_at", "2023-02-17 19:27:11.877410"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:11.878155"], ["updated_at", "2023-02-17 19:27:11.878155"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.879186"], ["updated_at", "2023-02-17 19:27:11.879186"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.880154"], ["updated_at", "2023-02-17 19:27:11.880154"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.881136"], ["updated_at", "2023-02-17 19:27:11.881136"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.881998"], ["updated_at", "2023-02-17 19:27:11.881998"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.882991"], ["updated_at", "2023-02-17 19:27:11.882991"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.883843"], ["updated_at", "2023-02-17 19:27:11.883843"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.884689"], ["updated_at", "2023-02-17 19:27:11.884689"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.885608"], ["updated_at", "2023-02-17 19:27:11.885608"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.886390"], ["updated_at", "2023-02-17 19:27:11.886390"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.887132"], ["updated_at", "2023-02-17 19:27:11.887132"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.887860"], ["updated_at", "2023-02-17 19:27:11.887860"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.888980"], ["updated_at", "2023-02-17 19:27:11.888980"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:11.901812"], ["updated_at", "2023-02-17 19:27:11.901812"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:11.903096"], ["updated_at", "2023-02-17 19:27:11.903096"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:11.904131"], ["updated_at", "2023-02-17 19:27:11.904131"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.904999"], ["updated_at", "2023-02-17 19:27:11.904999"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.905836"], ["updated_at", "2023-02-17 19:27:11.905836"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.906557"], ["updated_at", "2023-02-17 19:27:11.906557"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.907388"], ["updated_at", "2023-02-17 19:27:11.907388"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:11.908202"], ["updated_at", "2023-02-17 19:27:11.908202"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:11.908993"], ["updated_at", "2023-02-17 19:27:11.908993"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.909993"], ["updated_at", "2023-02-17 19:27:11.909993"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.910870"], ["updated_at", "2023-02-17 19:27:11.910870"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.911776"], ["updated_at", "2023-02-17 19:27:11.911776"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.912578"], ["updated_at", "2023-02-17 19:27:11.912578"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.913357"], ["updated_at", "2023-02-17 19:27:11.913357"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.914153"], ["updated_at", "2023-02-17 19:27:11.914153"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.915058"], ["updated_at", "2023-02-17 19:27:11.915058"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.915906"], ["updated_at", "2023-02-17 19:27:11.915906"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.916736"], ["updated_at", "2023-02-17 19:27:11.916736"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.917590"], ["updated_at", "2023-02-17 19:27:11.917590"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.918389"], ["updated_at", "2023-02-17 19:27:11.918389"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:11.919283"], ["updated_at", "2023-02-17 19:27:11.919283"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.936271"], ["updated_at", "2023-02-17 19:27:11.936271"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.937466"], ["updated_at", "2023-02-17 19:27:11.937466"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.938486"], ["updated_at", "2023-02-17 19:27:11.938486"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.939276"], ["updated_at", "2023-02-17 19:27:11.939276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.940152"], ["updated_at", "2023-02-17 19:27:11.940152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.941019"], ["updated_at", "2023-02-17 19:27:11.941019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.941866"], ["updated_at", "2023-02-17 19:27:11.941866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.942644"], ["updated_at", "2023-02-17 19:27:11.942644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.943394"], ["updated_at", "2023-02-17 19:27:11.943394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.944112"], ["updated_at", "2023-02-17 19:27:11.944112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.944813"], ["updated_at", "2023-02-17 19:27:11.944813"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.945772"], ["updated_at", "2023-02-17 19:27:11.945772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.946532"], ["updated_at", "2023-02-17 19:27:11.946532"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.947274"], ["updated_at", "2023-02-17 19:27:11.947274"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.947990"], ["updated_at", "2023-02-17 19:27:11.947990"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:11.948790"], ["updated_at", "2023-02-17 19:27:11.948790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.966250"], ["updated_at", "2023-02-17 19:27:11.966250"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.967223"], ["updated_at", "2023-02-17 19:27:11.967223"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.968226"], ["updated_at", "2023-02-17 19:27:11.968226"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.969066"], ["updated_at", "2023-02-17 19:27:11.969066"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.969903"], ["updated_at", "2023-02-17 19:27:11.969903"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.971022"], ["updated_at", "2023-02-17 19:27:11.971022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.972040"], ["updated_at", "2023-02-17 19:27:11.972040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.972885"], ["updated_at", "2023-02-17 19:27:11.972885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.973666"], ["updated_at", "2023-02-17 19:27:11.973666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.974373"], ["updated_at", "2023-02-17 19:27:11.974373"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.975070"], ["updated_at", "2023-02-17 19:27:11.975070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.976051"], ["updated_at", "2023-02-17 19:27:11.976051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.976850"], ["updated_at", "2023-02-17 19:27:11.976850"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.977595"], ["updated_at", "2023-02-17 19:27:11.977595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.978306"], ["updated_at", "2023-02-17 19:27:11.978306"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:11.979115"], ["updated_at", "2023-02-17 19:27:11.979115"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:11.996619"], ["updated_at", "2023-02-17 19:27:11.996619"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:11.997622"], ["updated_at", "2023-02-17 19:27:11.997622"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:11.998466"], ["updated_at", "2023-02-17 19:27:11.998466"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:11.999397"], ["updated_at", "2023-02-17 19:27:11.999397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.000499"], ["updated_at", "2023-02-17 19:27:12.000499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.001581"], ["updated_at", "2023-02-17 19:27:12.001581"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.002402"], ["updated_at", "2023-02-17 19:27:12.002402"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.003297"], ["updated_at", "2023-02-17 19:27:12.003297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.004111"], ["updated_at", "2023-02-17 19:27:12.004111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.004836"], ["updated_at", "2023-02-17 19:27:12.004836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.005672"], ["updated_at", "2023-02-17 19:27:12.005672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.006615"], ["updated_at", "2023-02-17 19:27:12.006615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.007577"], ["updated_at", "2023-02-17 19:27:12.007577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.008315"], ["updated_at", "2023-02-17 19:27:12.008315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.009053"], ["updated_at", "2023-02-17 19:27:12.009053"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.009776"], ["updated_at", "2023-02-17 19:27:12.009776"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.027104"], ["updated_at", "2023-02-17 19:27:12.027104"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.028090"], ["updated_at", "2023-02-17 19:27:12.028090"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.028855"], ["updated_at", "2023-02-17 19:27:12.028855"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.029801"], ["updated_at", "2023-02-17 19:27:12.029801"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.030951"], ["updated_at", "2023-02-17 19:27:12.030951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.031956"], ["updated_at", "2023-02-17 19:27:12.031956"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.032730"], ["updated_at", "2023-02-17 19:27:12.032730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.033646"], ["updated_at", "2023-02-17 19:27:12.033646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.034560"], ["updated_at", "2023-02-17 19:27:12.034560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.035757"], ["updated_at", "2023-02-17 19:27:12.035757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.036558"], ["updated_at", "2023-02-17 19:27:12.036558"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.037285"], ["updated_at", "2023-02-17 19:27:12.037285"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.037994"], ["updated_at", "2023-02-17 19:27:12.037994"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.038799"], ["updated_at", "2023-02-17 19:27:12.038799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.039599"], ["updated_at", "2023-02-17 19:27:12.039599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.040510"], ["updated_at", "2023-02-17 19:27:12.040510"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.057922"], ["updated_at", "2023-02-17 19:27:12.057922"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.058914"], ["updated_at", "2023-02-17 19:27:12.058914"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.059832"], ["updated_at", "2023-02-17 19:27:12.059832"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.060935"], ["updated_at", "2023-02-17 19:27:12.060935"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.062108"], ["updated_at", "2023-02-17 19:27:12.062108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.063369"], ["updated_at", "2023-02-17 19:27:12.063369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.064350"], ["updated_at", "2023-02-17 19:27:12.064350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.065192"], ["updated_at", "2023-02-17 19:27:12.065192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.065949"], ["updated_at", "2023-02-17 19:27:12.065949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.066681"], ["updated_at", "2023-02-17 19:27:12.066681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.067634"], ["updated_at", "2023-02-17 19:27:12.067634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.068449"], ["updated_at", "2023-02-17 19:27:12.068449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.069260"], ["updated_at", "2023-02-17 19:27:12.069260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.070011"], ["updated_at", "2023-02-17 19:27:12.070011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.071120"], ["updated_at", "2023-02-17 19:27:12.071120"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.072146"], ["updated_at", "2023-02-17 19:27:12.072146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.088839"], ["updated_at", "2023-02-17 19:27:12.088839"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.090010"], ["updated_at", "2023-02-17 19:27:12.090010"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.091139"], ["updated_at", "2023-02-17 19:27:12.091139"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.092088"], ["updated_at", "2023-02-17 19:27:12.092088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.092914"], ["updated_at", "2023-02-17 19:27:12.092914"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.093868"], ["updated_at", "2023-02-17 19:27:12.093868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.094663"], ["updated_at", "2023-02-17 19:27:12.094663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.095422"], ["updated_at", "2023-02-17 19:27:12.095422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.096135"], ["updated_at", "2023-02-17 19:27:12.096135"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.096853"], ["updated_at", "2023-02-17 19:27:12.096853"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.097861"], ["updated_at", "2023-02-17 19:27:12.097861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.098708"], ["updated_at", "2023-02-17 19:27:12.098708"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.099444"], ["updated_at", "2023-02-17 19:27:12.099444"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.100158"], ["updated_at", "2023-02-17 19:27:12.100158"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.101301"], ["updated_at", "2023-02-17 19:27:12.101301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.102315"], ["updated_at", "2023-02-17 19:27:12.102315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:27:12 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:12.111665"], ["updated_at", "2023-02-17 19:27:12.111665"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:12.113326"], ["updated_at", "2023-02-17 19:27:12.113326"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:12.116478"], ["updated_at", "2023-02-17 19:27:12.116478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:12.117728"], ["updated_at", "2023-02-17 19:27:12.117728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:12.120982"], ["updated_at", "2023-02-17 19:27:12.120982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:12.122427"], ["updated_at", "2023-02-17 19:27:12.122427"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:12.124755"], ["updated_at", "2023-02-17 19:27:12.124755"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:12.126266"], ["updated_at", "2023-02-17 19:27:12.126266"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:12.128113"], ["updated_at", "2023-02-17 19:27:12.128113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:12.129663"], ["updated_at", "2023-02-17 19:27:12.129663"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:12.131547"], ["updated_at", "2023-02-17 19:27:12.131547"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:12.133185"], ["updated_at", "2023-02-17 19:27:12.133185"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:12.134831"], ["updated_at", "2023-02-17 19:27:12.134831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:12.136684"], ["updated_at", "2023-02-17 19:27:12.136684"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:12.138275"], ["updated_at", "2023-02-17 19:27:12.138275"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:12.139811"], ["updated_at", "2023-02-17 19:27:12.139811"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:12.141502"], ["updated_at", "2023-02-17 19:27:12.141502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:12.142997"], ["updated_at", "2023-02-17 19:27:12.142997"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:12.144679"], ["updated_at", "2023-02-17 19:27:12.144679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:12.146070"], ["updated_at", "2023-02-17 19:27:12.146070"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:12.147803"], ["updated_at", "2023-02-17 19:27:12.147803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:12.149338"], ["updated_at", "2023-02-17 19:27:12.149338"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:12.151260"], ["updated_at", "2023-02-17 19:27:12.151260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:12.152941"], ["updated_at", "2023-02-17 19:27:12.152941"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:12.154701"], ["updated_at", "2023-02-17 19:27:12.154701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:12.156107"], ["updated_at", "2023-02-17 19:27:12.156107"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:12.157695"], ["updated_at", "2023-02-17 19:27:12.157695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:12.159289"], ["updated_at", "2023-02-17 19:27:12.159289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:12.160986"], ["updated_at", "2023-02-17 19:27:12.160986"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:12.162726"], ["updated_at", "2023-02-17 19:27:12.162726"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:12.164554"], ["updated_at", "2023-02-17 19:27:12.164554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:12.166327"], ["updated_at", "2023-02-17 19:27:12.166327"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:12.168007"], ["updated_at", "2023-02-17 19:27:12.168007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:12.169380"], ["updated_at", "2023-02-17 19:27:12.169380"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:12.170934"], ["updated_at", "2023-02-17 19:27:12.170934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:12.172661"], ["updated_at", "2023-02-17 19:27:12.172661"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:12.174193"], ["updated_at", "2023-02-17 19:27:12.174193"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:12.175545"], ["updated_at", "2023-02-17 19:27:12.175545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:12.177252"], ["updated_at", "2023-02-17 19:27:12.177252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:12.178510"], ["updated_at", "2023-02-17 19:27:12.178510"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:12.180151"], ["updated_at", "2023-02-17 19:27:12.180151"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:12.181774"], ["updated_at", "2023-02-17 19:27:12.181774"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:12.183510"], ["updated_at", "2023-02-17 19:27:12.183510"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:12.184917"], ["updated_at", "2023-02-17 19:27:12.184917"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:12.186802"], ["updated_at", "2023-02-17 19:27:12.186802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:12.188209"], ["updated_at", "2023-02-17 19:27:12.188209"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:12.189668"], ["updated_at", "2023-02-17 19:27:12.189668"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:12.191133"], ["updated_at", "2023-02-17 19:27:12.191133"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:12.192843"], ["updated_at", "2023-02-17 19:27:12.192843"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:12.194360"], ["updated_at", "2023-02-17 19:27:12.194360"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:12.195821"], ["updated_at", "2023-02-17 19:27:12.195821"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:12.197032"], ["updated_at", "2023-02-17 19:27:12.197032"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:12.198646"], ["updated_at", "2023-02-17 19:27:12.198646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:12.199846"], ["updated_at", "2023-02-17 19:27:12.199846"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:12.201521"], ["updated_at", "2023-02-17 19:27:12.201521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:12.202894"], ["updated_at", "2023-02-17 19:27:12.202894"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:12.204278"], ["updated_at", "2023-02-17 19:27:12.204278"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:12.205685"], ["updated_at", "2023-02-17 19:27:12.205685"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:12.207998"], ["updated_at", "2023-02-17 19:27:12.207998"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:12.209533"], ["updated_at", "2023-02-17 19:27:12.209533"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:12.211067"], ["updated_at", "2023-02-17 19:27:12.211067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:12.212291"], ["updated_at", "2023-02-17 19:27:12.212291"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:12.213686"], ["updated_at", "2023-02-17 19:27:12.213686"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:12.215041"], ["updated_at", "2023-02-17 19:27:12.215041"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:12.216525"], ["updated_at", "2023-02-17 19:27:12.216525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:12.218167"], ["updated_at", "2023-02-17 19:27:12.218167"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:12.219791"], ["updated_at", "2023-02-17 19:27:12.219791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:12.221006"], ["updated_at", "2023-02-17 19:27:12.221006"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:12.222529"], ["updated_at", "2023-02-17 19:27:12.222529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:12.223867"], ["updated_at", "2023-02-17 19:27:12.223867"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:12.225263"], ["updated_at", "2023-02-17 19:27:12.225263"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:12.226597"], ["updated_at", "2023-02-17 19:27:12.226597"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:12.228181"], ["updated_at", "2023-02-17 19:27:12.228181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:12.229451"], ["updated_at", "2023-02-17 19:27:12.229451"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:12.231095"], ["updated_at", "2023-02-17 19:27:12.231095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:12.232301"], ["updated_at", "2023-02-17 19:27:12.232301"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:12.233812"], ["updated_at", "2023-02-17 19:27:12.233812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:12.235040"], ["updated_at", "2023-02-17 19:27:12.235040"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:12.236397"], ["updated_at", "2023-02-17 19:27:12.236397"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:12.238292"], ["updated_at", "2023-02-17 19:27:12.238292"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:12.239851"], ["updated_at", "2023-02-17 19:27:12.239851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:12.241207"], ["updated_at", "2023-02-17 19:27:12.241207"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:12.242642"], ["updated_at", "2023-02-17 19:27:12.242642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:12.243815"], ["updated_at", "2023-02-17 19:27:12.243815"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:12.245356"], ["updated_at", "2023-02-17 19:27:12.245356"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:12.246627"], ["updated_at", "2023-02-17 19:27:12.246627"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:12.248527"], ["updated_at", "2023-02-17 19:27:12.248527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:12.249930"], ["updated_at", "2023-02-17 19:27:12.249930"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:12.251433"], ["updated_at", "2023-02-17 19:27:12.251433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:12.253008"], ["updated_at", "2023-02-17 19:27:12.253008"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:12.254465"], ["updated_at", "2023-02-17 19:27:12.254465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:12.255649"], ["updated_at", "2023-02-17 19:27:12.255649"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:12.257179"], ["updated_at", "2023-02-17 19:27:12.257179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:12.258628"], ["updated_at", "2023-02-17 19:27:12.258628"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:12.260275"], ["updated_at", "2023-02-17 19:27:12.260275"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:12.261481"], ["updated_at", "2023-02-17 19:27:12.261481"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:12.262733"], ["updated_at", "2023-02-17 19:27:12.262733"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:12.264376"], ["updated_at", "2023-02-17 19:27:12.264376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:12.266131"], ["updated_at", "2023-02-17 19:27:12.266131"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:12.267827"], ["updated_at", "2023-02-17 19:27:12.267827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:12.269191"], ["updated_at", "2023-02-17 19:27:12.269191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:12.281907"], ["updated_at", "2023-02-17 19:27:12.281907"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:12.283339"], ["updated_at", "2023-02-17 19:27:12.283339"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:12.284423"], ["updated_at", "2023-02-17 19:27:12.284423"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.285672"], ["updated_at", "2023-02-17 19:27:12.285672"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.286515"], ["updated_at", "2023-02-17 19:27:12.286515"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.287330"], ["updated_at", "2023-02-17 19:27:12.287330"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.288196"], ["updated_at", "2023-02-17 19:27:12.288196"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.289204"], ["updated_at", "2023-02-17 19:27:12.289204"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:12.289993"], ["updated_at", "2023-02-17 19:27:12.289993"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.290879"], ["updated_at", "2023-02-17 19:27:12.290879"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.291780"], ["updated_at", "2023-02-17 19:27:12.291780"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.292827"], ["updated_at", "2023-02-17 19:27:12.292827"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.293671"], ["updated_at", "2023-02-17 19:27:12.293671"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.294436"], ["updated_at", "2023-02-17 19:27:12.294436"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.295181"], ["updated_at", "2023-02-17 19:27:12.295181"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.296127"], ["updated_at", "2023-02-17 19:27:12.296127"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.297114"], ["updated_at", "2023-02-17 19:27:12.297114"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.298264"], ["updated_at", "2023-02-17 19:27:12.298264"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.299150"], ["updated_at", "2023-02-17 19:27:12.299150"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.300088"], ["updated_at", "2023-02-17 19:27:12.300088"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.301166"], ["updated_at", "2023-02-17 19:27:12.301166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:12.313422"], ["updated_at", "2023-02-17 19:27:12.313422"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:12.314751"], ["updated_at", "2023-02-17 19:27:12.314751"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:12.315919"], ["updated_at", "2023-02-17 19:27:12.315919"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:12.316869"], ["updated_at", "2023-02-17 19:27:12.316869"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:12.317857"], ["updated_at", "2023-02-17 19:27:12.317857"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:12.318735"], ["updated_at", "2023-02-17 19:27:12.318735"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:12.319490"], ["updated_at", "2023-02-17 19:27:12.319490"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:12.320217"], ["updated_at", "2023-02-17 19:27:12.320217"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:12.320989"], ["updated_at", "2023-02-17 19:27:12.320989"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.321868"], ["updated_at", "2023-02-17 19:27:12.321868"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.322852"], ["updated_at", "2023-02-17 19:27:12.322852"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.323701"], ["updated_at", "2023-02-17 19:27:12.323701"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.324449"], ["updated_at", "2023-02-17 19:27:12.324449"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.325209"], ["updated_at", "2023-02-17 19:27:12.325209"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.325954"], ["updated_at", "2023-02-17 19:27:12.325954"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.326814"], ["updated_at", "2023-02-17 19:27:12.326814"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.327835"], ["updated_at", "2023-02-17 19:27:12.327835"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.328938"], ["updated_at", "2023-02-17 19:27:12.328938"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.329806"], ["updated_at", "2023-02-17 19:27:12.329806"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.330921"], ["updated_at", "2023-02-17 19:27:12.330921"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.331758"], ["updated_at", "2023-02-17 19:27:12.331758"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.350271"], ["updated_at", "2023-02-17 19:27:12.350271"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.351510"], ["updated_at", "2023-02-17 19:27:12.351510"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.352503"], ["updated_at", "2023-02-17 19:27:12.352503"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.353594"], ["updated_at", "2023-02-17 19:27:12.353594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.354561"], ["updated_at", "2023-02-17 19:27:12.354561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.355473"], ["updated_at", "2023-02-17 19:27:12.355473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.356237"], ["updated_at", "2023-02-17 19:27:12.356237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.357235"], ["updated_at", "2023-02-17 19:27:12.357235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.358338"], ["updated_at", "2023-02-17 19:27:12.358338"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.359371"], ["updated_at", "2023-02-17 19:27:12.359371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.360368"], ["updated_at", "2023-02-17 19:27:12.360368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.361390"], ["updated_at", "2023-02-17 19:27:12.361390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.362256"], ["updated_at", "2023-02-17 19:27:12.362256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.363090"], ["updated_at", "2023-02-17 19:27:12.363090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.363901"], ["updated_at", "2023-02-17 19:27:12.363901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.364873"], ["updated_at", "2023-02-17 19:27:12.364873"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.384168"], ["updated_at", "2023-02-17 19:27:12.384168"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.385384"], ["updated_at", "2023-02-17 19:27:12.385384"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.386501"], ["updated_at", "2023-02-17 19:27:12.386501"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.387437"], ["updated_at", "2023-02-17 19:27:12.387437"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.388627"], ["updated_at", "2023-02-17 19:27:12.388627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.389913"], ["updated_at", "2023-02-17 19:27:12.389913"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.390838"], ["updated_at", "2023-02-17 19:27:12.390838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.391670"], ["updated_at", "2023-02-17 19:27:12.391670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.392487"], ["updated_at", "2023-02-17 19:27:12.392487"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.393436"], ["updated_at", "2023-02-17 19:27:12.393436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.394285"], ["updated_at", "2023-02-17 19:27:12.394285"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.395108"], ["updated_at", "2023-02-17 19:27:12.395108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.395946"], ["updated_at", "2023-02-17 19:27:12.395946"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.396948"], ["updated_at", "2023-02-17 19:27:12.396948"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.398066"], ["updated_at", "2023-02-17 19:27:12.398066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.399141"], ["updated_at", "2023-02-17 19:27:12.399141"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.417604"], ["updated_at", "2023-02-17 19:27:12.417604"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.418959"], ["updated_at", "2023-02-17 19:27:12.418959"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.420171"], ["updated_at", "2023-02-17 19:27:12.420171"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.421041"], ["updated_at", "2023-02-17 19:27:12.421041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.421908"], ["updated_at", "2023-02-17 19:27:12.421908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.422716"], ["updated_at", "2023-02-17 19:27:12.422716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.423617"], ["updated_at", "2023-02-17 19:27:12.423617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.424624"], ["updated_at", "2023-02-17 19:27:12.424624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.425606"], ["updated_at", "2023-02-17 19:27:12.425606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.426479"], ["updated_at", "2023-02-17 19:27:12.426479"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.427609"], ["updated_at", "2023-02-17 19:27:12.427609"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.428851"], ["updated_at", "2023-02-17 19:27:12.428851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.429881"], ["updated_at", "2023-02-17 19:27:12.429881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.430871"], ["updated_at", "2023-02-17 19:27:12.430871"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.431727"], ["updated_at", "2023-02-17 19:27:12.431727"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.432584"], ["updated_at", "2023-02-17 19:27:12.432584"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.451816"], ["updated_at", "2023-02-17 19:27:12.451816"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.452874"], ["updated_at", "2023-02-17 19:27:12.452874"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.453887"], ["updated_at", "2023-02-17 19:27:12.453887"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.454730"], ["updated_at", "2023-02-17 19:27:12.454730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.455600"], ["updated_at", "2023-02-17 19:27:12.455600"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.456435"], ["updated_at", "2023-02-17 19:27:12.456435"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.457390"], ["updated_at", "2023-02-17 19:27:12.457390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.458570"], ["updated_at", "2023-02-17 19:27:12.458570"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.459676"], ["updated_at", "2023-02-17 19:27:12.459676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.460573"], ["updated_at", "2023-02-17 19:27:12.460573"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.461584"], ["updated_at", "2023-02-17 19:27:12.461584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.462426"], ["updated_at", "2023-02-17 19:27:12.462426"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.463250"], ["updated_at", "2023-02-17 19:27:12.463250"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.464067"], ["updated_at", "2023-02-17 19:27:12.464067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.465093"], ["updated_at", "2023-02-17 19:27:12.465093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.466022"], ["updated_at", "2023-02-17 19:27:12.466022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.484248"], ["updated_at", "2023-02-17 19:27:12.484248"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.485352"], ["updated_at", "2023-02-17 19:27:12.485352"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.486290"], ["updated_at", "2023-02-17 19:27:12.486290"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.487378"], ["updated_at", "2023-02-17 19:27:12.487378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.488383"], ["updated_at", "2023-02-17 19:27:12.488383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.489292"], ["updated_at", "2023-02-17 19:27:12.489292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.490268"], ["updated_at", "2023-02-17 19:27:12.490268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.491191"], ["updated_at", "2023-02-17 19:27:12.491191"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.492072"], ["updated_at", "2023-02-17 19:27:12.492072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.492899"], ["updated_at", "2023-02-17 19:27:12.492899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.493728"], ["updated_at", "2023-02-17 19:27:12.493728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.494784"], ["updated_at", "2023-02-17 19:27:12.494784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.495652"], ["updated_at", "2023-02-17 19:27:12.495652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.496490"], ["updated_at", "2023-02-17 19:27:12.496490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.497324"], ["updated_at", "2023-02-17 19:27:12.497324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.498283"], ["updated_at", "2023-02-17 19:27:12.498283"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.522949"], ["updated_at", "2023-02-17 19:27:12.522949"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.523955"], ["updated_at", "2023-02-17 19:27:12.523955"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.525064"], ["updated_at", "2023-02-17 19:27:12.525064"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.525960"], ["updated_at", "2023-02-17 19:27:12.525960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.526846"], ["updated_at", "2023-02-17 19:27:12.526846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.527656"], ["updated_at", "2023-02-17 19:27:12.527656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.528651"], ["updated_at", "2023-02-17 19:27:12.528651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.529594"], ["updated_at", "2023-02-17 19:27:12.529594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.530435"], ["updated_at", "2023-02-17 19:27:12.530435"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.531227"], ["updated_at", "2023-02-17 19:27:12.531227"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.532289"], ["updated_at", "2023-02-17 19:27:12.532289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.533189"], ["updated_at", "2023-02-17 19:27:12.533189"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.534069"], ["updated_at", "2023-02-17 19:27:12.534069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.534996"], ["updated_at", "2023-02-17 19:27:12.534996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.535980"], ["updated_at", "2023-02-17 19:27:12.535980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.536910"], ["updated_at", "2023-02-17 19:27:12.536910"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:27:12 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:12.546672"], ["updated_at", "2023-02-17 19:27:12.546672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:12.548444"], ["updated_at", "2023-02-17 19:27:12.548444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:12.551903"], ["updated_at", "2023-02-17 19:27:12.551903"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:12.553200"], ["updated_at", "2023-02-17 19:27:12.553200"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:12.556383"], ["updated_at", "2023-02-17 19:27:12.556383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:12.557638"], ["updated_at", "2023-02-17 19:27:12.557638"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:12.560068"], ["updated_at", "2023-02-17 19:27:12.560068"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:12.561602"], ["updated_at", "2023-02-17 19:27:12.561602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:12.563448"], ["updated_at", "2023-02-17 19:27:12.563448"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:12.564916"], ["updated_at", "2023-02-17 19:27:12.564916"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:12.566523"], ["updated_at", "2023-02-17 19:27:12.566523"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:12.567931"], ["updated_at", "2023-02-17 19:27:12.567931"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:12.569926"], ["updated_at", "2023-02-17 19:27:12.569926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:12.571371"], ["updated_at", "2023-02-17 19:27:12.571371"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:12.573172"], ["updated_at", "2023-02-17 19:27:12.573172"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:12.574864"], ["updated_at", "2023-02-17 19:27:12.574864"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:12.576294"], ["updated_at", "2023-02-17 19:27:12.576294"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:12.577935"], ["updated_at", "2023-02-17 19:27:12.577935"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:12.579595"], ["updated_at", "2023-02-17 19:27:12.579595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:12.581025"], ["updated_at", "2023-02-17 19:27:12.581025"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:12.582441"], ["updated_at", "2023-02-17 19:27:12.582441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:12.583671"], ["updated_at", "2023-02-17 19:27:12.583671"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:12.585390"], ["updated_at", "2023-02-17 19:27:12.585390"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:12.586603"], ["updated_at", "2023-02-17 19:27:12.586603"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:12.588179"], ["updated_at", "2023-02-17 19:27:12.588179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:12.589507"], ["updated_at", "2023-02-17 19:27:12.589507"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:12.590960"], ["updated_at", "2023-02-17 19:27:12.590960"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:12.592352"], ["updated_at", "2023-02-17 19:27:12.592352"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:12.593799"], ["updated_at", "2023-02-17 19:27:12.593799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:12.595064"], ["updated_at", "2023-02-17 19:27:12.595064"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:12.596464"], ["updated_at", "2023-02-17 19:27:12.596464"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:12.597725"], ["updated_at", "2023-02-17 19:27:12.597725"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:12.599678"], ["updated_at", "2023-02-17 19:27:12.599678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:12.600956"], ["updated_at", "2023-02-17 19:27:12.600956"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:12.602458"], ["updated_at", "2023-02-17 19:27:12.602458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:12.603679"], ["updated_at", "2023-02-17 19:27:12.603679"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:12.605079"], ["updated_at", "2023-02-17 19:27:12.605079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:12.606423"], ["updated_at", "2023-02-17 19:27:12.606423"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:12.608088"], ["updated_at", "2023-02-17 19:27:12.608088"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:12.609580"], ["updated_at", "2023-02-17 19:27:12.609580"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:12.611120"], ["updated_at", "2023-02-17 19:27:12.611120"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:12.612284"], ["updated_at", "2023-02-17 19:27:12.612284"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:12.613780"], ["updated_at", "2023-02-17 19:27:12.613780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:12.615096"], ["updated_at", "2023-02-17 19:27:12.615096"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:12.616461"], ["updated_at", "2023-02-17 19:27:12.616461"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:12.617762"], ["updated_at", "2023-02-17 19:27:12.617762"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:12.619285"], ["updated_at", "2023-02-17 19:27:12.619285"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:12.620462"], ["updated_at", "2023-02-17 19:27:12.620462"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:12.622021"], ["updated_at", "2023-02-17 19:27:12.622021"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:12.623244"], ["updated_at", "2023-02-17 19:27:12.623244"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:12.624620"], ["updated_at", "2023-02-17 19:27:12.624620"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:12.625927"], ["updated_at", "2023-02-17 19:27:12.625927"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:12.627290"], ["updated_at", "2023-02-17 19:27:12.627290"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:12.629105"], ["updated_at", "2023-02-17 19:27:12.629105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:12.630751"], ["updated_at", "2023-02-17 19:27:12.630751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:12.632061"], ["updated_at", "2023-02-17 19:27:12.632061"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:12.633657"], ["updated_at", "2023-02-17 19:27:12.633657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:12.634851"], ["updated_at", "2023-02-17 19:27:12.634851"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:12.636306"], ["updated_at", "2023-02-17 19:27:12.636306"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:12.637819"], ["updated_at", "2023-02-17 19:27:12.637819"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:12.639601"], ["updated_at", "2023-02-17 19:27:12.639601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:12.641004"], ["updated_at", "2023-02-17 19:27:12.641004"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:12.642921"], ["updated_at", "2023-02-17 19:27:12.642921"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:12.644605"], ["updated_at", "2023-02-17 19:27:12.644605"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:12.646542"], ["updated_at", "2023-02-17 19:27:12.646542"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:12.648287"], ["updated_at", "2023-02-17 19:27:12.648287"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:12.650588"], ["updated_at", "2023-02-17 19:27:12.650588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:12.652232"], ["updated_at", "2023-02-17 19:27:12.652232"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:12.654061"], ["updated_at", "2023-02-17 19:27:12.654061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:12.655763"], ["updated_at", "2023-02-17 19:27:12.655763"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:12.657721"], ["updated_at", "2023-02-17 19:27:12.657721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:12.659757"], ["updated_at", "2023-02-17 19:27:12.659757"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:12.661642"], ["updated_at", "2023-02-17 19:27:12.661642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:12.663222"], ["updated_at", "2023-02-17 19:27:12.663222"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:12.665184"], ["updated_at", "2023-02-17 19:27:12.665184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:12.666875"], ["updated_at", "2023-02-17 19:27:12.666875"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:12.669149"], ["updated_at", "2023-02-17 19:27:12.669149"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:12.670885"], ["updated_at", "2023-02-17 19:27:12.670885"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:12.672833"], ["updated_at", "2023-02-17 19:27:12.672833"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:12.674844"], ["updated_at", "2023-02-17 19:27:12.674844"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:12.676792"], ["updated_at", "2023-02-17 19:27:12.676792"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:12.678597"], ["updated_at", "2023-02-17 19:27:12.678597"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:12.680511"], ["updated_at", "2023-02-17 19:27:12.680511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:12.682293"], ["updated_at", "2023-02-17 19:27:12.682293"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:12.684195"], ["updated_at", "2023-02-17 19:27:12.684195"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:12.685858"], ["updated_at", "2023-02-17 19:27:12.685858"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:12.687668"], ["updated_at", "2023-02-17 19:27:12.687668"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:12.689885"], ["updated_at", "2023-02-17 19:27:12.689885"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:12.691898"], ["updated_at", "2023-02-17 19:27:12.691898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:12.693491"], ["updated_at", "2023-02-17 19:27:12.693491"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:12.694982"], ["updated_at", "2023-02-17 19:27:12.694982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:12.696318"], ["updated_at", "2023-02-17 19:27:12.696318"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:12.698023"], ["updated_at", "2023-02-17 19:27:12.698023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:12.699566"], ["updated_at", "2023-02-17 19:27:12.699566"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:12.701140"], ["updated_at", "2023-02-17 19:27:12.701140"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:12.702304"], ["updated_at", "2023-02-17 19:27:12.702304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:12.703507"], ["updated_at", "2023-02-17 19:27:12.703507"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:12.705094"], ["updated_at", "2023-02-17 19:27:12.705094"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:12.706668"], ["updated_at", "2023-02-17 19:27:12.706668"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:12.707849"], ["updated_at", "2023-02-17 19:27:12.707849"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:12.709197"], ["updated_at", "2023-02-17 19:27:12.709197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:12.721451"], ["updated_at", "2023-02-17 19:27:12.721451"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:12.722749"], ["updated_at", "2023-02-17 19:27:12.722749"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:12.723797"], ["updated_at", "2023-02-17 19:27:12.723797"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.724645"], ["updated_at", "2023-02-17 19:27:12.724645"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.725437"], ["updated_at", "2023-02-17 19:27:12.725437"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.726141"], ["updated_at", "2023-02-17 19:27:12.726141"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.726820"], ["updated_at", "2023-02-17 19:27:12.726820"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.727723"], ["updated_at", "2023-02-17 19:27:12.727723"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:12.728868"], ["updated_at", "2023-02-17 19:27:12.728868"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.729905"], ["updated_at", "2023-02-17 19:27:12.729905"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.730786"], ["updated_at", "2023-02-17 19:27:12.730786"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.731700"], ["updated_at", "2023-02-17 19:27:12.731700"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.732435"], ["updated_at", "2023-02-17 19:27:12.732435"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.733187"], ["updated_at", "2023-02-17 19:27:12.733187"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.733924"], ["updated_at", "2023-02-17 19:27:12.733924"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.734744"], ["updated_at", "2023-02-17 19:27:12.734744"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.735661"], ["updated_at", "2023-02-17 19:27:12.735661"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.736439"], ["updated_at", "2023-02-17 19:27:12.736439"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.737183"], ["updated_at", "2023-02-17 19:27:12.737183"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.737945"], ["updated_at", "2023-02-17 19:27:12.737945"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.739000"], ["updated_at", "2023-02-17 19:27:12.739000"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:12.751574"], ["updated_at", "2023-02-17 19:27:12.751574"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:12.752821"], ["updated_at", "2023-02-17 19:27:12.752821"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:12.753831"], ["updated_at", "2023-02-17 19:27:12.753831"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:12.754691"], ["updated_at", "2023-02-17 19:27:12.754691"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:12.755470"], ["updated_at", "2023-02-17 19:27:12.755470"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:12.756173"], ["updated_at", "2023-02-17 19:27:12.756173"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:12.756847"], ["updated_at", "2023-02-17 19:27:12.756847"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:12.757726"], ["updated_at", "2023-02-17 19:27:12.757726"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:12.758853"], ["updated_at", "2023-02-17 19:27:12.758853"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.759917"], ["updated_at", "2023-02-17 19:27:12.759917"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.760767"], ["updated_at", "2023-02-17 19:27:12.760767"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.761708"], ["updated_at", "2023-02-17 19:27:12.761708"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.762475"], ["updated_at", "2023-02-17 19:27:12.762475"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.763223"], ["updated_at", "2023-02-17 19:27:12.763223"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.763970"], ["updated_at", "2023-02-17 19:27:12.763970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.764702"], ["updated_at", "2023-02-17 19:27:12.764702"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.765692"], ["updated_at", "2023-02-17 19:27:12.765692"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.766483"], ["updated_at", "2023-02-17 19:27:12.766483"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.767202"], ["updated_at", "2023-02-17 19:27:12.767202"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.767937"], ["updated_at", "2023-02-17 19:27:12.767937"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:12.768944"], ["updated_at", "2023-02-17 19:27:12.768944"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.786439"], ["updated_at", "2023-02-17 19:27:12.786439"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.787747"], ["updated_at", "2023-02-17 19:27:12.787747"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.788863"], ["updated_at", "2023-02-17 19:27:12.788863"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.789863"], ["updated_at", "2023-02-17 19:27:12.789863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.790818"], ["updated_at", "2023-02-17 19:27:12.790818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.791650"], ["updated_at", "2023-02-17 19:27:12.791650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.792404"], ["updated_at", "2023-02-17 19:27:12.792404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.793193"], ["updated_at", "2023-02-17 19:27:12.793193"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.794135"], ["updated_at", "2023-02-17 19:27:12.794135"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.794896"], ["updated_at", "2023-02-17 19:27:12.794896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.795608"], ["updated_at", "2023-02-17 19:27:12.795608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.796279"], ["updated_at", "2023-02-17 19:27:12.796279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.797072"], ["updated_at", "2023-02-17 19:27:12.797072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.797836"], ["updated_at", "2023-02-17 19:27:12.797836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.798648"], ["updated_at", "2023-02-17 19:27:12.798648"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:12.799466"], ["updated_at", "2023-02-17 19:27:12.799466"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.816295"], ["updated_at", "2023-02-17 19:27:12.816295"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.817351"], ["updated_at", "2023-02-17 19:27:12.817351"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.818138"], ["updated_at", "2023-02-17 19:27:12.818138"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.819162"], ["updated_at", "2023-02-17 19:27:12.819162"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.820276"], ["updated_at", "2023-02-17 19:27:12.820276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.821087"], ["updated_at", "2023-02-17 19:27:12.821087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.821817"], ["updated_at", "2023-02-17 19:27:12.821817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.822521"], ["updated_at", "2023-02-17 19:27:12.822521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.823228"], ["updated_at", "2023-02-17 19:27:12.823228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.824146"], ["updated_at", "2023-02-17 19:27:12.824146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.824927"], ["updated_at", "2023-02-17 19:27:12.824927"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.825642"], ["updated_at", "2023-02-17 19:27:12.825642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.826333"], ["updated_at", "2023-02-17 19:27:12.826333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.827037"], ["updated_at", "2023-02-17 19:27:12.827037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.827901"], ["updated_at", "2023-02-17 19:27:12.827901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:12.828695"], ["updated_at", "2023-02-17 19:27:12.828695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.845753"], ["updated_at", "2023-02-17 19:27:12.845753"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.846737"], ["updated_at", "2023-02-17 19:27:12.846737"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.847466"], ["updated_at", "2023-02-17 19:27:12.847466"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.848324"], ["updated_at", "2023-02-17 19:27:12.848324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.849477"], ["updated_at", "2023-02-17 19:27:12.849477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.850383"], ["updated_at", "2023-02-17 19:27:12.850383"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.851163"], ["updated_at", "2023-02-17 19:27:12.851163"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.852101"], ["updated_at", "2023-02-17 19:27:12.852101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.852929"], ["updated_at", "2023-02-17 19:27:12.852929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.853661"], ["updated_at", "2023-02-17 19:27:12.853661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.854361"], ["updated_at", "2023-02-17 19:27:12.854361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.855052"], ["updated_at", "2023-02-17 19:27:12.855052"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.855852"], ["updated_at", "2023-02-17 19:27:12.855852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.856565"], ["updated_at", "2023-02-17 19:27:12.856565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.857273"], ["updated_at", "2023-02-17 19:27:12.857273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:12.857980"], ["updated_at", "2023-02-17 19:27:12.857980"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.874872"], ["updated_at", "2023-02-17 19:27:12.874872"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.875868"], ["updated_at", "2023-02-17 19:27:12.875868"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.876620"], ["updated_at", "2023-02-17 19:27:12.876620"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.877635"], ["updated_at", "2023-02-17 19:27:12.877635"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.878691"], ["updated_at", "2023-02-17 19:27:12.878691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.879792"], ["updated_at", "2023-02-17 19:27:12.879792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.880617"], ["updated_at", "2023-02-17 19:27:12.880617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.881464"], ["updated_at", "2023-02-17 19:27:12.881464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.882184"], ["updated_at", "2023-02-17 19:27:12.882184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.882883"], ["updated_at", "2023-02-17 19:27:12.882883"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.883619"], ["updated_at", "2023-02-17 19:27:12.883619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.884361"], ["updated_at", "2023-02-17 19:27:12.884361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.885318"], ["updated_at", "2023-02-17 19:27:12.885318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.886074"], ["updated_at", "2023-02-17 19:27:12.886074"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.886805"], ["updated_at", "2023-02-17 19:27:12.886805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:12.887512"], ["updated_at", "2023-02-17 19:27:12.887512"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.905167"], ["updated_at", "2023-02-17 19:27:12.905167"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.906126"], ["updated_at", "2023-02-17 19:27:12.906126"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.906870"], ["updated_at", "2023-02-17 19:27:12.906870"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.907792"], ["updated_at", "2023-02-17 19:27:12.907792"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.908614"], ["updated_at", "2023-02-17 19:27:12.908614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.909674"], ["updated_at", "2023-02-17 19:27:12.909674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.910593"], ["updated_at", "2023-02-17 19:27:12.910593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.911445"], ["updated_at", "2023-02-17 19:27:12.911445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.912163"], ["updated_at", "2023-02-17 19:27:12.912163"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.912847"], ["updated_at", "2023-02-17 19:27:12.912847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.913624"], ["updated_at", "2023-02-17 19:27:12.913624"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.914352"], ["updated_at", "2023-02-17 19:27:12.914352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.915258"], ["updated_at", "2023-02-17 19:27:12.915258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.916070"], ["updated_at", "2023-02-17 19:27:12.916070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.916974"], ["updated_at", "2023-02-17 19:27:12.916974"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:12.917737"], ["updated_at", "2023-02-17 19:27:12.917737"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:12.934710"], ["updated_at", "2023-02-17 19:27:12.934710"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:12.935698"], ["updated_at", "2023-02-17 19:27:12.935698"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:12.936440"], ["updated_at", "2023-02-17 19:27:12.936440"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:12.937149"], ["updated_at", "2023-02-17 19:27:12.937149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.938112"], ["updated_at", "2023-02-17 19:27:12.938112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.938930"], ["updated_at", "2023-02-17 19:27:12.938930"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.940025"], ["updated_at", "2023-02-17 19:27:12.940025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.940845"], ["updated_at", "2023-02-17 19:27:12.940845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.941710"], ["updated_at", "2023-02-17 19:27:12.941710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.942431"], ["updated_at", "2023-02-17 19:27:12.942431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.943124"], ["updated_at", "2023-02-17 19:27:12.943124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.943821"], ["updated_at", "2023-02-17 19:27:12.943821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.944512"], ["updated_at", "2023-02-17 19:27:12.944512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.945589"], ["updated_at", "2023-02-17 19:27:12.945589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.946359"], ["updated_at", "2023-02-17 19:27:12.946359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:12.947075"], ["updated_at", "2023-02-17 19:27:12.947075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:27:12 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:12.956813"], ["updated_at", "2023-02-17 19:27:12.956813"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:12.958271"], ["updated_at", "2023-02-17 19:27:12.958271"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:12.961710"], ["updated_at", "2023-02-17 19:27:12.961710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:12.962908"], ["updated_at", "2023-02-17 19:27:12.962908"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:12.965805"], ["updated_at", "2023-02-17 19:27:12.965805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:12.967174"], ["updated_at", "2023-02-17 19:27:12.967174"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:12.969804"], ["updated_at", "2023-02-17 19:27:12.969804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:12.971493"], ["updated_at", "2023-02-17 19:27:12.971493"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:12.973202"], ["updated_at", "2023-02-17 19:27:12.973202"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:12.974562"], ["updated_at", "2023-02-17 19:27:12.974562"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:12.976172"], ["updated_at", "2023-02-17 19:27:12.976172"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:12.977368"], ["updated_at", "2023-02-17 19:27:12.977368"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:12.979029"], ["updated_at", "2023-02-17 19:27:12.979029"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:12.980758"], ["updated_at", "2023-02-17 19:27:12.980758"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:12.982378"], ["updated_at", "2023-02-17 19:27:12.982378"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:12.983954"], ["updated_at", "2023-02-17 19:27:12.983954"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:12.985449"], ["updated_at", "2023-02-17 19:27:12.985449"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:12.986759"], ["updated_at", "2023-02-17 19:27:12.986759"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:12.988110"], ["updated_at", "2023-02-17 19:27:12.988110"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:12.989310"], ["updated_at", "2023-02-17 19:27:12.989310"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:12.990949"], ["updated_at", "2023-02-17 19:27:12.990949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:12.992138"], ["updated_at", "2023-02-17 19:27:12.992138"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:12.993561"], ["updated_at", "2023-02-17 19:27:12.993561"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:12.994822"], ["updated_at", "2023-02-17 19:27:12.994822"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:12.996495"], ["updated_at", "2023-02-17 19:27:12.996495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:12.997796"], ["updated_at", "2023-02-17 19:27:12.997796"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:12.999260"], ["updated_at", "2023-02-17 19:27:12.999260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:13.000715"], ["updated_at", "2023-02-17 19:27:13.000715"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:13.002354"], ["updated_at", "2023-02-17 19:27:13.002354"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:13.003804"], ["updated_at", "2023-02-17 19:27:13.003804"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:13.005247"], ["updated_at", "2023-02-17 19:27:13.005247"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:13.006413"], ["updated_at", "2023-02-17 19:27:13.006413"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:13.007892"], ["updated_at", "2023-02-17 19:27:13.007892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:13.009074"], ["updated_at", "2023-02-17 19:27:13.009074"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:13.010601"], ["updated_at", "2023-02-17 19:27:13.010601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:13.011920"], ["updated_at", "2023-02-17 19:27:13.011920"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:13.013315"], ["updated_at", "2023-02-17 19:27:13.013315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:13.014673"], ["updated_at", "2023-02-17 19:27:13.014673"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:13.016193"], ["updated_at", "2023-02-17 19:27:13.016193"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:13.017684"], ["updated_at", "2023-02-17 19:27:13.017684"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:13.019345"], ["updated_at", "2023-02-17 19:27:13.019345"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:13.020579"], ["updated_at", "2023-02-17 19:27:13.020579"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:13.022053"], ["updated_at", "2023-02-17 19:27:13.022053"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:13.023310"], ["updated_at", "2023-02-17 19:27:13.023310"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:13.024711"], ["updated_at", "2023-02-17 19:27:13.024711"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:13.026119"], ["updated_at", "2023-02-17 19:27:13.026119"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:13.027595"], ["updated_at", "2023-02-17 19:27:13.027595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:13.028758"], ["updated_at", "2023-02-17 19:27:13.028758"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:13.030275"], ["updated_at", "2023-02-17 19:27:13.030275"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:13.031485"], ["updated_at", "2023-02-17 19:27:13.031485"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:13.032952"], ["updated_at", "2023-02-17 19:27:13.032952"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:13.034583"], ["updated_at", "2023-02-17 19:27:13.034583"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:13.035997"], ["updated_at", "2023-02-17 19:27:13.035997"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:13.037262"], ["updated_at", "2023-02-17 19:27:13.037262"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:13.038724"], ["updated_at", "2023-02-17 19:27:13.038724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:13.039943"], ["updated_at", "2023-02-17 19:27:13.039943"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:13.041526"], ["updated_at", "2023-02-17 19:27:13.041526"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:13.042738"], ["updated_at", "2023-02-17 19:27:13.042738"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:13.044078"], ["updated_at", "2023-02-17 19:27:13.044078"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:13.045386"], ["updated_at", "2023-02-17 19:27:13.045386"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:13.047079"], ["updated_at", "2023-02-17 19:27:13.047079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:13.048310"], ["updated_at", "2023-02-17 19:27:13.048310"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:13.049698"], ["updated_at", "2023-02-17 19:27:13.049698"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:13.051367"], ["updated_at", "2023-02-17 19:27:13.051367"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:13.052826"], ["updated_at", "2023-02-17 19:27:13.052826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:13.054129"], ["updated_at", "2023-02-17 19:27:13.054129"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:13.055573"], ["updated_at", "2023-02-17 19:27:13.055573"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:13.056744"], ["updated_at", "2023-02-17 19:27:13.056744"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:13.058336"], ["updated_at", "2023-02-17 19:27:13.058336"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:13.059558"], ["updated_at", "2023-02-17 19:27:13.059558"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:13.060951"], ["updated_at", "2023-02-17 19:27:13.060951"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:13.062251"], ["updated_at", "2023-02-17 19:27:13.062251"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:13.063595"], ["updated_at", "2023-02-17 19:27:13.063595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:13.064764"], ["updated_at", "2023-02-17 19:27:13.064764"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:13.066328"], ["updated_at", "2023-02-17 19:27:13.066328"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:13.067563"], ["updated_at", "2023-02-17 19:27:13.067563"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:13.069002"], ["updated_at", "2023-02-17 19:27:13.069002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:13.070271"], ["updated_at", "2023-02-17 19:27:13.070271"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:13.071615"], ["updated_at", "2023-02-17 19:27:13.071615"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:13.072916"], ["updated_at", "2023-02-17 19:27:13.072916"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:13.074391"], ["updated_at", "2023-02-17 19:27:13.074391"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:13.075590"], ["updated_at", "2023-02-17 19:27:13.075590"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:13.077056"], ["updated_at", "2023-02-17 19:27:13.077056"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:13.078237"], ["updated_at", "2023-02-17 19:27:13.078237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:13.079551"], ["updated_at", "2023-02-17 19:27:13.079551"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:13.081097"], ["updated_at", "2023-02-17 19:27:13.081097"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:13.082642"], ["updated_at", "2023-02-17 19:27:13.082642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:13.083947"], ["updated_at", "2023-02-17 19:27:13.083947"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:13.085394"], ["updated_at", "2023-02-17 19:27:13.085394"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:13.086564"], ["updated_at", "2023-02-17 19:27:13.086564"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:13.088071"], ["updated_at", "2023-02-17 19:27:13.088071"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:13.089304"], ["updated_at", "2023-02-17 19:27:13.089304"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:13.090729"], ["updated_at", "2023-02-17 19:27:13.090729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:13.092014"], ["updated_at", "2023-02-17 19:27:13.092014"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:13.093414"], ["updated_at", "2023-02-17 19:27:13.093414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:13.094500"], ["updated_at", "2023-02-17 19:27:13.094500"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:13.095888"], ["updated_at", "2023-02-17 19:27:13.095888"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:13.097341"], ["updated_at", "2023-02-17 19:27:13.097341"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:13.098903"], ["updated_at", "2023-02-17 19:27:13.098903"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:13.100144"], ["updated_at", "2023-02-17 19:27:13.100144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:13.101373"], ["updated_at", "2023-02-17 19:27:13.101373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:13.113038"], ["updated_at", "2023-02-17 19:27:13.113038"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:13.114498"], ["updated_at", "2023-02-17 19:27:13.114498"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:13.115502"], ["updated_at", "2023-02-17 19:27:13.115502"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.116420"], ["updated_at", "2023-02-17 19:27:13.116420"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.117474"], ["updated_at", "2023-02-17 19:27:13.117474"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.118429"], ["updated_at", "2023-02-17 19:27:13.118429"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.119180"], ["updated_at", "2023-02-17 19:27:13.119180"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.119899"], ["updated_at", "2023-02-17 19:27:13.119899"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:13.120690"], ["updated_at", "2023-02-17 19:27:13.120690"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.121645"], ["updated_at", "2023-02-17 19:27:13.121645"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.122507"], ["updated_at", "2023-02-17 19:27:13.122507"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.123271"], ["updated_at", "2023-02-17 19:27:13.123271"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.123999"], ["updated_at", "2023-02-17 19:27:13.123999"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.124729"], ["updated_at", "2023-02-17 19:27:13.124729"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.125645"], ["updated_at", "2023-02-17 19:27:13.125645"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.126427"], ["updated_at", "2023-02-17 19:27:13.126427"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.127190"], ["updated_at", "2023-02-17 19:27:13.127190"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.127947"], ["updated_at", "2023-02-17 19:27:13.127947"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.128674"], ["updated_at", "2023-02-17 19:27:13.128674"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.129585"], ["updated_at", "2023-02-17 19:27:13.129585"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.130373"], ["updated_at", "2023-02-17 19:27:13.130373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:13.142276"], ["updated_at", "2023-02-17 19:27:13.142276"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:13.143549"], ["updated_at", "2023-02-17 19:27:13.143549"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:13.144611"], ["updated_at", "2023-02-17 19:27:13.144611"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:13.145549"], ["updated_at", "2023-02-17 19:27:13.145549"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:13.146348"], ["updated_at", "2023-02-17 19:27:13.146348"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:13.147317"], ["updated_at", "2023-02-17 19:27:13.147317"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:13.148098"], ["updated_at", "2023-02-17 19:27:13.148098"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:13.149058"], ["updated_at", "2023-02-17 19:27:13.149058"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:13.149947"], ["updated_at", "2023-02-17 19:27:13.149947"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.150972"], ["updated_at", "2023-02-17 19:27:13.150972"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.151831"], ["updated_at", "2023-02-17 19:27:13.151831"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.152595"], ["updated_at", "2023-02-17 19:27:13.152595"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.153352"], ["updated_at", "2023-02-17 19:27:13.153352"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.154074"], ["updated_at", "2023-02-17 19:27:13.154074"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.155013"], ["updated_at", "2023-02-17 19:27:13.155013"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.155787"], ["updated_at", "2023-02-17 19:27:13.155787"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.156539"], ["updated_at", "2023-02-17 19:27:13.156539"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.157311"], ["updated_at", "2023-02-17 19:27:13.157311"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.158146"], ["updated_at", "2023-02-17 19:27:13.158146"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.158936"], ["updated_at", "2023-02-17 19:27:13.158936"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:13.159710"], ["updated_at", "2023-02-17 19:27:13.159710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:13.176388"], ["updated_at", "2023-02-17 19:27:13.176388"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:13.177804"], ["updated_at", "2023-02-17 19:27:13.177804"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.178742"], ["updated_at", "2023-02-17 19:27:13.178742"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.179606"], ["updated_at", "2023-02-17 19:27:13.179606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.180490"], ["updated_at", "2023-02-17 19:27:13.180490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.181492"], ["updated_at", "2023-02-17 19:27:13.181492"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.182508"], ["updated_at", "2023-02-17 19:27:13.182508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.183736"], ["updated_at", "2023-02-17 19:27:13.183736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.184577"], ["updated_at", "2023-02-17 19:27:13.184577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.185351"], ["updated_at", "2023-02-17 19:27:13.185351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.186086"], ["updated_at", "2023-02-17 19:27:13.186086"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.186942"], ["updated_at", "2023-02-17 19:27:13.186942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.187687"], ["updated_at", "2023-02-17 19:27:13.187687"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.188394"], ["updated_at", "2023-02-17 19:27:13.188394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.189110"], ["updated_at", "2023-02-17 19:27:13.189110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:13.189858"], ["updated_at", "2023-02-17 19:27:13.189858"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:13.207767"], ["updated_at", "2023-02-17 19:27:13.207767"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:13.208818"], ["updated_at", "2023-02-17 19:27:13.208818"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.209637"], ["updated_at", "2023-02-17 19:27:13.209637"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.210386"], ["updated_at", "2023-02-17 19:27:13.210386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.211371"], ["updated_at", "2023-02-17 19:27:13.211371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.212168"], ["updated_at", "2023-02-17 19:27:13.212168"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.212931"], ["updated_at", "2023-02-17 19:27:13.212931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.213710"], ["updated_at", "2023-02-17 19:27:13.213710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.214624"], ["updated_at", "2023-02-17 19:27:13.214624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.215476"], ["updated_at", "2023-02-17 19:27:13.215476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.216308"], ["updated_at", "2023-02-17 19:27:13.216308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.217109"], ["updated_at", "2023-02-17 19:27:13.217109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.217893"], ["updated_at", "2023-02-17 19:27:13.217893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.218782"], ["updated_at", "2023-02-17 19:27:13.218782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.219515"], ["updated_at", "2023-02-17 19:27:13.219515"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:13.220248"], ["updated_at", "2023-02-17 19:27:13.220248"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:13.236542"], ["updated_at", "2023-02-17 19:27:13.236542"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:13.237745"], ["updated_at", "2023-02-17 19:27:13.237745"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.238582"], ["updated_at", "2023-02-17 19:27:13.238582"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.239311"], ["updated_at", "2023-02-17 19:27:13.239311"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.240076"], ["updated_at", "2023-02-17 19:27:13.240076"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.241001"], ["updated_at", "2023-02-17 19:27:13.241001"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.241904"], ["updated_at", "2023-02-17 19:27:13.241904"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.242656"], ["updated_at", "2023-02-17 19:27:13.242656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.243398"], ["updated_at", "2023-02-17 19:27:13.243398"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.244118"], ["updated_at", "2023-02-17 19:27:13.244118"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.245024"], ["updated_at", "2023-02-17 19:27:13.245024"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.245836"], ["updated_at", "2023-02-17 19:27:13.245836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.246594"], ["updated_at", "2023-02-17 19:27:13.246594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.247346"], ["updated_at", "2023-02-17 19:27:13.247346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.248054"], ["updated_at", "2023-02-17 19:27:13.248054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:13.249091"], ["updated_at", "2023-02-17 19:27:13.249091"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:13.266615"], ["updated_at", "2023-02-17 19:27:13.266615"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:13.267903"], ["updated_at", "2023-02-17 19:27:13.267903"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.268752"], ["updated_at", "2023-02-17 19:27:13.268752"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.269501"], ["updated_at", "2023-02-17 19:27:13.269501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.270246"], ["updated_at", "2023-02-17 19:27:13.270246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.271070"], ["updated_at", "2023-02-17 19:27:13.271070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.271851"], ["updated_at", "2023-02-17 19:27:13.271851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.272549"], ["updated_at", "2023-02-17 19:27:13.272549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.273290"], ["updated_at", "2023-02-17 19:27:13.273290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.274327"], ["updated_at", "2023-02-17 19:27:13.274327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.275634"], ["updated_at", "2023-02-17 19:27:13.275634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.276623"], ["updated_at", "2023-02-17 19:27:13.276623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.277382"], ["updated_at", "2023-02-17 19:27:13.277382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.278090"], ["updated_at", "2023-02-17 19:27:13.278090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.278901"], ["updated_at", "2023-02-17 19:27:13.278901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:13.279639"], ["updated_at", "2023-02-17 19:27:13.279639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:13.296091"], ["updated_at", "2023-02-17 19:27:13.296091"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:13.297092"], ["updated_at", "2023-02-17 19:27:13.297092"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.297864"], ["updated_at", "2023-02-17 19:27:13.297864"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.298580"], ["updated_at", "2023-02-17 19:27:13.298580"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.299515"], ["updated_at", "2023-02-17 19:27:13.299515"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.300350"], ["updated_at", "2023-02-17 19:27:13.300350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.301101"], ["updated_at", "2023-02-17 19:27:13.301101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.301813"], ["updated_at", "2023-02-17 19:27:13.301813"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.302522"], ["updated_at", "2023-02-17 19:27:13.302522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.303435"], ["updated_at", "2023-02-17 19:27:13.303435"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.304223"], ["updated_at", "2023-02-17 19:27:13.304223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.304937"], ["updated_at", "2023-02-17 19:27:13.304937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.305674"], ["updated_at", "2023-02-17 19:27:13.305674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.306428"], ["updated_at", "2023-02-17 19:27:13.306428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.307281"], ["updated_at", "2023-02-17 19:27:13.307281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:13.308036"], ["updated_at", "2023-02-17 19:27:13.308036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:13.324254"], ["updated_at", "2023-02-17 19:27:13.324254"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:13.325257"], ["updated_at", "2023-02-17 19:27:13.325257"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:13.326241"], ["updated_at", "2023-02-17 19:27:13.326241"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:13.327008"], ["updated_at", "2023-02-17 19:27:13.327008"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.327806"], ["updated_at", "2023-02-17 19:27:13.327806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.328560"], ["updated_at", "2023-02-17 19:27:13.328560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.329387"], ["updated_at", "2023-02-17 19:27:13.329387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.330217"], ["updated_at", "2023-02-17 19:27:13.330217"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.330962"], ["updated_at", "2023-02-17 19:27:13.330962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.331683"], ["updated_at", "2023-02-17 19:27:13.331683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.332400"], ["updated_at", "2023-02-17 19:27:13.332400"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.333293"], ["updated_at", "2023-02-17 19:27:13.333293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.334208"], ["updated_at", "2023-02-17 19:27:13.334208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.334937"], ["updated_at", "2023-02-17 19:27:13.334937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.335645"], ["updated_at", "2023-02-17 19:27:13.335645"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:13.336406"], ["updated_at", "2023-02-17 19:27:13.336406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:27:13 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:27:13 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.3ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.3ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:27:13 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (15.4ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.2ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2382)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:57.774772"], ["updated_at", "2023-02-17 19:27:57.774772"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:57.791164"], ["updated_at", "2023-02-17 19:27:57.791164"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:27:57.797200"], ["updated_at", "2023-02-17 19:27:57.797200"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:57.807985"], ["updated_at", "2023-02-17 19:27:57.807985"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:57.815530"], ["updated_at", "2023-02-17 19:27:57.815530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:27:57.819692"], ["updated_at", "2023-02-17 19:27:57.819692"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:57.822121"], ["updated_at", "2023-02-17 19:27:57.822121"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 59ms (Views: 0.2ms | ActiveRecord: 5.4ms | Allocations: 28603)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:27:57.841151"], ["updated_at", "2023-02-17 19:27:57.841151"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 1.0ms | Allocations: 4604)

TRANSACTION (0.1ms)  rollback transaction

Processing by ScrapperController#show as HTML

TRANSACTION (0.1ms)  begin transaction

Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409) Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000558c38d32880>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms | Allocations: 658)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2382)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Create (2.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:57.896711"], ["updated_at", "2023-02-17 19:27:57.896711"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:57.900304"], ["updated_at", "2023-02-17 19:27:57.900304"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:57.905749"], ["updated_at", "2023-02-17 19:27:57.905749"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:57.911077"], ["updated_at", "2023-02-17 19:27:57.911077"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:57.916375"], ["updated_at", "2023-02-17 19:27:57.916375"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:57.918204"], ["updated_at", "2023-02-17 19:27:57.918204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:57.922848"], ["updated_at", "2023-02-17 19:27:57.922848"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:27:57.923956"], ["updated_at", "2023-02-17 19:27:57.923956"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:57.927693"], ["updated_at", "2023-02-17 19:27:57.927693"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:57.933395"], ["updated_at", "2023-02-17 19:27:57.933395"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:57.933675"], ["updated_at", "2023-02-17 19:27:57.933675"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:57.938647"], ["updated_at", "2023-02-17 19:27:57.938647"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:57.940488"], ["updated_at", "2023-02-17 19:27:57.940488"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:27:57.943835"], ["updated_at", "2023-02-17 19:27:57.943835"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:57.946128"], ["updated_at", "2023-02-17 19:27:57.946128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 63ms (Views: 0.2ms | ActiveRecord: 7.3ms | Allocations: 28608)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:27:57 -0300

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 232) Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:27:57.962904"], ["updated_at", "2023-02-17 19:27:57.962904"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:27:57 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 180)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Load (0.3ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 18ms (Views: 13.1ms | ActiveRecord: 1.2ms | Allocations: 4604)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055a5ee3a4258>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.4ms | Allocations: 658)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:58.056503"], ["updated_at", "2023-02-17 19:27:58.056503"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:58.059062"], ["updated_at", "2023-02-17 19:27:58.059062"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:58.063757"], ["updated_at", "2023-02-17 19:27:58.063757"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:58.065804"], ["updated_at", "2023-02-17 19:27:58.065804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:58.071375"], ["updated_at", "2023-02-17 19:27:58.071375"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:58.073157"], ["updated_at", "2023-02-17 19:27:58.073157"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.6ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:58.078946"], ["updated_at", "2023-02-17 19:27:58.078946"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:58.081836"], ["updated_at", "2023-02-17 19:27:58.081836"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:58.086157"], ["updated_at", "2023-02-17 19:27:58.086157"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:58.089672"], ["updated_at", "2023-02-17 19:27:58.089672"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:58.091968"], ["updated_at", "2023-02-17 19:27:58.091968"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:58.094182"], ["updated_at", "2023-02-17 19:27:58.094182"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:58.097124"], ["updated_at", "2023-02-17 19:27:58.097124"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:58.099757"], ["updated_at", "2023-02-17 19:27:58.099757"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:58.102705"], ["updated_at", "2023-02-17 19:27:58.102705"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:58.104778"], ["updated_at", "2023-02-17 19:27:58.104778"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:58.107270"], ["updated_at", "2023-02-17 19:27:58.107270"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:58.109697"], ["updated_at", "2023-02-17 19:27:58.109697"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:58.112190"], ["updated_at", "2023-02-17 19:27:58.112190"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:58.114576"], ["updated_at", "2023-02-17 19:27:58.114576"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:58.118557"], ["updated_at", "2023-02-17 19:27:58.118557"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:58.120240"], ["updated_at", "2023-02-17 19:27:58.120240"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:58.121902"], ["updated_at", "2023-02-17 19:27:58.121902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:58.123286"], ["updated_at", "2023-02-17 19:27:58.123286"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:58.124785"], ["updated_at", "2023-02-17 19:27:58.124785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:58.126074"], ["updated_at", "2023-02-17 19:27:58.126074"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:58.127562"], ["updated_at", "2023-02-17 19:27:58.127562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:58.128820"], ["updated_at", "2023-02-17 19:27:58.128820"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:58.130338"], ["updated_at", "2023-02-17 19:27:58.130338"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:58.132021"], ["updated_at", "2023-02-17 19:27:58.132021"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:58.134138"], ["updated_at", "2023-02-17 19:27:58.134138"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:58.135543"], ["updated_at", "2023-02-17 19:27:58.135543"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:58.137144"], ["updated_at", "2023-02-17 19:27:58.137144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:58.138554"], ["updated_at", "2023-02-17 19:27:58.138554"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:58.140163"], ["updated_at", "2023-02-17 19:27:58.140163"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:58.141494"], ["updated_at", "2023-02-17 19:27:58.141494"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:58.143113"], ["updated_at", "2023-02-17 19:27:58.143113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:58.144480"], ["updated_at", "2023-02-17 19:27:58.144480"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:58.146081"], ["updated_at", "2023-02-17 19:27:58.146081"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:58.147454"], ["updated_at", "2023-02-17 19:27:58.147454"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:58.149551"], ["updated_at", "2023-02-17 19:27:58.149551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:58.151218"], ["updated_at", "2023-02-17 19:27:58.151218"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:58.152802"], ["updated_at", "2023-02-17 19:27:58.152802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:58.154270"], ["updated_at", "2023-02-17 19:27:58.154270"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:58.155928"], ["updated_at", "2023-02-17 19:27:58.155928"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:58.157310"], ["updated_at", "2023-02-17 19:27:58.157310"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:58.158879"], ["updated_at", "2023-02-17 19:27:58.158879"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.7ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:58.160344"], ["updated_at", "2023-02-17 19:27:58.160344"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:58.162951"], ["updated_at", "2023-02-17 19:27:58.162951"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:58.164633"], ["updated_at", "2023-02-17 19:27:58.164633"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:58.166886"], ["updated_at", "2023-02-17 19:27:58.166886"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:58.168573"], ["updated_at", "2023-02-17 19:27:58.168573"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:58.170689"], ["updated_at", "2023-02-17 19:27:58.170689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:58.172511"], ["updated_at", "2023-02-17 19:27:58.172511"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:58.174711"], ["updated_at", "2023-02-17 19:27:58.174711"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:58.176475"], ["updated_at", "2023-02-17 19:27:58.176475"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:58.178366"], ["updated_at", "2023-02-17 19:27:58.178366"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:58.180133"], ["updated_at", "2023-02-17 19:27:58.180133"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:58.182061"], ["updated_at", "2023-02-17 19:27:58.182061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:58.183985"], ["updated_at", "2023-02-17 19:27:58.183985"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:58.185949"], ["updated_at", "2023-02-17 19:27:58.185949"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:58.188291"], ["updated_at", "2023-02-17 19:27:58.188291"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:58.190221"], ["updated_at", "2023-02-17 19:27:58.190221"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:58.191855"], ["updated_at", "2023-02-17 19:27:58.191855"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:58.193644"], ["updated_at", "2023-02-17 19:27:58.193644"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:58.195072"], ["updated_at", "2023-02-17 19:27:58.195072"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:58.196604"], ["updated_at", "2023-02-17 19:27:58.196604"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:58.197818"], ["updated_at", "2023-02-17 19:27:58.197818"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:58.199347"], ["updated_at", "2023-02-17 19:27:58.199347"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:58.200627"], ["updated_at", "2023-02-17 19:27:58.200627"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:58.202061"], ["updated_at", "2023-02-17 19:27:58.202061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:58.203233"], ["updated_at", "2023-02-17 19:27:58.203233"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:58.204579"], ["updated_at", "2023-02-17 19:27:58.204579"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:58.205781"], ["updated_at", "2023-02-17 19:27:58.205781"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:58.207127"], ["updated_at", "2023-02-17 19:27:58.207127"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:58.208353"], ["updated_at", "2023-02-17 19:27:58.208353"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:58.209773"], ["updated_at", "2023-02-17 19:27:58.209773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:58.210954"], ["updated_at", "2023-02-17 19:27:58.210954"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:58.212365"], ["updated_at", "2023-02-17 19:27:58.212365"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:58.213573"], ["updated_at", "2023-02-17 19:27:58.213573"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:58.215056"], ["updated_at", "2023-02-17 19:27:58.215056"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:58.216358"], ["updated_at", "2023-02-17 19:27:58.216358"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:58.217830"], ["updated_at", "2023-02-17 19:27:58.217830"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:58.219186"], ["updated_at", "2023-02-17 19:27:58.219186"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:58.220678"], ["updated_at", "2023-02-17 19:27:58.220678"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:58.222253"], ["updated_at", "2023-02-17 19:27:58.222253"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:58.224220"], ["updated_at", "2023-02-17 19:27:58.224220"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:58.225705"], ["updated_at", "2023-02-17 19:27:58.225705"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:58.227223"], ["updated_at", "2023-02-17 19:27:58.227223"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:58.228422"], ["updated_at", "2023-02-17 19:27:58.228422"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:58.229819"], ["updated_at", "2023-02-17 19:27:58.229819"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:58.231060"], ["updated_at", "2023-02-17 19:27:58.231060"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:58.232632"], ["updated_at", "2023-02-17 19:27:58.232632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:58.233902"], ["updated_at", "2023-02-17 19:27:58.233902"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:58.235296"], ["updated_at", "2023-02-17 19:27:58.235296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:58.236458"], ["updated_at", "2023-02-17 19:27:58.236458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:58.237699"], ["updated_at", "2023-02-17 19:27:58.237699"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:58.239161"], ["updated_at", "2023-02-17 19:27:58.239161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:58.243173"], ["updated_at", "2023-02-17 19:27:58.243173"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:58.244433"], ["updated_at", "2023-02-17 19:27:58.244433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:58.245437"], ["updated_at", "2023-02-17 19:27:58.245437"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:58.273206"], ["updated_at", "2023-02-17 19:27:58.273206"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:58.274863"], ["updated_at", "2023-02-17 19:27:58.274863"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:58.275956"], ["updated_at", "2023-02-17 19:27:58.275956"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.276840"], ["updated_at", "2023-02-17 19:27:58.276840"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.277766"], ["updated_at", "2023-02-17 19:27:58.277766"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.278507"], ["updated_at", "2023-02-17 19:27:58.278507"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.279184"], ["updated_at", "2023-02-17 19:27:58.279184"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.279901"], ["updated_at", "2023-02-17 19:27:58.279901"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:58.280667"], ["updated_at", "2023-02-17 19:27:58.280667"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.281675"], ["updated_at", "2023-02-17 19:27:58.281675"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.282639"], ["updated_at", "2023-02-17 19:27:58.282639"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.283495"], ["updated_at", "2023-02-17 19:27:58.283495"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.284239"], ["updated_at", "2023-02-17 19:27:58.284239"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.285019"], ["updated_at", "2023-02-17 19:27:58.285019"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.285775"], ["updated_at", "2023-02-17 19:27:58.285775"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.286557"], ["updated_at", "2023-02-17 19:27:58.286557"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.287378"], ["updated_at", "2023-02-17 19:27:58.287378"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.288130"], ["updated_at", "2023-02-17 19:27:58.288130"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.288853"], ["updated_at", "2023-02-17 19:27:58.288853"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.289620"], ["updated_at", "2023-02-17 19:27:58.289620"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.290349"], ["updated_at", "2023-02-17 19:27:58.290349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:58.301782"], ["updated_at", "2023-02-17 19:27:58.301782"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:58.303061"], ["updated_at", "2023-02-17 19:27:58.303061"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:58.303974"], ["updated_at", "2023-02-17 19:27:58.303974"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:58.304848"], ["updated_at", "2023-02-17 19:27:58.304848"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:58.305642"], ["updated_at", "2023-02-17 19:27:58.305642"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:58.306374"], ["updated_at", "2023-02-17 19:27:58.306374"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:58.307104"], ["updated_at", "2023-02-17 19:27:58.307104"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:58.307812"], ["updated_at", "2023-02-17 19:27:58.307812"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:58.308562"], ["updated_at", "2023-02-17 19:27:58.308562"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.309463"], ["updated_at", "2023-02-17 19:27:58.309463"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.310267"], ["updated_at", "2023-02-17 19:27:58.310267"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.311079"], ["updated_at", "2023-02-17 19:27:58.311079"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.311853"], ["updated_at", "2023-02-17 19:27:58.311853"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.312601"], ["updated_at", "2023-02-17 19:27:58.312601"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.313395"], ["updated_at", "2023-02-17 19:27:58.313395"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.314168"], ["updated_at", "2023-02-17 19:27:58.314168"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.314966"], ["updated_at", "2023-02-17 19:27:58.314966"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.315714"], ["updated_at", "2023-02-17 19:27:58.315714"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.316453"], ["updated_at", "2023-02-17 19:27:58.316453"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.317205"], ["updated_at", "2023-02-17 19:27:58.317205"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.317973"], ["updated_at", "2023-02-17 19:27:58.317973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.350013"], ["updated_at", "2023-02-17 19:27:58.350013"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.351158"], ["updated_at", "2023-02-17 19:27:58.351158"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.352035"], ["updated_at", "2023-02-17 19:27:58.352035"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.352785"], ["updated_at", "2023-02-17 19:27:58.352785"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.353613"], ["updated_at", "2023-02-17 19:27:58.353613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.354461"], ["updated_at", "2023-02-17 19:27:58.354461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.355187"], ["updated_at", "2023-02-17 19:27:58.355187"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.355887"], ["updated_at", "2023-02-17 19:27:58.355887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.356614"], ["updated_at", "2023-02-17 19:27:58.356614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.357313"], ["updated_at", "2023-02-17 19:27:58.357313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.358019"], ["updated_at", "2023-02-17 19:27:58.358019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.358751"], ["updated_at", "2023-02-17 19:27:58.358751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.359456"], ["updated_at", "2023-02-17 19:27:58.359456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.360159"], ["updated_at", "2023-02-17 19:27:58.360159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.360860"], ["updated_at", "2023-02-17 19:27:58.360860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.361643"], ["updated_at", "2023-02-17 19:27:58.361643"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.378525"], ["updated_at", "2023-02-17 19:27:58.378525"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.379490"], ["updated_at", "2023-02-17 19:27:58.379490"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.380268"], ["updated_at", "2023-02-17 19:27:58.380268"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.380977"], ["updated_at", "2023-02-17 19:27:58.380977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.381758"], ["updated_at", "2023-02-17 19:27:58.381758"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.382564"], ["updated_at", "2023-02-17 19:27:58.382564"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.383261"], ["updated_at", "2023-02-17 19:27:58.383261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.383973"], ["updated_at", "2023-02-17 19:27:58.383973"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.384674"], ["updated_at", "2023-02-17 19:27:58.384674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.385369"], ["updated_at", "2023-02-17 19:27:58.385369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.386083"], ["updated_at", "2023-02-17 19:27:58.386083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.386779"], ["updated_at", "2023-02-17 19:27:58.386779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.387502"], ["updated_at", "2023-02-17 19:27:58.387502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.388178"], ["updated_at", "2023-02-17 19:27:58.388178"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.388882"], ["updated_at", "2023-02-17 19:27:58.388882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.389601"], ["updated_at", "2023-02-17 19:27:58.389601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.405113"], ["updated_at", "2023-02-17 19:27:58.405113"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.406114"], ["updated_at", "2023-02-17 19:27:58.406114"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.406863"], ["updated_at", "2023-02-17 19:27:58.406863"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.407597"], ["updated_at", "2023-02-17 19:27:58.407597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.408355"], ["updated_at", "2023-02-17 19:27:58.408355"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.409302"], ["updated_at", "2023-02-17 19:27:58.409302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.411678"], ["updated_at", "2023-02-17 19:27:58.411678"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.412695"], ["updated_at", "2023-02-17 19:27:58.412695"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.413487"], ["updated_at", "2023-02-17 19:27:58.413487"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.414256"], ["updated_at", "2023-02-17 19:27:58.414256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.414991"], ["updated_at", "2023-02-17 19:27:58.414991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.415721"], ["updated_at", "2023-02-17 19:27:58.415721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.416440"], ["updated_at", "2023-02-17 19:27:58.416440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.417190"], ["updated_at", "2023-02-17 19:27:58.417190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.417896"], ["updated_at", "2023-02-17 19:27:58.417896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.418927"], ["updated_at", "2023-02-17 19:27:58.418927"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.435356"], ["updated_at", "2023-02-17 19:27:58.435356"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.436374"], ["updated_at", "2023-02-17 19:27:58.436374"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.437169"], ["updated_at", "2023-02-17 19:27:58.437169"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.437978"], ["updated_at", "2023-02-17 19:27:58.437978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.438862"], ["updated_at", "2023-02-17 19:27:58.438862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.439769"], ["updated_at", "2023-02-17 19:27:58.439769"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.440604"], ["updated_at", "2023-02-17 19:27:58.440604"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.441551"], ["updated_at", "2023-02-17 19:27:58.441551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.442496"], ["updated_at", "2023-02-17 19:27:58.442496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.443396"], ["updated_at", "2023-02-17 19:27:58.443396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.444174"], ["updated_at", "2023-02-17 19:27:58.444174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.445047"], ["updated_at", "2023-02-17 19:27:58.445047"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.445988"], ["updated_at", "2023-02-17 19:27:58.445988"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.446829"], ["updated_at", "2023-02-17 19:27:58.446829"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.447655"], ["updated_at", "2023-02-17 19:27:58.447655"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.448653"], ["updated_at", "2023-02-17 19:27:58.448653"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.467553"], ["updated_at", "2023-02-17 19:27:58.467553"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.468632"], ["updated_at", "2023-02-17 19:27:58.468632"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.469610"], ["updated_at", "2023-02-17 19:27:58.469610"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.470473"], ["updated_at", "2023-02-17 19:27:58.470473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.471266"], ["updated_at", "2023-02-17 19:27:58.471266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.472302"], ["updated_at", "2023-02-17 19:27:58.472302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.473367"], ["updated_at", "2023-02-17 19:27:58.473367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.474360"], ["updated_at", "2023-02-17 19:27:58.474360"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.475364"], ["updated_at", "2023-02-17 19:27:58.475364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.476468"], ["updated_at", "2023-02-17 19:27:58.476468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.477407"], ["updated_at", "2023-02-17 19:27:58.477407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.478280"], ["updated_at", "2023-02-17 19:27:58.478280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.479074"], ["updated_at", "2023-02-17 19:27:58.479074"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.479897"], ["updated_at", "2023-02-17 19:27:58.479897"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.480862"], ["updated_at", "2023-02-17 19:27:58.480862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.481732"], ["updated_at", "2023-02-17 19:27:58.481732"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.499615"], ["updated_at", "2023-02-17 19:27:58.499615"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.500697"], ["updated_at", "2023-02-17 19:27:58.500697"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.501655"], ["updated_at", "2023-02-17 19:27:58.501655"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.502528"], ["updated_at", "2023-02-17 19:27:58.502528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.503317"], ["updated_at", "2023-02-17 19:27:58.503317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.504291"], ["updated_at", "2023-02-17 19:27:58.504291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.505231"], ["updated_at", "2023-02-17 19:27:58.505231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.506121"], ["updated_at", "2023-02-17 19:27:58.506121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.506886"], ["updated_at", "2023-02-17 19:27:58.506886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.507603"], ["updated_at", "2023-02-17 19:27:58.507603"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.508444"], ["updated_at", "2023-02-17 19:27:58.508444"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.509216"], ["updated_at", "2023-02-17 19:27:58.509216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.510170"], ["updated_at", "2023-02-17 19:27:58.510170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.511145"], ["updated_at", "2023-02-17 19:27:58.511145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.512087"], ["updated_at", "2023-02-17 19:27:58.512087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.512922"], ["updated_at", "2023-02-17 19:27:58.512922"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:27:58 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 7ms (Views: 5.4ms | ActiveRecord: 0.4ms | Allocations: 3126)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:58.537592"], ["updated_at", "2023-02-17 19:27:58.537592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:58.539083"], ["updated_at", "2023-02-17 19:27:58.539083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:58.542045"], ["updated_at", "2023-02-17 19:27:58.542045"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:58.543319"], ["updated_at", "2023-02-17 19:27:58.543319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:58.546229"], ["updated_at", "2023-02-17 19:27:58.546229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:58.547520"], ["updated_at", "2023-02-17 19:27:58.547520"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:58.549890"], ["updated_at", "2023-02-17 19:27:58.549890"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:58.551352"], ["updated_at", "2023-02-17 19:27:58.551352"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:58.553017"], ["updated_at", "2023-02-17 19:27:58.553017"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:58.554357"], ["updated_at", "2023-02-17 19:27:58.554357"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:58.555793"], ["updated_at", "2023-02-17 19:27:58.555793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:58.557070"], ["updated_at", "2023-02-17 19:27:58.557070"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:58.558426"], ["updated_at", "2023-02-17 19:27:58.558426"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:58.559658"], ["updated_at", "2023-02-17 19:27:58.559658"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:58.561154"], ["updated_at", "2023-02-17 19:27:58.561154"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:58.562437"], ["updated_at", "2023-02-17 19:27:58.562437"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:58.563834"], ["updated_at", "2023-02-17 19:27:58.563834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:58.565231"], ["updated_at", "2023-02-17 19:27:58.565231"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:58.566685"], ["updated_at", "2023-02-17 19:27:58.566685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:58.567950"], ["updated_at", "2023-02-17 19:27:58.567950"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:58.569593"], ["updated_at", "2023-02-17 19:27:58.569593"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:58.570961"], ["updated_at", "2023-02-17 19:27:58.570961"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:58.572441"], ["updated_at", "2023-02-17 19:27:58.572441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:58.573722"], ["updated_at", "2023-02-17 19:27:58.573722"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:58.575107"], ["updated_at", "2023-02-17 19:27:58.575107"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:58.576326"], ["updated_at", "2023-02-17 19:27:58.576326"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:58.578047"], ["updated_at", "2023-02-17 19:27:58.578047"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:58.579276"], ["updated_at", "2023-02-17 19:27:58.579276"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:58.580790"], ["updated_at", "2023-02-17 19:27:58.580790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:58.582255"], ["updated_at", "2023-02-17 19:27:58.582255"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:58.583811"], ["updated_at", "2023-02-17 19:27:58.583811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:58.585120"], ["updated_at", "2023-02-17 19:27:58.585120"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:58.586912"], ["updated_at", "2023-02-17 19:27:58.586912"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:58.588206"], ["updated_at", "2023-02-17 19:27:58.588206"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:58.589916"], ["updated_at", "2023-02-17 19:27:58.589916"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:58.591337"], ["updated_at", "2023-02-17 19:27:58.591337"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:58.592929"], ["updated_at", "2023-02-17 19:27:58.592929"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:58.594237"], ["updated_at", "2023-02-17 19:27:58.594237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:58.595672"], ["updated_at", "2023-02-17 19:27:58.595672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:58.597153"], ["updated_at", "2023-02-17 19:27:58.597153"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:58.598811"], ["updated_at", "2023-02-17 19:27:58.598811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:58.600206"], ["updated_at", "2023-02-17 19:27:58.600206"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:58.601847"], ["updated_at", "2023-02-17 19:27:58.601847"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:58.603203"], ["updated_at", "2023-02-17 19:27:58.603203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:58.604836"], ["updated_at", "2023-02-17 19:27:58.604836"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:58.606287"], ["updated_at", "2023-02-17 19:27:58.606287"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:58.607792"], ["updated_at", "2023-02-17 19:27:58.607792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:58.609113"], ["updated_at", "2023-02-17 19:27:58.609113"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:58.610763"], ["updated_at", "2023-02-17 19:27:58.610763"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:58.612213"], ["updated_at", "2023-02-17 19:27:58.612213"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:58.613778"], ["updated_at", "2023-02-17 19:27:58.613778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:58.615180"], ["updated_at", "2023-02-17 19:27:58.615180"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:58.616785"], ["updated_at", "2023-02-17 19:27:58.616785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:58.618152"], ["updated_at", "2023-02-17 19:27:58.618152"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:58.619965"], ["updated_at", "2023-02-17 19:27:58.619965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:58.621518"], ["updated_at", "2023-02-17 19:27:58.621518"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:58.623352"], ["updated_at", "2023-02-17 19:27:58.623352"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:58.624892"], ["updated_at", "2023-02-17 19:27:58.624892"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:58.626556"], ["updated_at", "2023-02-17 19:27:58.626556"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:58.627977"], ["updated_at", "2023-02-17 19:27:58.627977"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:58.629581"], ["updated_at", "2023-02-17 19:27:58.629581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:58.631089"], ["updated_at", "2023-02-17 19:27:58.631089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:58.632697"], ["updated_at", "2023-02-17 19:27:58.632697"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:58.634135"], ["updated_at", "2023-02-17 19:27:58.634135"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:58.636005"], ["updated_at", "2023-02-17 19:27:58.636005"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:58.637698"], ["updated_at", "2023-02-17 19:27:58.637698"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:58.639365"], ["updated_at", "2023-02-17 19:27:58.639365"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:58.640810"], ["updated_at", "2023-02-17 19:27:58.640810"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:58.642357"], ["updated_at", "2023-02-17 19:27:58.642357"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:58.643771"], ["updated_at", "2023-02-17 19:27:58.643771"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:58.645309"], ["updated_at", "2023-02-17 19:27:58.645309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:58.646748"], ["updated_at", "2023-02-17 19:27:58.646748"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:58.648433"], ["updated_at", "2023-02-17 19:27:58.648433"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:58.649918"], ["updated_at", "2023-02-17 19:27:58.649918"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:58.651539"], ["updated_at", "2023-02-17 19:27:58.651539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:58.652973"], ["updated_at", "2023-02-17 19:27:58.652973"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:58.654557"], ["updated_at", "2023-02-17 19:27:58.654557"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:58.655869"], ["updated_at", "2023-02-17 19:27:58.655869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:58.657521"], ["updated_at", "2023-02-17 19:27:58.657521"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:58.658928"], ["updated_at", "2023-02-17 19:27:58.658928"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:58.660541"], ["updated_at", "2023-02-17 19:27:58.660541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:58.662592"], ["updated_at", "2023-02-17 19:27:58.662592"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:58.664146"], ["updated_at", "2023-02-17 19:27:58.664146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:58.665626"], ["updated_at", "2023-02-17 19:27:58.665626"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:58.667164"], ["updated_at", "2023-02-17 19:27:58.667164"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:58.668650"], ["updated_at", "2023-02-17 19:27:58.668650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:58.670088"], ["updated_at", "2023-02-17 19:27:58.670088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:58.671309"], ["updated_at", "2023-02-17 19:27:58.671309"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:58.672994"], ["updated_at", "2023-02-17 19:27:58.672994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:58.674224"], ["updated_at", "2023-02-17 19:27:58.674224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:58.675818"], ["updated_at", "2023-02-17 19:27:58.675818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:58.677164"], ["updated_at", "2023-02-17 19:27:58.677164"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:58.678637"], ["updated_at", "2023-02-17 19:27:58.678637"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:58.679955"], ["updated_at", "2023-02-17 19:27:58.679955"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:58.681624"], ["updated_at", "2023-02-17 19:27:58.681624"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:58.682969"], ["updated_at", "2023-02-17 19:27:58.682969"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:58.684412"], ["updated_at", "2023-02-17 19:27:58.684412"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:58.685987"], ["updated_at", "2023-02-17 19:27:58.685987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:58.687483"], ["updated_at", "2023-02-17 19:27:58.687483"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:58.688730"], ["updated_at", "2023-02-17 19:27:58.688730"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:58.689995"], ["updated_at", "2023-02-17 19:27:58.689995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:58.701817"], ["updated_at", "2023-02-17 19:27:58.701817"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:58.703125"], ["updated_at", "2023-02-17 19:27:58.703125"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:58.704230"], ["updated_at", "2023-02-17 19:27:58.704230"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.705241"], ["updated_at", "2023-02-17 19:27:58.705241"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.706169"], ["updated_at", "2023-02-17 19:27:58.706169"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.706885"], ["updated_at", "2023-02-17 19:27:58.706885"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.707617"], ["updated_at", "2023-02-17 19:27:58.707617"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.708293"], ["updated_at", "2023-02-17 19:27:58.708293"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:58.709074"], ["updated_at", "2023-02-17 19:27:58.709074"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.710014"], ["updated_at", "2023-02-17 19:27:58.710014"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.710900"], ["updated_at", "2023-02-17 19:27:58.710900"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.711644"], ["updated_at", "2023-02-17 19:27:58.711644"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.712371"], ["updated_at", "2023-02-17 19:27:58.712371"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.713120"], ["updated_at", "2023-02-17 19:27:58.713120"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.713959"], ["updated_at", "2023-02-17 19:27:58.713959"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.714724"], ["updated_at", "2023-02-17 19:27:58.714724"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.715568"], ["updated_at", "2023-02-17 19:27:58.715568"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.716404"], ["updated_at", "2023-02-17 19:27:58.716404"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.717188"], ["updated_at", "2023-02-17 19:27:58.717188"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.718015"], ["updated_at", "2023-02-17 19:27:58.718015"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.718778"], ["updated_at", "2023-02-17 19:27:58.718778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:58.730374"], ["updated_at", "2023-02-17 19:27:58.730374"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:58.731683"], ["updated_at", "2023-02-17 19:27:58.731683"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:58.732584"], ["updated_at", "2023-02-17 19:27:58.732584"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:58.733450"], ["updated_at", "2023-02-17 19:27:58.733450"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:58.734246"], ["updated_at", "2023-02-17 19:27:58.734246"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:58.734993"], ["updated_at", "2023-02-17 19:27:58.734993"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:58.735694"], ["updated_at", "2023-02-17 19:27:58.735694"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:58.736368"], ["updated_at", "2023-02-17 19:27:58.736368"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:58.737151"], ["updated_at", "2023-02-17 19:27:58.737151"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.738018"], ["updated_at", "2023-02-17 19:27:58.738018"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.738908"], ["updated_at", "2023-02-17 19:27:58.738908"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.739717"], ["updated_at", "2023-02-17 19:27:58.739717"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.740463"], ["updated_at", "2023-02-17 19:27:58.740463"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.741252"], ["updated_at", "2023-02-17 19:27:58.741252"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.741989"], ["updated_at", "2023-02-17 19:27:58.741989"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.742789"], ["updated_at", "2023-02-17 19:27:58.742789"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.743575"], ["updated_at", "2023-02-17 19:27:58.743575"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.744326"], ["updated_at", "2023-02-17 19:27:58.744326"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.745090"], ["updated_at", "2023-02-17 19:27:58.745090"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.745850"], ["updated_at", "2023-02-17 19:27:58.745850"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:58.746661"], ["updated_at", "2023-02-17 19:27:58.746661"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.763032"], ["updated_at", "2023-02-17 19:27:58.763032"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.764167"], ["updated_at", "2023-02-17 19:27:58.764167"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.765029"], ["updated_at", "2023-02-17 19:27:58.765029"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.765759"], ["updated_at", "2023-02-17 19:27:58.765759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.766593"], ["updated_at", "2023-02-17 19:27:58.766593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.767410"], ["updated_at", "2023-02-17 19:27:58.767410"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.768200"], ["updated_at", "2023-02-17 19:27:58.768200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.768909"], ["updated_at", "2023-02-17 19:27:58.768909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.769650"], ["updated_at", "2023-02-17 19:27:58.769650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.770363"], ["updated_at", "2023-02-17 19:27:58.770363"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.771068"], ["updated_at", "2023-02-17 19:27:58.771068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.771851"], ["updated_at", "2023-02-17 19:27:58.771851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.772601"], ["updated_at", "2023-02-17 19:27:58.772601"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.773339"], ["updated_at", "2023-02-17 19:27:58.773339"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.774045"], ["updated_at", "2023-02-17 19:27:58.774045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:58.774760"], ["updated_at", "2023-02-17 19:27:58.774760"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.790807"], ["updated_at", "2023-02-17 19:27:58.790807"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.791782"], ["updated_at", "2023-02-17 19:27:58.791782"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.792576"], ["updated_at", "2023-02-17 19:27:58.792576"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.793348"], ["updated_at", "2023-02-17 19:27:58.793348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.794134"], ["updated_at", "2023-02-17 19:27:58.794134"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.794861"], ["updated_at", "2023-02-17 19:27:58.794861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.795616"], ["updated_at", "2023-02-17 19:27:58.795616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.796333"], ["updated_at", "2023-02-17 19:27:58.796333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.797106"], ["updated_at", "2023-02-17 19:27:58.797106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.797854"], ["updated_at", "2023-02-17 19:27:58.797854"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.798565"], ["updated_at", "2023-02-17 19:27:58.798565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.799304"], ["updated_at", "2023-02-17 19:27:58.799304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.800013"], ["updated_at", "2023-02-17 19:27:58.800013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.800728"], ["updated_at", "2023-02-17 19:27:58.800728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.801493"], ["updated_at", "2023-02-17 19:27:58.801493"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:58.802209"], ["updated_at", "2023-02-17 19:27:58.802209"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.829492"], ["updated_at", "2023-02-17 19:27:58.829492"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.830511"], ["updated_at", "2023-02-17 19:27:58.830511"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.831289"], ["updated_at", "2023-02-17 19:27:58.831289"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.831983"], ["updated_at", "2023-02-17 19:27:58.831983"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.832733"], ["updated_at", "2023-02-17 19:27:58.832733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.833475"], ["updated_at", "2023-02-17 19:27:58.833475"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.834232"], ["updated_at", "2023-02-17 19:27:58.834232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.834970"], ["updated_at", "2023-02-17 19:27:58.834970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.835662"], ["updated_at", "2023-02-17 19:27:58.835662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.836336"], ["updated_at", "2023-02-17 19:27:58.836336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.837036"], ["updated_at", "2023-02-17 19:27:58.837036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.837725"], ["updated_at", "2023-02-17 19:27:58.837725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.838469"], ["updated_at", "2023-02-17 19:27:58.838469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.839189"], ["updated_at", "2023-02-17 19:27:58.839189"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.839890"], ["updated_at", "2023-02-17 19:27:58.839890"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:58.840576"], ["updated_at", "2023-02-17 19:27:58.840576"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.856586"], ["updated_at", "2023-02-17 19:27:58.856586"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.857583"], ["updated_at", "2023-02-17 19:27:58.857583"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.858331"], ["updated_at", "2023-02-17 19:27:58.858331"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.859106"], ["updated_at", "2023-02-17 19:27:58.859106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.859894"], ["updated_at", "2023-02-17 19:27:58.859894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.860662"], ["updated_at", "2023-02-17 19:27:58.860662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.861367"], ["updated_at", "2023-02-17 19:27:58.861367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.862081"], ["updated_at", "2023-02-17 19:27:58.862081"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.862807"], ["updated_at", "2023-02-17 19:27:58.862807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.863573"], ["updated_at", "2023-02-17 19:27:58.863573"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.864308"], ["updated_at", "2023-02-17 19:27:58.864308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.865033"], ["updated_at", "2023-02-17 19:27:58.865033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.865767"], ["updated_at", "2023-02-17 19:27:58.865767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.866465"], ["updated_at", "2023-02-17 19:27:58.866465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.867230"], ["updated_at", "2023-02-17 19:27:58.867230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:58.867987"], ["updated_at", "2023-02-17 19:27:58.867987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.883726"], ["updated_at", "2023-02-17 19:27:58.883726"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.884678"], ["updated_at", "2023-02-17 19:27:58.884678"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.885438"], ["updated_at", "2023-02-17 19:27:58.885438"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.886135"], ["updated_at", "2023-02-17 19:27:58.886135"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.886870"], ["updated_at", "2023-02-17 19:27:58.886870"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.887623"], ["updated_at", "2023-02-17 19:27:58.887623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.888388"], ["updated_at", "2023-02-17 19:27:58.888388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.889113"], ["updated_at", "2023-02-17 19:27:58.889113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.889819"], ["updated_at", "2023-02-17 19:27:58.889819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.890535"], ["updated_at", "2023-02-17 19:27:58.890535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.891207"], ["updated_at", "2023-02-17 19:27:58.891207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.891957"], ["updated_at", "2023-02-17 19:27:58.891957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.892714"], ["updated_at", "2023-02-17 19:27:58.892714"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.893427"], ["updated_at", "2023-02-17 19:27:58.893427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.894113"], ["updated_at", "2023-02-17 19:27:58.894113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:58.894813"], ["updated_at", "2023-02-17 19:27:58.894813"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:58.911105"], ["updated_at", "2023-02-17 19:27:58.911105"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:58.912052"], ["updated_at", "2023-02-17 19:27:58.912052"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:58.912842"], ["updated_at", "2023-02-17 19:27:58.912842"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:58.913591"], ["updated_at", "2023-02-17 19:27:58.913591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.914468"], ["updated_at", "2023-02-17 19:27:58.914468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.915408"], ["updated_at", "2023-02-17 19:27:58.915408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.916163"], ["updated_at", "2023-02-17 19:27:58.916163"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.916935"], ["updated_at", "2023-02-17 19:27:58.916935"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.917683"], ["updated_at", "2023-02-17 19:27:58.917683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.918378"], ["updated_at", "2023-02-17 19:27:58.918378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.919074"], ["updated_at", "2023-02-17 19:27:58.919074"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.919782"], ["updated_at", "2023-02-17 19:27:58.919782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.920479"], ["updated_at", "2023-02-17 19:27:58.920479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.921261"], ["updated_at", "2023-02-17 19:27:58.921261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.921999"], ["updated_at", "2023-02-17 19:27:58.921999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:58.922687"], ["updated_at", "2023-02-17 19:27:58.922687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:27:58 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:58.931610"], ["updated_at", "2023-02-17 19:27:58.931610"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:58.933109"], ["updated_at", "2023-02-17 19:27:58.933109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:58.935958"], ["updated_at", "2023-02-17 19:27:58.935958"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:58.937131"], ["updated_at", "2023-02-17 19:27:58.937131"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:58.939845"], ["updated_at", "2023-02-17 19:27:58.939845"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:58.941043"], ["updated_at", "2023-02-17 19:27:58.941043"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:58.943119"], ["updated_at", "2023-02-17 19:27:58.943119"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:58.944516"], ["updated_at", "2023-02-17 19:27:58.944516"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:58.946057"], ["updated_at", "2023-02-17 19:27:58.946057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:58.947428"], ["updated_at", "2023-02-17 19:27:58.947428"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:58.948786"], ["updated_at", "2023-02-17 19:27:58.948786"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:58.950026"], ["updated_at", "2023-02-17 19:27:58.950026"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:58.951497"], ["updated_at", "2023-02-17 19:27:58.951497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:58.952687"], ["updated_at", "2023-02-17 19:27:58.952687"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:58.954064"], ["updated_at", "2023-02-17 19:27:58.954064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:58.955309"], ["updated_at", "2023-02-17 19:27:58.955309"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:58.956678"], ["updated_at", "2023-02-17 19:27:58.956678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:58.957854"], ["updated_at", "2023-02-17 19:27:58.957854"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:58.959245"], ["updated_at", "2023-02-17 19:27:58.959245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:58.960477"], ["updated_at", "2023-02-17 19:27:58.960477"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:58.961837"], ["updated_at", "2023-02-17 19:27:58.961837"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:58.963047"], ["updated_at", "2023-02-17 19:27:58.963047"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:58.964467"], ["updated_at", "2023-02-17 19:27:58.964467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:58.965643"], ["updated_at", "2023-02-17 19:27:58.965643"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:58.967014"], ["updated_at", "2023-02-17 19:27:58.967014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:58.968239"], ["updated_at", "2023-02-17 19:27:58.968239"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:58.969634"], ["updated_at", "2023-02-17 19:27:58.969634"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:58.970814"], ["updated_at", "2023-02-17 19:27:58.970814"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:58.972269"], ["updated_at", "2023-02-17 19:27:58.972269"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:58.973467"], ["updated_at", "2023-02-17 19:27:58.973467"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:58.974836"], ["updated_at", "2023-02-17 19:27:58.974836"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:58.976264"], ["updated_at", "2023-02-17 19:27:58.976264"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:58.977752"], ["updated_at", "2023-02-17 19:27:58.977752"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:58.979528"], ["updated_at", "2023-02-17 19:27:58.979528"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:58.981097"], ["updated_at", "2023-02-17 19:27:58.981097"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:58.982633"], ["updated_at", "2023-02-17 19:27:58.982633"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:58.984340"], ["updated_at", "2023-02-17 19:27:58.984340"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:58.985666"], ["updated_at", "2023-02-17 19:27:58.985666"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:58.987118"], ["updated_at", "2023-02-17 19:27:58.987118"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:58.988831"], ["updated_at", "2023-02-17 19:27:58.988831"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:58.990553"], ["updated_at", "2023-02-17 19:27:58.990553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:58.992016"], ["updated_at", "2023-02-17 19:27:58.992016"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:58.993637"], ["updated_at", "2023-02-17 19:27:58.993637"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:58.995176"], ["updated_at", "2023-02-17 19:27:58.995176"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:58.997049"], ["updated_at", "2023-02-17 19:27:58.997049"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:58.998589"], ["updated_at", "2023-02-17 19:27:58.998589"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:59.000424"], ["updated_at", "2023-02-17 19:27:59.000424"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:59.001956"], ["updated_at", "2023-02-17 19:27:59.001956"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:59.003628"], ["updated_at", "2023-02-17 19:27:59.003628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:59.005048"], ["updated_at", "2023-02-17 19:27:59.005048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:59.006750"], ["updated_at", "2023-02-17 19:27:59.006750"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:59.008375"], ["updated_at", "2023-02-17 19:27:59.008375"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:59.010263"], ["updated_at", "2023-02-17 19:27:59.010263"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:59.011735"], ["updated_at", "2023-02-17 19:27:59.011735"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:59.013464"], ["updated_at", "2023-02-17 19:27:59.013464"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:59.015014"], ["updated_at", "2023-02-17 19:27:59.015014"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:59.016735"], ["updated_at", "2023-02-17 19:27:59.016735"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:59.018385"], ["updated_at", "2023-02-17 19:27:59.018385"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:59.020210"], ["updated_at", "2023-02-17 19:27:59.020210"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:59.021714"], ["updated_at", "2023-02-17 19:27:59.021714"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:59.023457"], ["updated_at", "2023-02-17 19:27:59.023457"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:59.024936"], ["updated_at", "2023-02-17 19:27:59.024936"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:59.026673"], ["updated_at", "2023-02-17 19:27:59.026673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.028214"], ["updated_at", "2023-02-17 19:27:59.028214"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:59.029939"], ["updated_at", "2023-02-17 19:27:59.029939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:59.031516"], ["updated_at", "2023-02-17 19:27:59.031516"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:59.033275"], ["updated_at", "2023-02-17 19:27:59.033275"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:59.034895"], ["updated_at", "2023-02-17 19:27:59.034895"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:59.036687"], ["updated_at", "2023-02-17 19:27:59.036687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.038245"], ["updated_at", "2023-02-17 19:27:59.038245"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:59.040268"], ["updated_at", "2023-02-17 19:27:59.040268"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:59.041953"], ["updated_at", "2023-02-17 19:27:59.041953"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:59.043892"], ["updated_at", "2023-02-17 19:27:59.043892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:59.045328"], ["updated_at", "2023-02-17 19:27:59.045328"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:59.046807"], ["updated_at", "2023-02-17 19:27:59.046807"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:59.048434"], ["updated_at", "2023-02-17 19:27:59.048434"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:59.050202"], ["updated_at", "2023-02-17 19:27:59.050202"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:59.051591"], ["updated_at", "2023-02-17 19:27:59.051591"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:59.053054"], ["updated_at", "2023-02-17 19:27:59.053054"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:59.054303"], ["updated_at", "2023-02-17 19:27:59.054303"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:59.055753"], ["updated_at", "2023-02-17 19:27:59.055753"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.057030"], ["updated_at", "2023-02-17 19:27:59.057030"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:59.059000"], ["updated_at", "2023-02-17 19:27:59.059000"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:59.060747"], ["updated_at", "2023-02-17 19:27:59.060747"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:59.062567"], ["updated_at", "2023-02-17 19:27:59.062567"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:59.063871"], ["updated_at", "2023-02-17 19:27:59.063871"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:59.065551"], ["updated_at", "2023-02-17 19:27:59.065551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:59.066929"], ["updated_at", "2023-02-17 19:27:59.066929"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:59.068457"], ["updated_at", "2023-02-17 19:27:59.068457"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:59.069895"], ["updated_at", "2023-02-17 19:27:59.069895"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:59.071550"], ["updated_at", "2023-02-17 19:27:59.071550"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:59.073065"], ["updated_at", "2023-02-17 19:27:59.073065"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:59.074663"], ["updated_at", "2023-02-17 19:27:59.074663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:59.075902"], ["updated_at", "2023-02-17 19:27:59.075902"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:59.077426"], ["updated_at", "2023-02-17 19:27:59.077426"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:59.078824"], ["updated_at", "2023-02-17 19:27:59.078824"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:59.080146"], ["updated_at", "2023-02-17 19:27:59.080146"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:59.081773"], ["updated_at", "2023-02-17 19:27:59.081773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:59.083532"], ["updated_at", "2023-02-17 19:27:59.083532"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:59.084851"], ["updated_at", "2023-02-17 19:27:59.084851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:59.086186"], ["updated_at", "2023-02-17 19:27:59.086186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:59.098748"], ["updated_at", "2023-02-17 19:27:59.098748"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:59.100144"], ["updated_at", "2023-02-17 19:27:59.100144"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:59.101154"], ["updated_at", "2023-02-17 19:27:59.101154"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.102051"], ["updated_at", "2023-02-17 19:27:59.102051"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.103020"], ["updated_at", "2023-02-17 19:27:59.103020"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.103931"], ["updated_at", "2023-02-17 19:27:59.103931"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.104678"], ["updated_at", "2023-02-17 19:27:59.104678"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.105373"], ["updated_at", "2023-02-17 19:27:59.105373"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:59.106116"], ["updated_at", "2023-02-17 19:27:59.106116"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.106986"], ["updated_at", "2023-02-17 19:27:59.106986"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.107820"], ["updated_at", "2023-02-17 19:27:59.107820"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.108570"], ["updated_at", "2023-02-17 19:27:59.108570"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.109579"], ["updated_at", "2023-02-17 19:27:59.109579"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.110406"], ["updated_at", "2023-02-17 19:27:59.110406"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.111327"], ["updated_at", "2023-02-17 19:27:59.111327"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.112249"], ["updated_at", "2023-02-17 19:27:59.112249"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.113052"], ["updated_at", "2023-02-17 19:27:59.113052"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.113802"], ["updated_at", "2023-02-17 19:27:59.113802"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.114597"], ["updated_at", "2023-02-17 19:27:59.114597"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.115462"], ["updated_at", "2023-02-17 19:27:59.115462"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.116298"], ["updated_at", "2023-02-17 19:27:59.116298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:59.128022"], ["updated_at", "2023-02-17 19:27:59.128022"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:59.129331"], ["updated_at", "2023-02-17 19:27:59.129331"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:59.130273"], ["updated_at", "2023-02-17 19:27:59.130273"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.131187"], ["updated_at", "2023-02-17 19:27:59.131187"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.132110"], ["updated_at", "2023-02-17 19:27:59.132110"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.132965"], ["updated_at", "2023-02-17 19:27:59.132965"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.133762"], ["updated_at", "2023-02-17 19:27:59.133762"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.134464"], ["updated_at", "2023-02-17 19:27:59.134464"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:59.135218"], ["updated_at", "2023-02-17 19:27:59.135218"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.136116"], ["updated_at", "2023-02-17 19:27:59.136116"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.136979"], ["updated_at", "2023-02-17 19:27:59.136979"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.137772"], ["updated_at", "2023-02-17 19:27:59.137772"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.138571"], ["updated_at", "2023-02-17 19:27:59.138571"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.139367"], ["updated_at", "2023-02-17 19:27:59.139367"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.140240"], ["updated_at", "2023-02-17 19:27:59.140240"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.141032"], ["updated_at", "2023-02-17 19:27:59.141032"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.142032"], ["updated_at", "2023-02-17 19:27:59.142032"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.142962"], ["updated_at", "2023-02-17 19:27:59.142962"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.143782"], ["updated_at", "2023-02-17 19:27:59.143782"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.144532"], ["updated_at", "2023-02-17 19:27:59.144532"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.145281"], ["updated_at", "2023-02-17 19:27:59.145281"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.164050"], ["updated_at", "2023-02-17 19:27:59.164050"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.165319"], ["updated_at", "2023-02-17 19:27:59.165319"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.166317"], ["updated_at", "2023-02-17 19:27:59.166317"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.167069"], ["updated_at", "2023-02-17 19:27:59.167069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.167864"], ["updated_at", "2023-02-17 19:27:59.167864"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.168650"], ["updated_at", "2023-02-17 19:27:59.168650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.169633"], ["updated_at", "2023-02-17 19:27:59.169633"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.170607"], ["updated_at", "2023-02-17 19:27:59.170607"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.171354"], ["updated_at", "2023-02-17 19:27:59.171354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.172072"], ["updated_at", "2023-02-17 19:27:59.172072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.172774"], ["updated_at", "2023-02-17 19:27:59.172774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.173518"], ["updated_at", "2023-02-17 19:27:59.173518"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.174441"], ["updated_at", "2023-02-17 19:27:59.174441"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.175211"], ["updated_at", "2023-02-17 19:27:59.175211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.175981"], ["updated_at", "2023-02-17 19:27:59.175981"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.176697"], ["updated_at", "2023-02-17 19:27:59.176697"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.193523"], ["updated_at", "2023-02-17 19:27:59.193523"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.194551"], ["updated_at", "2023-02-17 19:27:59.194551"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.195317"], ["updated_at", "2023-02-17 19:27:59.195317"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.196027"], ["updated_at", "2023-02-17 19:27:59.196027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.196833"], ["updated_at", "2023-02-17 19:27:59.196833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.197680"], ["updated_at", "2023-02-17 19:27:59.197680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.198511"], ["updated_at", "2023-02-17 19:27:59.198511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.199488"], ["updated_at", "2023-02-17 19:27:59.199488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.200255"], ["updated_at", "2023-02-17 19:27:59.200255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.200965"], ["updated_at", "2023-02-17 19:27:59.200965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.201683"], ["updated_at", "2023-02-17 19:27:59.201683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.202550"], ["updated_at", "2023-02-17 19:27:59.202550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.203577"], ["updated_at", "2023-02-17 19:27:59.203577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.204317"], ["updated_at", "2023-02-17 19:27:59.204317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.205040"], ["updated_at", "2023-02-17 19:27:59.205040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.205742"], ["updated_at", "2023-02-17 19:27:59.205742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.222052"], ["updated_at", "2023-02-17 19:27:59.222052"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.223074"], ["updated_at", "2023-02-17 19:27:59.223074"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.223876"], ["updated_at", "2023-02-17 19:27:59.223876"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.224621"], ["updated_at", "2023-02-17 19:27:59.224621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.225422"], ["updated_at", "2023-02-17 19:27:59.225422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.226160"], ["updated_at", "2023-02-17 19:27:59.226160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.226885"], ["updated_at", "2023-02-17 19:27:59.226885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.227542"], ["updated_at", "2023-02-17 19:27:59.227542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.228240"], ["updated_at", "2023-02-17 19:27:59.228240"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.228964"], ["updated_at", "2023-02-17 19:27:59.228964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.229679"], ["updated_at", "2023-02-17 19:27:59.229679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.230371"], ["updated_at", "2023-02-17 19:27:59.230371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.231053"], ["updated_at", "2023-02-17 19:27:59.231053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.231774"], ["updated_at", "2023-02-17 19:27:59.231774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.232634"], ["updated_at", "2023-02-17 19:27:59.232634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.233378"], ["updated_at", "2023-02-17 19:27:59.233378"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.250972"], ["updated_at", "2023-02-17 19:27:59.250972"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.252182"], ["updated_at", "2023-02-17 19:27:59.252182"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.253340"], ["updated_at", "2023-02-17 19:27:59.253340"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.254433"], ["updated_at", "2023-02-17 19:27:59.254433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.255520"], ["updated_at", "2023-02-17 19:27:59.255520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.256485"], ["updated_at", "2023-02-17 19:27:59.256485"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.257257"], ["updated_at", "2023-02-17 19:27:59.257257"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.258018"], ["updated_at", "2023-02-17 19:27:59.258018"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.258846"], ["updated_at", "2023-02-17 19:27:59.258846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.259648"], ["updated_at", "2023-02-17 19:27:59.259648"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.260385"], ["updated_at", "2023-02-17 19:27:59.260385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.261102"], ["updated_at", "2023-02-17 19:27:59.261102"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.261816"], ["updated_at", "2023-02-17 19:27:59.261816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.262527"], ["updated_at", "2023-02-17 19:27:59.262527"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.263246"], ["updated_at", "2023-02-17 19:27:59.263246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.263990"], ["updated_at", "2023-02-17 19:27:59.263990"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.280917"], ["updated_at", "2023-02-17 19:27:59.280917"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.282061"], ["updated_at", "2023-02-17 19:27:59.282061"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.283120"], ["updated_at", "2023-02-17 19:27:59.283120"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.284187"], ["updated_at", "2023-02-17 19:27:59.284187"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.285353"], ["updated_at", "2023-02-17 19:27:59.285353"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.286476"], ["updated_at", "2023-02-17 19:27:59.286476"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.287560"], ["updated_at", "2023-02-17 19:27:59.287560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.288691"], ["updated_at", "2023-02-17 19:27:59.288691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.289711"], ["updated_at", "2023-02-17 19:27:59.289711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.290610"], ["updated_at", "2023-02-17 19:27:59.290610"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.291347"], ["updated_at", "2023-02-17 19:27:59.291347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.292071"], ["updated_at", "2023-02-17 19:27:59.292071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.292917"], ["updated_at", "2023-02-17 19:27:59.292917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.293671"], ["updated_at", "2023-02-17 19:27:59.293671"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.294358"], ["updated_at", "2023-02-17 19:27:59.294358"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.295061"], ["updated_at", "2023-02-17 19:27:59.295061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.311283"], ["updated_at", "2023-02-17 19:27:59.311283"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.312273"], ["updated_at", "2023-02-17 19:27:59.312273"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.313048"], ["updated_at", "2023-02-17 19:27:59.313048"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.313824"], ["updated_at", "2023-02-17 19:27:59.313824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.314640"], ["updated_at", "2023-02-17 19:27:59.314640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.315357"], ["updated_at", "2023-02-17 19:27:59.315357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.316083"], ["updated_at", "2023-02-17 19:27:59.316083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.316803"], ["updated_at", "2023-02-17 19:27:59.316803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.317557"], ["updated_at", "2023-02-17 19:27:59.317557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.318303"], ["updated_at", "2023-02-17 19:27:59.318303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.319025"], ["updated_at", "2023-02-17 19:27:59.319025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.319710"], ["updated_at", "2023-02-17 19:27:59.319710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.320406"], ["updated_at", "2023-02-17 19:27:59.320406"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.321126"], ["updated_at", "2023-02-17 19:27:59.321126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.321905"], ["updated_at", "2023-02-17 19:27:59.321905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.322654"], ["updated_at", "2023-02-17 19:27:59.322654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:27:59 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 15ms (Views: 11.1ms | ActiveRecord: 0.5ms | Allocations: 9578)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:59.347168"], ["updated_at", "2023-02-17 19:27:59.347168"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:59.348870"], ["updated_at", "2023-02-17 19:27:59.348870"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:59.352348"], ["updated_at", "2023-02-17 19:27:59.352348"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:59.353758"], ["updated_at", "2023-02-17 19:27:59.353758"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:59.357047"], ["updated_at", "2023-02-17 19:27:59.357047"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:59.358431"], ["updated_at", "2023-02-17 19:27:59.358431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:59.360802"], ["updated_at", "2023-02-17 19:27:59.360802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:59.362478"], ["updated_at", "2023-02-17 19:27:59.362478"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:59.364341"], ["updated_at", "2023-02-17 19:27:59.364341"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:59.366129"], ["updated_at", "2023-02-17 19:27:59.366129"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:59.367767"], ["updated_at", "2023-02-17 19:27:59.367767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:59.369126"], ["updated_at", "2023-02-17 19:27:59.369126"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:59.370733"], ["updated_at", "2023-02-17 19:27:59.370733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:59.372068"], ["updated_at", "2023-02-17 19:27:59.372068"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:59.373576"], ["updated_at", "2023-02-17 19:27:59.373576"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:59.374910"], ["updated_at", "2023-02-17 19:27:59.374910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:59.376663"], ["updated_at", "2023-02-17 19:27:59.376663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:59.377960"], ["updated_at", "2023-02-17 19:27:59.377960"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:59.379384"], ["updated_at", "2023-02-17 19:27:59.379384"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:59.380648"], ["updated_at", "2023-02-17 19:27:59.380648"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:59.382292"], ["updated_at", "2023-02-17 19:27:59.382292"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:59.383684"], ["updated_at", "2023-02-17 19:27:59.383684"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:59.385184"], ["updated_at", "2023-02-17 19:27:59.385184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:59.386408"], ["updated_at", "2023-02-17 19:27:59.386408"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:59.388018"], ["updated_at", "2023-02-17 19:27:59.388018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:59.389471"], ["updated_at", "2023-02-17 19:27:59.389471"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:59.390931"], ["updated_at", "2023-02-17 19:27:59.390931"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:59.392127"], ["updated_at", "2023-02-17 19:27:59.392127"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:59.393750"], ["updated_at", "2023-02-17 19:27:59.393750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:59.395272"], ["updated_at", "2023-02-17 19:27:59.395272"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:59.396873"], ["updated_at", "2023-02-17 19:27:59.396873"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:59.398503"], ["updated_at", "2023-02-17 19:27:59.398503"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:59.400092"], ["updated_at", "2023-02-17 19:27:59.400092"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:59.401363"], ["updated_at", "2023-02-17 19:27:59.401363"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:59.403054"], ["updated_at", "2023-02-17 19:27:59.403054"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:59.404717"], ["updated_at", "2023-02-17 19:27:59.404717"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:59.406608"], ["updated_at", "2023-02-17 19:27:59.406608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:59.408034"], ["updated_at", "2023-02-17 19:27:59.408034"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:59.409914"], ["updated_at", "2023-02-17 19:27:59.409914"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:59.411569"], ["updated_at", "2023-02-17 19:27:59.411569"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:59.413120"], ["updated_at", "2023-02-17 19:27:59.413120"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:59.414726"], ["updated_at", "2023-02-17 19:27:59.414726"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:59.416867"], ["updated_at", "2023-02-17 19:27:59.416867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.418295"], ["updated_at", "2023-02-17 19:27:59.418295"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:59.419789"], ["updated_at", "2023-02-17 19:27:59.419789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:59.420990"], ["updated_at", "2023-02-17 19:27:59.420990"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:59.422748"], ["updated_at", "2023-02-17 19:27:59.422748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:59.424123"], ["updated_at", "2023-02-17 19:27:59.424123"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:59.425738"], ["updated_at", "2023-02-17 19:27:59.425738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:59.427099"], ["updated_at", "2023-02-17 19:27:59.427099"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:59.428478"], ["updated_at", "2023-02-17 19:27:59.428478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:59.429679"], ["updated_at", "2023-02-17 19:27:59.429679"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:59.431263"], ["updated_at", "2023-02-17 19:27:59.431263"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:59.432945"], ["updated_at", "2023-02-17 19:27:59.432945"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:59.434944"], ["updated_at", "2023-02-17 19:27:59.434944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:59.436549"], ["updated_at", "2023-02-17 19:27:59.436549"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:59.438475"], ["updated_at", "2023-02-17 19:27:59.438475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:59.440196"], ["updated_at", "2023-02-17 19:27:59.440196"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:59.442019"], ["updated_at", "2023-02-17 19:27:59.442019"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:59.443661"], ["updated_at", "2023-02-17 19:27:59.443661"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:59.445229"], ["updated_at", "2023-02-17 19:27:59.445229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:59.446536"], ["updated_at", "2023-02-17 19:27:59.446536"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:59.448208"], ["updated_at", "2023-02-17 19:27:59.448208"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.449994"], ["updated_at", "2023-02-17 19:27:59.449994"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:59.451880"], ["updated_at", "2023-02-17 19:27:59.451880"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:59.453580"], ["updated_at", "2023-02-17 19:27:59.453580"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:59.455482"], ["updated_at", "2023-02-17 19:27:59.455482"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:59.457185"], ["updated_at", "2023-02-17 19:27:59.457185"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:59.459025"], ["updated_at", "2023-02-17 19:27:59.459025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.460366"], ["updated_at", "2023-02-17 19:27:59.460366"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:59.461798"], ["updated_at", "2023-02-17 19:27:59.461798"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:59.463014"], ["updated_at", "2023-02-17 19:27:59.463014"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:59.464536"], ["updated_at", "2023-02-17 19:27:59.464536"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:59.466219"], ["updated_at", "2023-02-17 19:27:59.466219"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:59.468149"], ["updated_at", "2023-02-17 19:27:59.468149"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:59.469814"], ["updated_at", "2023-02-17 19:27:59.469814"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:59.471708"], ["updated_at", "2023-02-17 19:27:59.471708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:59.473433"], ["updated_at", "2023-02-17 19:27:59.473433"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:59.475189"], ["updated_at", "2023-02-17 19:27:59.475189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:59.476477"], ["updated_at", "2023-02-17 19:27:59.476477"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:59.477918"], ["updated_at", "2023-02-17 19:27:59.477918"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.479116"], ["updated_at", "2023-02-17 19:27:59.479116"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:59.480543"], ["updated_at", "2023-02-17 19:27:59.480543"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:59.481841"], ["updated_at", "2023-02-17 19:27:59.481841"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:59.483429"], ["updated_at", "2023-02-17 19:27:59.483429"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:59.484858"], ["updated_at", "2023-02-17 19:27:59.484858"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:59.486385"], ["updated_at", "2023-02-17 19:27:59.486385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:59.487596"], ["updated_at", "2023-02-17 19:27:59.487596"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:59.488983"], ["updated_at", "2023-02-17 19:27:59.488983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:59.490477"], ["updated_at", "2023-02-17 19:27:59.490477"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:59.492145"], ["updated_at", "2023-02-17 19:27:59.492145"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:59.493492"], ["updated_at", "2023-02-17 19:27:59.493492"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:59.494925"], ["updated_at", "2023-02-17 19:27:59.494925"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:59.496113"], ["updated_at", "2023-02-17 19:27:59.496113"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:59.497600"], ["updated_at", "2023-02-17 19:27:59.497600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:59.498827"], ["updated_at", "2023-02-17 19:27:59.498827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:59.500294"], ["updated_at", "2023-02-17 19:27:59.500294"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:59.501839"], ["updated_at", "2023-02-17 19:27:59.501839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:59.503346"], ["updated_at", "2023-02-17 19:27:59.503346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:59.504573"], ["updated_at", "2023-02-17 19:27:59.504573"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:59.505701"], ["updated_at", "2023-02-17 19:27:59.505701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:59.518126"], ["updated_at", "2023-02-17 19:27:59.518126"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:59.519506"], ["updated_at", "2023-02-17 19:27:59.519506"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:59.520453"], ["updated_at", "2023-02-17 19:27:59.520453"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.521304"], ["updated_at", "2023-02-17 19:27:59.521304"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.522201"], ["updated_at", "2023-02-17 19:27:59.522201"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.523071"], ["updated_at", "2023-02-17 19:27:59.523071"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.524149"], ["updated_at", "2023-02-17 19:27:59.524149"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.525064"], ["updated_at", "2023-02-17 19:27:59.525064"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:59.526052"], ["updated_at", "2023-02-17 19:27:59.526052"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.527128"], ["updated_at", "2023-02-17 19:27:59.527128"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.528009"], ["updated_at", "2023-02-17 19:27:59.528009"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.528820"], ["updated_at", "2023-02-17 19:27:59.528820"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.529575"], ["updated_at", "2023-02-17 19:27:59.529575"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.530330"], ["updated_at", "2023-02-17 19:27:59.530330"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.531239"], ["updated_at", "2023-02-17 19:27:59.531239"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.532089"], ["updated_at", "2023-02-17 19:27:59.532089"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.533063"], ["updated_at", "2023-02-17 19:27:59.533063"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.533896"], ["updated_at", "2023-02-17 19:27:59.533896"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.534724"], ["updated_at", "2023-02-17 19:27:59.534724"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.535555"], ["updated_at", "2023-02-17 19:27:59.535555"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.536316"], ["updated_at", "2023-02-17 19:27:59.536316"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:59.548373"], ["updated_at", "2023-02-17 19:27:59.548373"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:59.549832"], ["updated_at", "2023-02-17 19:27:59.549832"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:59.550943"], ["updated_at", "2023-02-17 19:27:59.550943"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.551890"], ["updated_at", "2023-02-17 19:27:59.551890"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.552687"], ["updated_at", "2023-02-17 19:27:59.552687"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.553380"], ["updated_at", "2023-02-17 19:27:59.553380"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.554071"], ["updated_at", "2023-02-17 19:27:59.554071"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.554784"], ["updated_at", "2023-02-17 19:27:59.554784"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:59.555573"], ["updated_at", "2023-02-17 19:27:59.555573"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.556661"], ["updated_at", "2023-02-17 19:27:59.556661"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.557919"], ["updated_at", "2023-02-17 19:27:59.557919"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.558927"], ["updated_at", "2023-02-17 19:27:59.558927"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.559797"], ["updated_at", "2023-02-17 19:27:59.559797"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.560631"], ["updated_at", "2023-02-17 19:27:59.560631"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.561460"], ["updated_at", "2023-02-17 19:27:59.561460"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.562280"], ["updated_at", "2023-02-17 19:27:59.562280"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.563048"], ["updated_at", "2023-02-17 19:27:59.563048"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.563860"], ["updated_at", "2023-02-17 19:27:59.563860"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.564772"], ["updated_at", "2023-02-17 19:27:59.564772"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.565902"], ["updated_at", "2023-02-17 19:27:59.565902"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.567047"], ["updated_at", "2023-02-17 19:27:59.567047"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.585377"], ["updated_at", "2023-02-17 19:27:59.585377"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.586502"], ["updated_at", "2023-02-17 19:27:59.586502"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.587412"], ["updated_at", "2023-02-17 19:27:59.587412"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.588146"], ["updated_at", "2023-02-17 19:27:59.588146"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.589218"], ["updated_at", "2023-02-17 19:27:59.589218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.590460"], ["updated_at", "2023-02-17 19:27:59.590460"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.591393"], ["updated_at", "2023-02-17 19:27:59.591393"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.592220"], ["updated_at", "2023-02-17 19:27:59.592220"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.593058"], ["updated_at", "2023-02-17 19:27:59.593058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.593859"], ["updated_at", "2023-02-17 19:27:59.593859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.594605"], ["updated_at", "2023-02-17 19:27:59.594605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.595315"], ["updated_at", "2023-02-17 19:27:59.595315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.595998"], ["updated_at", "2023-02-17 19:27:59.595998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.596731"], ["updated_at", "2023-02-17 19:27:59.596731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.597536"], ["updated_at", "2023-02-17 19:27:59.597536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:27:59.598370"], ["updated_at", "2023-02-17 19:27:59.598370"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.615917"], ["updated_at", "2023-02-17 19:27:59.615917"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.616962"], ["updated_at", "2023-02-17 19:27:59.616962"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.617760"], ["updated_at", "2023-02-17 19:27:59.617760"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.618526"], ["updated_at", "2023-02-17 19:27:59.618526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.619310"], ["updated_at", "2023-02-17 19:27:59.619310"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.620060"], ["updated_at", "2023-02-17 19:27:59.620060"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.620788"], ["updated_at", "2023-02-17 19:27:59.620788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.621707"], ["updated_at", "2023-02-17 19:27:59.621707"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.622673"], ["updated_at", "2023-02-17 19:27:59.622673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.623677"], ["updated_at", "2023-02-17 19:27:59.623677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.624647"], ["updated_at", "2023-02-17 19:27:59.624647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.625415"], ["updated_at", "2023-02-17 19:27:59.625415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.626144"], ["updated_at", "2023-02-17 19:27:59.626144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.626866"], ["updated_at", "2023-02-17 19:27:59.626866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.627597"], ["updated_at", "2023-02-17 19:27:59.627597"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:27:59.628308"], ["updated_at", "2023-02-17 19:27:59.628308"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.645583"], ["updated_at", "2023-02-17 19:27:59.645583"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.646567"], ["updated_at", "2023-02-17 19:27:59.646567"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.647519"], ["updated_at", "2023-02-17 19:27:59.647519"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.648489"], ["updated_at", "2023-02-17 19:27:59.648489"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.649506"], ["updated_at", "2023-02-17 19:27:59.649506"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.650303"], ["updated_at", "2023-02-17 19:27:59.650303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.651043"], ["updated_at", "2023-02-17 19:27:59.651043"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.651886"], ["updated_at", "2023-02-17 19:27:59.651886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.652713"], ["updated_at", "2023-02-17 19:27:59.652713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.653462"], ["updated_at", "2023-02-17 19:27:59.653462"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.654164"], ["updated_at", "2023-02-17 19:27:59.654164"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.654888"], ["updated_at", "2023-02-17 19:27:59.654888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.655680"], ["updated_at", "2023-02-17 19:27:59.655680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.656748"], ["updated_at", "2023-02-17 19:27:59.656748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.657736"], ["updated_at", "2023-02-17 19:27:59.657736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:27:59.658515"], ["updated_at", "2023-02-17 19:27:59.658515"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.675059"], ["updated_at", "2023-02-17 19:27:59.675059"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.676043"], ["updated_at", "2023-02-17 19:27:59.676043"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.676867"], ["updated_at", "2023-02-17 19:27:59.676867"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.677605"], ["updated_at", "2023-02-17 19:27:59.677605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.678375"], ["updated_at", "2023-02-17 19:27:59.678375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.679105"], ["updated_at", "2023-02-17 19:27:59.679105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.679800"], ["updated_at", "2023-02-17 19:27:59.679800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.680615"], ["updated_at", "2023-02-17 19:27:59.680615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.681477"], ["updated_at", "2023-02-17 19:27:59.681477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.682393"], ["updated_at", "2023-02-17 19:27:59.682393"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.683204"], ["updated_at", "2023-02-17 19:27:59.683204"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.683925"], ["updated_at", "2023-02-17 19:27:59.683925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.684667"], ["updated_at", "2023-02-17 19:27:59.684667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.685419"], ["updated_at", "2023-02-17 19:27:59.685419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.686126"], ["updated_at", "2023-02-17 19:27:59.686126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:27:59.686916"], ["updated_at", "2023-02-17 19:27:59.686916"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.703151"], ["updated_at", "2023-02-17 19:27:59.703151"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.704170"], ["updated_at", "2023-02-17 19:27:59.704170"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.704932"], ["updated_at", "2023-02-17 19:27:59.704932"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.705698"], ["updated_at", "2023-02-17 19:27:59.705698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.706551"], ["updated_at", "2023-02-17 19:27:59.706551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.707302"], ["updated_at", "2023-02-17 19:27:59.707302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.708011"], ["updated_at", "2023-02-17 19:27:59.708011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.708702"], ["updated_at", "2023-02-17 19:27:59.708702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.709430"], ["updated_at", "2023-02-17 19:27:59.709430"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.710256"], ["updated_at", "2023-02-17 19:27:59.710256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.711012"], ["updated_at", "2023-02-17 19:27:59.711012"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.711716"], ["updated_at", "2023-02-17 19:27:59.711716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.712424"], ["updated_at", "2023-02-17 19:27:59.712424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.713197"], ["updated_at", "2023-02-17 19:27:59.713197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.714036"], ["updated_at", "2023-02-17 19:27:59.714036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:27:59.714851"], ["updated_at", "2023-02-17 19:27:59.714851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:27:59.731269"], ["updated_at", "2023-02-17 19:27:59.731269"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:27:59.732360"], ["updated_at", "2023-02-17 19:27:59.732360"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.733233"], ["updated_at", "2023-02-17 19:27:59.733233"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.734145"], ["updated_at", "2023-02-17 19:27:59.734145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.735003"], ["updated_at", "2023-02-17 19:27:59.735003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.735832"], ["updated_at", "2023-02-17 19:27:59.735832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.736572"], ["updated_at", "2023-02-17 19:27:59.736572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.737315"], ["updated_at", "2023-02-17 19:27:59.737315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.738046"], ["updated_at", "2023-02-17 19:27:59.738046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.739026"], ["updated_at", "2023-02-17 19:27:59.739026"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.740056"], ["updated_at", "2023-02-17 19:27:59.740056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.740922"], ["updated_at", "2023-02-17 19:27:59.740922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.741690"], ["updated_at", "2023-02-17 19:27:59.741690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.742408"], ["updated_at", "2023-02-17 19:27:59.742408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.743154"], ["updated_at", "2023-02-17 19:27:59.743154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:27:59.743971"], ["updated_at", "2023-02-17 19:27:59.743971"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:27:59 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:27:59.763465"], ["updated_at", "2023-02-17 19:27:59.763465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:27:59.765120"], ["updated_at", "2023-02-17 19:27:59.765120"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:27:59.768427"], ["updated_at", "2023-02-17 19:27:59.768427"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:27:59.769754"], ["updated_at", "2023-02-17 19:27:59.769754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:27:59.773828"], ["updated_at", "2023-02-17 19:27:59.773828"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:27:59.775142"], ["updated_at", "2023-02-17 19:27:59.775142"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:27:59.777476"], ["updated_at", "2023-02-17 19:27:59.777476"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:27:59.779055"], ["updated_at", "2023-02-17 19:27:59.779055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:27:59.780917"], ["updated_at", "2023-02-17 19:27:59.780917"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:27:59.782503"], ["updated_at", "2023-02-17 19:27:59.782503"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:27:59.784150"], ["updated_at", "2023-02-17 19:27:59.784150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:27:59.785504"], ["updated_at", "2023-02-17 19:27:59.785504"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:27:59.786949"], ["updated_at", "2023-02-17 19:27:59.786949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:27:59.788240"], ["updated_at", "2023-02-17 19:27:59.788240"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:27:59.790287"], ["updated_at", "2023-02-17 19:27:59.790287"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:27:59.792082"], ["updated_at", "2023-02-17 19:27:59.792082"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:27:59.793847"], ["updated_at", "2023-02-17 19:27:59.793847"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:27:59.795142"], ["updated_at", "2023-02-17 19:27:59.795142"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:27:59.796591"], ["updated_at", "2023-02-17 19:27:59.796591"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:27:59.797949"], ["updated_at", "2023-02-17 19:27:59.797949"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:27:59.799682"], ["updated_at", "2023-02-17 19:27:59.799682"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:27:59.801426"], ["updated_at", "2023-02-17 19:27:59.801426"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:27:59.803000"], ["updated_at", "2023-02-17 19:27:59.803000"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:27:59.804261"], ["updated_at", "2023-02-17 19:27:59.804261"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:27:59.805679"], ["updated_at", "2023-02-17 19:27:59.805679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:27:59.807005"], ["updated_at", "2023-02-17 19:27:59.807005"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:27:59.808636"], ["updated_at", "2023-02-17 19:27:59.808636"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:27:59.810482"], ["updated_at", "2023-02-17 19:27:59.810482"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:27:59.812447"], ["updated_at", "2023-02-17 19:27:59.812447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:27:59.813953"], ["updated_at", "2023-02-17 19:27:59.813953"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:27:59.815625"], ["updated_at", "2023-02-17 19:27:59.815625"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:27:59.816958"], ["updated_at", "2023-02-17 19:27:59.816958"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:27:59.818347"], ["updated_at", "2023-02-17 19:27:59.818347"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:27:59.819617"], ["updated_at", "2023-02-17 19:27:59.819617"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:27:59.821363"], ["updated_at", "2023-02-17 19:27:59.821363"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:27:59.822788"], ["updated_at", "2023-02-17 19:27:59.822788"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:27:59.824291"], ["updated_at", "2023-02-17 19:27:59.824291"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:27:59.825517"], ["updated_at", "2023-02-17 19:27:59.825517"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:27:59.827010"], ["updated_at", "2023-02-17 19:27:59.827010"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:27:59.828362"], ["updated_at", "2023-02-17 19:27:59.828362"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:27:59.829845"], ["updated_at", "2023-02-17 19:27:59.829845"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:27:59.831446"], ["updated_at", "2023-02-17 19:27:59.831446"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:27:59.833120"], ["updated_at", "2023-02-17 19:27:59.833120"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.834430"], ["updated_at", "2023-02-17 19:27:59.834430"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:27:59.836027"], ["updated_at", "2023-02-17 19:27:59.836027"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:27:59.837413"], ["updated_at", "2023-02-17 19:27:59.837413"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:27:59.838838"], ["updated_at", "2023-02-17 19:27:59.838838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:27:59.840064"], ["updated_at", "2023-02-17 19:27:59.840064"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:27:59.841718"], ["updated_at", "2023-02-17 19:27:59.841718"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:27:59.842983"], ["updated_at", "2023-02-17 19:27:59.842983"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:27:59.844546"], ["updated_at", "2023-02-17 19:27:59.844546"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:27:59.845859"], ["updated_at", "2023-02-17 19:27:59.845859"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:27:59.847295"], ["updated_at", "2023-02-17 19:27:59.847295"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:27:59.848651"], ["updated_at", "2023-02-17 19:27:59.848651"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:27:59.850228"], ["updated_at", "2023-02-17 19:27:59.850228"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:27:59.851928"], ["updated_at", "2023-02-17 19:27:59.851928"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:27:59.853494"], ["updated_at", "2023-02-17 19:27:59.853494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:27:59.854753"], ["updated_at", "2023-02-17 19:27:59.854753"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:27:59.856176"], ["updated_at", "2023-02-17 19:27:59.856176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:27:59.857506"], ["updated_at", "2023-02-17 19:27:59.857506"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:27:59.858963"], ["updated_at", "2023-02-17 19:27:59.858963"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:27:59.860287"], ["updated_at", "2023-02-17 19:27:59.860287"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:27:59.862166"], ["updated_at", "2023-02-17 19:27:59.862166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.863473"], ["updated_at", "2023-02-17 19:27:59.863473"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:27:59.865053"], ["updated_at", "2023-02-17 19:27:59.865053"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:27:59.866741"], ["updated_at", "2023-02-17 19:27:59.866741"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:27:59.868652"], ["updated_at", "2023-02-17 19:27:59.868652"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:27:59.870303"], ["updated_at", "2023-02-17 19:27:59.870303"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:27:59.872190"], ["updated_at", "2023-02-17 19:27:59.872190"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.873943"], ["updated_at", "2023-02-17 19:27:59.873943"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:27:59.875762"], ["updated_at", "2023-02-17 19:27:59.875762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:27:59.877389"], ["updated_at", "2023-02-17 19:27:59.877389"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:27:59.879019"], ["updated_at", "2023-02-17 19:27:59.879019"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:27:59.880276"], ["updated_at", "2023-02-17 19:27:59.880276"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:27:59.882222"], ["updated_at", "2023-02-17 19:27:59.882222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:27:59.883906"], ["updated_at", "2023-02-17 19:27:59.883906"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:27:59.885836"], ["updated_at", "2023-02-17 19:27:59.885836"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:27:59.887526"], ["updated_at", "2023-02-17 19:27:59.887526"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:27:59.889482"], ["updated_at", "2023-02-17 19:27:59.889482"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:27:59.891255"], ["updated_at", "2023-02-17 19:27:59.891255"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:27:59.893009"], ["updated_at", "2023-02-17 19:27:59.893009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:27:59.894363"], ["updated_at", "2023-02-17 19:27:59.894363"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:27:59.895882"], ["updated_at", "2023-02-17 19:27:59.895882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:27:59.897090"], ["updated_at", "2023-02-17 19:27:59.897090"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:27:59.898700"], ["updated_at", "2023-02-17 19:27:59.898700"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:27:59.900370"], ["updated_at", "2023-02-17 19:27:59.900370"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:27:59.902351"], ["updated_at", "2023-02-17 19:27:59.902351"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:27:59.904049"], ["updated_at", "2023-02-17 19:27:59.904049"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:27:59.905909"], ["updated_at", "2023-02-17 19:27:59.905909"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:27:59.907662"], ["updated_at", "2023-02-17 19:27:59.907662"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:27:59.909595"], ["updated_at", "2023-02-17 19:27:59.909595"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:27:59.911309"], ["updated_at", "2023-02-17 19:27:59.911309"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:27:59.913286"], ["updated_at", "2023-02-17 19:27:59.913286"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:27:59.914966"], ["updated_at", "2023-02-17 19:27:59.914966"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:27:59.916773"], ["updated_at", "2023-02-17 19:27:59.916773"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:27:59.918365"], ["updated_at", "2023-02-17 19:27:59.918365"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:27:59.920042"], ["updated_at", "2023-02-17 19:27:59.920042"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:27:59.922083"], ["updated_at", "2023-02-17 19:27:59.922083"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:27:59.924087"], ["updated_at", "2023-02-17 19:27:59.924087"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:27:59.925635"], ["updated_at", "2023-02-17 19:27:59.925635"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:27:59.927123"], ["updated_at", "2023-02-17 19:27:59.927123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:59.940465"], ["updated_at", "2023-02-17 19:27:59.940465"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:59.942066"], ["updated_at", "2023-02-17 19:27:59.942066"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:59.943183"], ["updated_at", "2023-02-17 19:27:59.943183"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.944090"], ["updated_at", "2023-02-17 19:27:59.944090"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.944923"], ["updated_at", "2023-02-17 19:27:59.944923"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.945651"], ["updated_at", "2023-02-17 19:27:59.945651"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.946349"], ["updated_at", "2023-02-17 19:27:59.946349"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:27:59.947034"], ["updated_at", "2023-02-17 19:27:59.947034"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:59.947793"], ["updated_at", "2023-02-17 19:27:59.947793"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.948913"], ["updated_at", "2023-02-17 19:27:59.948913"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.950143"], ["updated_at", "2023-02-17 19:27:59.950143"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.951347"], ["updated_at", "2023-02-17 19:27:59.951347"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.952531"], ["updated_at", "2023-02-17 19:27:59.952531"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.953656"], ["updated_at", "2023-02-17 19:27:59.953656"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.954794"], ["updated_at", "2023-02-17 19:27:59.954794"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.955965"], ["updated_at", "2023-02-17 19:27:59.955965"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.957107"], ["updated_at", "2023-02-17 19:27:59.957107"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.958206"], ["updated_at", "2023-02-17 19:27:59.958206"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.959352"], ["updated_at", "2023-02-17 19:27:59.959352"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.960481"], ["updated_at", "2023-02-17 19:27:59.960481"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:27:59.961457"], ["updated_at", "2023-02-17 19:27:59.961457"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:27:59.975252"], ["updated_at", "2023-02-17 19:27:59.975252"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:27:59.976571"], ["updated_at", "2023-02-17 19:27:59.976571"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:27:59.977560"], ["updated_at", "2023-02-17 19:27:59.977560"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.978503"], ["updated_at", "2023-02-17 19:27:59.978503"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.979344"], ["updated_at", "2023-02-17 19:27:59.979344"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.980105"], ["updated_at", "2023-02-17 19:27:59.980105"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.980908"], ["updated_at", "2023-02-17 19:27:59.980908"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:27:59.982093"], ["updated_at", "2023-02-17 19:27:59.982093"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:27:59.983292"], ["updated_at", "2023-02-17 19:27:59.983292"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.984584"], ["updated_at", "2023-02-17 19:27:59.984584"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.985801"], ["updated_at", "2023-02-17 19:27:59.985801"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.986979"], ["updated_at", "2023-02-17 19:27:59.986979"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.988140"], ["updated_at", "2023-02-17 19:27:59.988140"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.989246"], ["updated_at", "2023-02-17 19:27:59.989246"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.990224"], ["updated_at", "2023-02-17 19:27:59.990224"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.991208"], ["updated_at", "2023-02-17 19:27:59.991208"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.992169"], ["updated_at", "2023-02-17 19:27:59.992169"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.993007"], ["updated_at", "2023-02-17 19:27:59.993007"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.993970"], ["updated_at", "2023-02-17 19:27:59.993970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.995057"], ["updated_at", "2023-02-17 19:27:59.995057"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:27:59.996172"], ["updated_at", "2023-02-17 19:27:59.996172"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.014162"], ["updated_at", "2023-02-17 19:28:00.014162"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.015437"], ["updated_at", "2023-02-17 19:28:00.015437"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.016431"], ["updated_at", "2023-02-17 19:28:00.016431"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.017241"], ["updated_at", "2023-02-17 19:28:00.017241"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.018109"], ["updated_at", "2023-02-17 19:28:00.018109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.018934"], ["updated_at", "2023-02-17 19:28:00.018934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.019680"], ["updated_at", "2023-02-17 19:28:00.019680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.020535"], ["updated_at", "2023-02-17 19:28:00.020535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.021443"], ["updated_at", "2023-02-17 19:28:00.021443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.022279"], ["updated_at", "2023-02-17 19:28:00.022279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.023032"], ["updated_at", "2023-02-17 19:28:00.023032"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.023760"], ["updated_at", "2023-02-17 19:28:00.023760"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.024499"], ["updated_at", "2023-02-17 19:28:00.024499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.025278"], ["updated_at", "2023-02-17 19:28:00.025278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.026034"], ["updated_at", "2023-02-17 19:28:00.026034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.026790"], ["updated_at", "2023-02-17 19:28:00.026790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.049784"], ["updated_at", "2023-02-17 19:28:00.049784"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.050740"], ["updated_at", "2023-02-17 19:28:00.050740"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.051619"], ["updated_at", "2023-02-17 19:28:00.051619"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.052432"], ["updated_at", "2023-02-17 19:28:00.052432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.053274"], ["updated_at", "2023-02-17 19:28:00.053274"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.054080"], ["updated_at", "2023-02-17 19:28:00.054080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.054783"], ["updated_at", "2023-02-17 19:28:00.054783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.055477"], ["updated_at", "2023-02-17 19:28:00.055477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.056169"], ["updated_at", "2023-02-17 19:28:00.056169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.056857"], ["updated_at", "2023-02-17 19:28:00.056857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.057558"], ["updated_at", "2023-02-17 19:28:00.057558"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.058236"], ["updated_at", "2023-02-17 19:28:00.058236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.058934"], ["updated_at", "2023-02-17 19:28:00.058934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.059640"], ["updated_at", "2023-02-17 19:28:00.059640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.060346"], ["updated_at", "2023-02-17 19:28:00.060346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.061230"], ["updated_at", "2023-02-17 19:28:00.061230"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.078412"], ["updated_at", "2023-02-17 19:28:00.078412"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.079368"], ["updated_at", "2023-02-17 19:28:00.079368"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.080124"], ["updated_at", "2023-02-17 19:28:00.080124"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.080815"], ["updated_at", "2023-02-17 19:28:00.080815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.081658"], ["updated_at", "2023-02-17 19:28:00.081658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.082545"], ["updated_at", "2023-02-17 19:28:00.082545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.083294"], ["updated_at", "2023-02-17 19:28:00.083294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.084022"], ["updated_at", "2023-02-17 19:28:00.084022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.084720"], ["updated_at", "2023-02-17 19:28:00.084720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.085491"], ["updated_at", "2023-02-17 19:28:00.085491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.086247"], ["updated_at", "2023-02-17 19:28:00.086247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.086947"], ["updated_at", "2023-02-17 19:28:00.086947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.087683"], ["updated_at", "2023-02-17 19:28:00.087683"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.088387"], ["updated_at", "2023-02-17 19:28:00.088387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.089083"], ["updated_at", "2023-02-17 19:28:00.089083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.089830"], ["updated_at", "2023-02-17 19:28:00.089830"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.111115"], ["updated_at", "2023-02-17 19:28:00.111115"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.112060"], ["updated_at", "2023-02-17 19:28:00.112060"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.112797"], ["updated_at", "2023-02-17 19:28:00.112797"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.113498"], ["updated_at", "2023-02-17 19:28:00.113498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.114283"], ["updated_at", "2023-02-17 19:28:00.114283"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.115376"], ["updated_at", "2023-02-17 19:28:00.115376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.116496"], ["updated_at", "2023-02-17 19:28:00.116496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.117628"], ["updated_at", "2023-02-17 19:28:00.117628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.118714"], ["updated_at", "2023-02-17 19:28:00.118714"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.119771"], ["updated_at", "2023-02-17 19:28:00.119771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.120814"], ["updated_at", "2023-02-17 19:28:00.120814"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.121857"], ["updated_at", "2023-02-17 19:28:00.121857"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.122833"], ["updated_at", "2023-02-17 19:28:00.122833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.123902"], ["updated_at", "2023-02-17 19:28:00.123902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.125041"], ["updated_at", "2023-02-17 19:28:00.125041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.126066"], ["updated_at", "2023-02-17 19:28:00.126066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.144736"], ["updated_at", "2023-02-17 19:28:00.144736"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.145703"], ["updated_at", "2023-02-17 19:28:00.145703"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.146458"], ["updated_at", "2023-02-17 19:28:00.146458"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.147153"], ["updated_at", "2023-02-17 19:28:00.147153"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.147938"], ["updated_at", "2023-02-17 19:28:00.147938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.149022"], ["updated_at", "2023-02-17 19:28:00.149022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.150126"], ["updated_at", "2023-02-17 19:28:00.150126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.151214"], ["updated_at", "2023-02-17 19:28:00.151214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.152254"], ["updated_at", "2023-02-17 19:28:00.152254"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.153308"], ["updated_at", "2023-02-17 19:28:00.153308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.154365"], ["updated_at", "2023-02-17 19:28:00.154365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.155468"], ["updated_at", "2023-02-17 19:28:00.155468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.156525"], ["updated_at", "2023-02-17 19:28:00.156525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.157530"], ["updated_at", "2023-02-17 19:28:00.157530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.158536"], ["updated_at", "2023-02-17 19:28:00.158536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.159382"], ["updated_at", "2023-02-17 19:28:00.159382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.179211"], ["updated_at", "2023-02-17 19:28:00.179211"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.180251"], ["updated_at", "2023-02-17 19:28:00.180251"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.181019"], ["updated_at", "2023-02-17 19:28:00.181019"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.181887"], ["updated_at", "2023-02-17 19:28:00.181887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.183027"], ["updated_at", "2023-02-17 19:28:00.183027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.184152"], ["updated_at", "2023-02-17 19:28:00.184152"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.185349"], ["updated_at", "2023-02-17 19:28:00.185349"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.186500"], ["updated_at", "2023-02-17 19:28:00.186500"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.187587"], ["updated_at", "2023-02-17 19:28:00.187587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.188675"], ["updated_at", "2023-02-17 19:28:00.188675"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.189726"], ["updated_at", "2023-02-17 19:28:00.189726"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.190804"], ["updated_at", "2023-02-17 19:28:00.190804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.191907"], ["updated_at", "2023-02-17 19:28:00.191907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.193017"], ["updated_at", "2023-02-17 19:28:00.193017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.194075"], ["updated_at", "2023-02-17 19:28:00.194075"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.195132"], ["updated_at", "2023-02-17 19:28:00.195132"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:28:00 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:28:00.205808"], ["updated_at", "2023-02-17 19:28:00.205808"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:28:00.207590"], ["updated_at", "2023-02-17 19:28:00.207590"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:28:00.211331"], ["updated_at", "2023-02-17 19:28:00.211331"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:28:00.212735"], ["updated_at", "2023-02-17 19:28:00.212735"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:28:00.216129"], ["updated_at", "2023-02-17 19:28:00.216129"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:28:00.217723"], ["updated_at", "2023-02-17 19:28:00.217723"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:28:00.220500"], ["updated_at", "2023-02-17 19:28:00.220500"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:28:00.222338"], ["updated_at", "2023-02-17 19:28:00.222338"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:28:00.224368"], ["updated_at", "2023-02-17 19:28:00.224368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:28:00.226040"], ["updated_at", "2023-02-17 19:28:00.226040"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:28:00.227805"], ["updated_at", "2023-02-17 19:28:00.227805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:28:00.229094"], ["updated_at", "2023-02-17 19:28:00.229094"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:28:00.230524"], ["updated_at", "2023-02-17 19:28:00.230524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:28:00.231710"], ["updated_at", "2023-02-17 19:28:00.231710"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:28:00.233118"], ["updated_at", "2023-02-17 19:28:00.233118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:28:00.234319"], ["updated_at", "2023-02-17 19:28:00.234319"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:28:00.235691"], ["updated_at", "2023-02-17 19:28:00.235691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:28:00.236864"], ["updated_at", "2023-02-17 19:28:00.236864"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:28:00.238230"], ["updated_at", "2023-02-17 19:28:00.238230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:28:00.239439"], ["updated_at", "2023-02-17 19:28:00.239439"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:28:00.240806"], ["updated_at", "2023-02-17 19:28:00.240806"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:28:00.241998"], ["updated_at", "2023-02-17 19:28:00.241998"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:28:00.243351"], ["updated_at", "2023-02-17 19:28:00.243351"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:28:00.244541"], ["updated_at", "2023-02-17 19:28:00.244541"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:28:00.245898"], ["updated_at", "2023-02-17 19:28:00.245898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:28:00.247080"], ["updated_at", "2023-02-17 19:28:00.247080"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:28:00.248452"], ["updated_at", "2023-02-17 19:28:00.248452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:28:00.249815"], ["updated_at", "2023-02-17 19:28:00.249815"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:28:00.251702"], ["updated_at", "2023-02-17 19:28:00.251702"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:28:00.253158"], ["updated_at", "2023-02-17 19:28:00.253158"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:28:00.254771"], ["updated_at", "2023-02-17 19:28:00.254771"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:28:00.255981"], ["updated_at", "2023-02-17 19:28:00.255981"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:28:00.257346"], ["updated_at", "2023-02-17 19:28:00.257346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:28:00.258546"], ["updated_at", "2023-02-17 19:28:00.258546"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:28:00.259885"], ["updated_at", "2023-02-17 19:28:00.259885"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:28:00.261102"], ["updated_at", "2023-02-17 19:28:00.261102"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:28:00.262473"], ["updated_at", "2023-02-17 19:28:00.262473"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:28:00.263682"], ["updated_at", "2023-02-17 19:28:00.263682"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:28:00.265066"], ["updated_at", "2023-02-17 19:28:00.265066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:28:00.266422"], ["updated_at", "2023-02-17 19:28:00.266422"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:28:00.267878"], ["updated_at", "2023-02-17 19:28:00.267878"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:28:00.269120"], ["updated_at", "2023-02-17 19:28:00.269120"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:28:00.270646"], ["updated_at", "2023-02-17 19:28:00.270646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:28:00.272194"], ["updated_at", "2023-02-17 19:28:00.272194"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:28:00.273666"], ["updated_at", "2023-02-17 19:28:00.273666"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:28:00.274876"], ["updated_at", "2023-02-17 19:28:00.274876"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:28:00.276259"], ["updated_at", "2023-02-17 19:28:00.276259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:28:00.277461"], ["updated_at", "2023-02-17 19:28:00.277461"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:28:00.278873"], ["updated_at", "2023-02-17 19:28:00.278873"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:28:00.280047"], ["updated_at", "2023-02-17 19:28:00.280047"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:28:00.281468"], ["updated_at", "2023-02-17 19:28:00.281468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:28:00.282810"], ["updated_at", "2023-02-17 19:28:00.282810"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:28:00.284289"], ["updated_at", "2023-02-17 19:28:00.284289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:28:00.285526"], ["updated_at", "2023-02-17 19:28:00.285526"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:28:00.287065"], ["updated_at", "2023-02-17 19:28:00.287065"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:28:00.288732"], ["updated_at", "2023-02-17 19:28:00.288732"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:28:00.290187"], ["updated_at", "2023-02-17 19:28:00.290187"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:28:00.291363"], ["updated_at", "2023-02-17 19:28:00.291363"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:28:00.292749"], ["updated_at", "2023-02-17 19:28:00.292749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:28:00.293932"], ["updated_at", "2023-02-17 19:28:00.293932"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:28:00.295259"], ["updated_at", "2023-02-17 19:28:00.295259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:28:00.296415"], ["updated_at", "2023-02-17 19:28:00.296415"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:28:00.297792"], ["updated_at", "2023-02-17 19:28:00.297792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:28:00.299106"], ["updated_at", "2023-02-17 19:28:00.299106"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:28:00.300614"], ["updated_at", "2023-02-17 19:28:00.300614"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:28:00.301832"], ["updated_at", "2023-02-17 19:28:00.301832"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:28:00.303226"], ["updated_at", "2023-02-17 19:28:00.303226"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:28:00.304853"], ["updated_at", "2023-02-17 19:28:00.304853"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:28:00.306327"], ["updated_at", "2023-02-17 19:28:00.306327"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:28:00.307512"], ["updated_at", "2023-02-17 19:28:00.307512"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:28:00.308862"], ["updated_at", "2023-02-17 19:28:00.308862"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:28:00.310044"], ["updated_at", "2023-02-17 19:28:00.310044"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:28:00.311422"], ["updated_at", "2023-02-17 19:28:00.311422"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:28:00.312585"], ["updated_at", "2023-02-17 19:28:00.312585"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:28:00.313939"], ["updated_at", "2023-02-17 19:28:00.313939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:28:00.315126"], ["updated_at", "2023-02-17 19:28:00.315126"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:28:00.316726"], ["updated_at", "2023-02-17 19:28:00.316726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:28:00.317983"], ["updated_at", "2023-02-17 19:28:00.317983"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:28:00.319359"], ["updated_at", "2023-02-17 19:28:00.319359"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:28:00.320815"], ["updated_at", "2023-02-17 19:28:00.320815"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:28:00.322629"], ["updated_at", "2023-02-17 19:28:00.322629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:28:00.324058"], ["updated_at", "2023-02-17 19:28:00.324058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:28:00.325563"], ["updated_at", "2023-02-17 19:28:00.325563"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:28:00.326769"], ["updated_at", "2023-02-17 19:28:00.326769"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:28:00.328155"], ["updated_at", "2023-02-17 19:28:00.328155"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:28:00.329612"], ["updated_at", "2023-02-17 19:28:00.329612"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:28:00.331070"], ["updated_at", "2023-02-17 19:28:00.331070"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:28:00.332327"], ["updated_at", "2023-02-17 19:28:00.332327"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:28:00.333857"], ["updated_at", "2023-02-17 19:28:00.333857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:28:00.335035"], ["updated_at", "2023-02-17 19:28:00.335035"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:28:00.336357"], ["updated_at", "2023-02-17 19:28:00.336357"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:28:00.337923"], ["updated_at", "2023-02-17 19:28:00.337923"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:28:00.339592"], ["updated_at", "2023-02-17 19:28:00.339592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:28:00.340775"], ["updated_at", "2023-02-17 19:28:00.340775"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:28:00.342152"], ["updated_at", "2023-02-17 19:28:00.342152"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:28:00.343215"], ["updated_at", "2023-02-17 19:28:00.343215"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:28:00.344378"], ["updated_at", "2023-02-17 19:28:00.344378"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:28:00.345730"], ["updated_at", "2023-02-17 19:28:00.345730"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:28:00.347154"], ["updated_at", "2023-02-17 19:28:00.347154"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:28:00.348272"], ["updated_at", "2023-02-17 19:28:00.348272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:28:00.349401"], ["updated_at", "2023-02-17 19:28:00.349401"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:28:00.360959"], ["updated_at", "2023-02-17 19:28:00.360959"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:28:00.362219"], ["updated_at", "2023-02-17 19:28:00.362219"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:28:00.363180"], ["updated_at", "2023-02-17 19:28:00.363180"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.364048"], ["updated_at", "2023-02-17 19:28:00.364048"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.364821"], ["updated_at", "2023-02-17 19:28:00.364821"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.365547"], ["updated_at", "2023-02-17 19:28:00.365547"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.366246"], ["updated_at", "2023-02-17 19:28:00.366246"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.366967"], ["updated_at", "2023-02-17 19:28:00.366967"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:28:00.367730"], ["updated_at", "2023-02-17 19:28:00.367730"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.368599"], ["updated_at", "2023-02-17 19:28:00.368599"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.369455"], ["updated_at", "2023-02-17 19:28:00.369455"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.370181"], ["updated_at", "2023-02-17 19:28:00.370181"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.370910"], ["updated_at", "2023-02-17 19:28:00.370910"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.371650"], ["updated_at", "2023-02-17 19:28:00.371650"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.372370"], ["updated_at", "2023-02-17 19:28:00.372370"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.373094"], ["updated_at", "2023-02-17 19:28:00.373094"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.373838"], ["updated_at", "2023-02-17 19:28:00.373838"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.374572"], ["updated_at", "2023-02-17 19:28:00.374572"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.375286"], ["updated_at", "2023-02-17 19:28:00.375286"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.376028"], ["updated_at", "2023-02-17 19:28:00.376028"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.376753"], ["updated_at", "2023-02-17 19:28:00.376753"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:28:00.387932"], ["updated_at", "2023-02-17 19:28:00.387932"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:28:00.389167"], ["updated_at", "2023-02-17 19:28:00.389167"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:28:00.390053"], ["updated_at", "2023-02-17 19:28:00.390053"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:00.390879"], ["updated_at", "2023-02-17 19:28:00.390879"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:00.391604"], ["updated_at", "2023-02-17 19:28:00.391604"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:00.392284"], ["updated_at", "2023-02-17 19:28:00.392284"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:00.392972"], ["updated_at", "2023-02-17 19:28:00.392972"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:00.393642"], ["updated_at", "2023-02-17 19:28:00.393642"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:28:00.394372"], ["updated_at", "2023-02-17 19:28:00.394372"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.395195"], ["updated_at", "2023-02-17 19:28:00.395195"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.395969"], ["updated_at", "2023-02-17 19:28:00.395969"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.396713"], ["updated_at", "2023-02-17 19:28:00.396713"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.397479"], ["updated_at", "2023-02-17 19:28:00.397479"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.398207"], ["updated_at", "2023-02-17 19:28:00.398207"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.398979"], ["updated_at", "2023-02-17 19:28:00.398979"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.399733"], ["updated_at", "2023-02-17 19:28:00.399733"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.400457"], ["updated_at", "2023-02-17 19:28:00.400457"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.401170"], ["updated_at", "2023-02-17 19:28:00.401170"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.401904"], ["updated_at", "2023-02-17 19:28:00.401904"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.402640"], ["updated_at", "2023-02-17 19:28:00.402640"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.403353"], ["updated_at", "2023-02-17 19:28:00.403353"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.420142"], ["updated_at", "2023-02-17 19:28:00.420142"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.421211"], ["updated_at", "2023-02-17 19:28:00.421211"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.422071"], ["updated_at", "2023-02-17 19:28:00.422071"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.422789"], ["updated_at", "2023-02-17 19:28:00.422789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.423547"], ["updated_at", "2023-02-17 19:28:00.423547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.424345"], ["updated_at", "2023-02-17 19:28:00.424345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.425067"], ["updated_at", "2023-02-17 19:28:00.425067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.425764"], ["updated_at", "2023-02-17 19:28:00.425764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.426447"], ["updated_at", "2023-02-17 19:28:00.426447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.427125"], ["updated_at", "2023-02-17 19:28:00.427125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.427822"], ["updated_at", "2023-02-17 19:28:00.427822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.428505"], ["updated_at", "2023-02-17 19:28:00.428505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.429220"], ["updated_at", "2023-02-17 19:28:00.429220"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.429943"], ["updated_at", "2023-02-17 19:28:00.429943"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.430641"], ["updated_at", "2023-02-17 19:28:00.430641"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.431315"], ["updated_at", "2023-02-17 19:28:00.431315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.447298"], ["updated_at", "2023-02-17 19:28:00.447298"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.448426"], ["updated_at", "2023-02-17 19:28:00.448426"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.449355"], ["updated_at", "2023-02-17 19:28:00.449355"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.450171"], ["updated_at", "2023-02-17 19:28:00.450171"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.451030"], ["updated_at", "2023-02-17 19:28:00.451030"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.451874"], ["updated_at", "2023-02-17 19:28:00.451874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.452666"], ["updated_at", "2023-02-17 19:28:00.452666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.453415"], ["updated_at", "2023-02-17 19:28:00.453415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.454109"], ["updated_at", "2023-02-17 19:28:00.454109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.454812"], ["updated_at", "2023-02-17 19:28:00.454812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.455721"], ["updated_at", "2023-02-17 19:28:00.455721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.456740"], ["updated_at", "2023-02-17 19:28:00.456740"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.457604"], ["updated_at", "2023-02-17 19:28:00.457604"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.458386"], ["updated_at", "2023-02-17 19:28:00.458386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.459155"], ["updated_at", "2023-02-17 19:28:00.459155"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.459898"], ["updated_at", "2023-02-17 19:28:00.459898"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.478084"], ["updated_at", "2023-02-17 19:28:00.478084"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.479488"], ["updated_at", "2023-02-17 19:28:00.479488"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.480643"], ["updated_at", "2023-02-17 19:28:00.480643"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.481620"], ["updated_at", "2023-02-17 19:28:00.481620"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.482657"], ["updated_at", "2023-02-17 19:28:00.482657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.483645"], ["updated_at", "2023-02-17 19:28:00.483645"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.484701"], ["updated_at", "2023-02-17 19:28:00.484701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.485535"], ["updated_at", "2023-02-17 19:28:00.485535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.486298"], ["updated_at", "2023-02-17 19:28:00.486298"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.487041"], ["updated_at", "2023-02-17 19:28:00.487041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.487761"], ["updated_at", "2023-02-17 19:28:00.487761"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.488707"], ["updated_at", "2023-02-17 19:28:00.488707"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.489891"], ["updated_at", "2023-02-17 19:28:00.489891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.490936"], ["updated_at", "2023-02-17 19:28:00.490936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.491819"], ["updated_at", "2023-02-17 19:28:00.491819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.492561"], ["updated_at", "2023-02-17 19:28:00.492561"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.512108"], ["updated_at", "2023-02-17 19:28:00.512108"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.513290"], ["updated_at", "2023-02-17 19:28:00.513290"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.514504"], ["updated_at", "2023-02-17 19:28:00.514504"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.515565"], ["updated_at", "2023-02-17 19:28:00.515565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.516530"], ["updated_at", "2023-02-17 19:28:00.516530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.517590"], ["updated_at", "2023-02-17 19:28:00.517590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.518688"], ["updated_at", "2023-02-17 19:28:00.518688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.519816"], ["updated_at", "2023-02-17 19:28:00.519816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.520710"], ["updated_at", "2023-02-17 19:28:00.520710"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.521807"], ["updated_at", "2023-02-17 19:28:00.521807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.522906"], ["updated_at", "2023-02-17 19:28:00.522906"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.523974"], ["updated_at", "2023-02-17 19:28:00.523974"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.524928"], ["updated_at", "2023-02-17 19:28:00.524928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.525711"], ["updated_at", "2023-02-17 19:28:00.525711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.526566"], ["updated_at", "2023-02-17 19:28:00.526566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.527330"], ["updated_at", "2023-02-17 19:28:00.527330"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.546585"], ["updated_at", "2023-02-17 19:28:00.546585"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.547672"], ["updated_at", "2023-02-17 19:28:00.547672"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.548642"], ["updated_at", "2023-02-17 19:28:00.548642"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.549785"], ["updated_at", "2023-02-17 19:28:00.549785"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.550930"], ["updated_at", "2023-02-17 19:28:00.550930"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.552105"], ["updated_at", "2023-02-17 19:28:00.552105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.553051"], ["updated_at", "2023-02-17 19:28:00.553051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.553803"], ["updated_at", "2023-02-17 19:28:00.553803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.554536"], ["updated_at", "2023-02-17 19:28:00.554536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.555309"], ["updated_at", "2023-02-17 19:28:00.555309"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.556330"], ["updated_at", "2023-02-17 19:28:00.556330"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.557447"], ["updated_at", "2023-02-17 19:28:00.557447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.558479"], ["updated_at", "2023-02-17 19:28:00.558479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.559459"], ["updated_at", "2023-02-17 19:28:00.559459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.560352"], ["updated_at", "2023-02-17 19:28:00.560352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.561092"], ["updated_at", "2023-02-17 19:28:00.561092"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.578960"], ["updated_at", "2023-02-17 19:28:00.578960"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.580267"], ["updated_at", "2023-02-17 19:28:00.580267"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.581192"], ["updated_at", "2023-02-17 19:28:00.581192"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.581947"], ["updated_at", "2023-02-17 19:28:00.581947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.582861"], ["updated_at", "2023-02-17 19:28:00.582861"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.583861"], ["updated_at", "2023-02-17 19:28:00.583861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.584930"], ["updated_at", "2023-02-17 19:28:00.584930"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.585798"], ["updated_at", "2023-02-17 19:28:00.585798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.586561"], ["updated_at", "2023-02-17 19:28:00.586561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.587242"], ["updated_at", "2023-02-17 19:28:00.587242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.588067"], ["updated_at", "2023-02-17 19:28:00.588067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.588994"], ["updated_at", "2023-02-17 19:28:00.588994"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.589960"], ["updated_at", "2023-02-17 19:28:00.589960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.590834"], ["updated_at", "2023-02-17 19:28:00.590834"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.591595"], ["updated_at", "2023-02-17 19:28:00.591595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.592286"], ["updated_at", "2023-02-17 19:28:00.592286"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:28:00 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:28:00.602100"], ["updated_at", "2023-02-17 19:28:00.602100"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:28:00.603631"], ["updated_at", "2023-02-17 19:28:00.603631"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:28:00.606794"], ["updated_at", "2023-02-17 19:28:00.606794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:28:00.608003"], ["updated_at", "2023-02-17 19:28:00.608003"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:28:00.611264"], ["updated_at", "2023-02-17 19:28:00.611264"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:28:00.612496"], ["updated_at", "2023-02-17 19:28:00.612496"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:28:00.614691"], ["updated_at", "2023-02-17 19:28:00.614691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:28:00.616292"], ["updated_at", "2023-02-17 19:28:00.616292"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:28:00.618278"], ["updated_at", "2023-02-17 19:28:00.618278"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:28:00.619849"], ["updated_at", "2023-02-17 19:28:00.619849"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:28:00.621535"], ["updated_at", "2023-02-17 19:28:00.621535"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:28:00.622875"], ["updated_at", "2023-02-17 19:28:00.622875"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:28:00.624465"], ["updated_at", "2023-02-17 19:28:00.624465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:28:00.625719"], ["updated_at", "2023-02-17 19:28:00.625719"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:28:00.627146"], ["updated_at", "2023-02-17 19:28:00.627146"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:28:00.628399"], ["updated_at", "2023-02-17 19:28:00.628399"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:28:00.630086"], ["updated_at", "2023-02-17 19:28:00.630086"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:28:00.631622"], ["updated_at", "2023-02-17 19:28:00.631622"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:28:00.633241"], ["updated_at", "2023-02-17 19:28:00.633241"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:28:00.634836"], ["updated_at", "2023-02-17 19:28:00.634836"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:28:00.636440"], ["updated_at", "2023-02-17 19:28:00.636440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:28:00.637777"], ["updated_at", "2023-02-17 19:28:00.637777"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:28:00.639229"], ["updated_at", "2023-02-17 19:28:00.639229"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:28:00.640934"], ["updated_at", "2023-02-17 19:28:00.640934"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:28:00.642399"], ["updated_at", "2023-02-17 19:28:00.642399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:28:00.643638"], ["updated_at", "2023-02-17 19:28:00.643638"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:28:00.645095"], ["updated_at", "2023-02-17 19:28:00.645095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:28:00.646310"], ["updated_at", "2023-02-17 19:28:00.646310"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:28:00.647730"], ["updated_at", "2023-02-17 19:28:00.647730"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:28:00.649146"], ["updated_at", "2023-02-17 19:28:00.649146"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:28:00.650992"], ["updated_at", "2023-02-17 19:28:00.650992"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:28:00.652776"], ["updated_at", "2023-02-17 19:28:00.652776"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:28:00.654499"], ["updated_at", "2023-02-17 19:28:00.654499"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:28:00.655840"], ["updated_at", "2023-02-17 19:28:00.655840"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:28:00.657385"], ["updated_at", "2023-02-17 19:28:00.657385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:28:00.658638"], ["updated_at", "2023-02-17 19:28:00.658638"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:28:00.660264"], ["updated_at", "2023-02-17 19:28:00.660264"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:28:00.661739"], ["updated_at", "2023-02-17 19:28:00.661739"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:28:00.663275"], ["updated_at", "2023-02-17 19:28:00.663275"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:28:00.664737"], ["updated_at", "2023-02-17 19:28:00.664737"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:28:00.666310"], ["updated_at", "2023-02-17 19:28:00.666310"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:28:00.667880"], ["updated_at", "2023-02-17 19:28:00.667880"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:28:00.669546"], ["updated_at", "2023-02-17 19:28:00.669546"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:28:00.671253"], ["updated_at", "2023-02-17 19:28:00.671253"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:28:00.672863"], ["updated_at", "2023-02-17 19:28:00.672863"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:28:00.674157"], ["updated_at", "2023-02-17 19:28:00.674157"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:28:00.675562"], ["updated_at", "2023-02-17 19:28:00.675562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:28:00.676748"], ["updated_at", "2023-02-17 19:28:00.676748"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:28:00.678229"], ["updated_at", "2023-02-17 19:28:00.678229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:28:00.679483"], ["updated_at", "2023-02-17 19:28:00.679483"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:28:00.681081"], ["updated_at", "2023-02-17 19:28:00.681081"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:28:00.682490"], ["updated_at", "2023-02-17 19:28:00.682490"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:28:00.684163"], ["updated_at", "2023-02-17 19:28:00.684163"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:28:00.685763"], ["updated_at", "2023-02-17 19:28:00.685763"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:28:00.687405"], ["updated_at", "2023-02-17 19:28:00.687405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:28:00.688719"], ["updated_at", "2023-02-17 19:28:00.688719"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:28:00.690540"], ["updated_at", "2023-02-17 19:28:00.690540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:28:00.691903"], ["updated_at", "2023-02-17 19:28:00.691903"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:28:00.693339"], ["updated_at", "2023-02-17 19:28:00.693339"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:28:00.694710"], ["updated_at", "2023-02-17 19:28:00.694710"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:28:00.696046"], ["updated_at", "2023-02-17 19:28:00.696046"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:28:00.697238"], ["updated_at", "2023-02-17 19:28:00.697238"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:28:00.698859"], ["updated_at", "2023-02-17 19:28:00.698859"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:28:00.700534"], ["updated_at", "2023-02-17 19:28:00.700534"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:28:00.702342"], ["updated_at", "2023-02-17 19:28:00.702342"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:28:00.703669"], ["updated_at", "2023-02-17 19:28:00.703669"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:28:00.705621"], ["updated_at", "2023-02-17 19:28:00.705621"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:28:00.707015"], ["updated_at", "2023-02-17 19:28:00.707015"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:28:00.708436"], ["updated_at", "2023-02-17 19:28:00.708436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:28:00.709679"], ["updated_at", "2023-02-17 19:28:00.709679"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:28:00.711204"], ["updated_at", "2023-02-17 19:28:00.711204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:28:00.712420"], ["updated_at", "2023-02-17 19:28:00.712420"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:28:00.713827"], ["updated_at", "2023-02-17 19:28:00.713827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:28:00.715199"], ["updated_at", "2023-02-17 19:28:00.715199"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:28:00.716809"], ["updated_at", "2023-02-17 19:28:00.716809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:28:00.718442"], ["updated_at", "2023-02-17 19:28:00.718442"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:28:00.719970"], ["updated_at", "2023-02-17 19:28:00.719970"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:28:00.721190"], ["updated_at", "2023-02-17 19:28:00.721190"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:28:00.722650"], ["updated_at", "2023-02-17 19:28:00.722650"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:28:00.723910"], ["updated_at", "2023-02-17 19:28:00.723910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:28:00.725296"], ["updated_at", "2023-02-17 19:28:00.725296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:28:00.726499"], ["updated_at", "2023-02-17 19:28:00.726499"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:28:00.727933"], ["updated_at", "2023-02-17 19:28:00.727933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:28:00.729156"], ["updated_at", "2023-02-17 19:28:00.729156"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:28:00.730583"], ["updated_at", "2023-02-17 19:28:00.730583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:28:00.731979"], ["updated_at", "2023-02-17 19:28:00.731979"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:28:00.733440"], ["updated_at", "2023-02-17 19:28:00.733440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:28:00.734718"], ["updated_at", "2023-02-17 19:28:00.734718"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:28:00.736354"], ["updated_at", "2023-02-17 19:28:00.736354"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:28:00.737615"], ["updated_at", "2023-02-17 19:28:00.737615"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:28:00.739017"], ["updated_at", "2023-02-17 19:28:00.739017"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:28:00.740277"], ["updated_at", "2023-02-17 19:28:00.740277"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:28:00.741712"], ["updated_at", "2023-02-17 19:28:00.741712"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:28:00.742907"], ["updated_at", "2023-02-17 19:28:00.742907"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:28:00.744488"], ["updated_at", "2023-02-17 19:28:00.744488"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:28:00.745655"], ["updated_at", "2023-02-17 19:28:00.745655"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:28:00.746859"], ["updated_at", "2023-02-17 19:28:00.746859"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:28:00.748368"], ["updated_at", "2023-02-17 19:28:00.748368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:28:00.750001"], ["updated_at", "2023-02-17 19:28:00.750001"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:28:00.751302"], ["updated_at", "2023-02-17 19:28:00.751302"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:28:00.752470"], ["updated_at", "2023-02-17 19:28:00.752470"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:28:00.763769"], ["updated_at", "2023-02-17 19:28:00.763769"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:28:00.765161"], ["updated_at", "2023-02-17 19:28:00.765161"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:28:00.766198"], ["updated_at", "2023-02-17 19:28:00.766198"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.767061"], ["updated_at", "2023-02-17 19:28:00.767061"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.767872"], ["updated_at", "2023-02-17 19:28:00.767872"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.768634"], ["updated_at", "2023-02-17 19:28:00.768634"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.769470"], ["updated_at", "2023-02-17 19:28:00.769470"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.770551"], ["updated_at", "2023-02-17 19:28:00.770551"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:28:00.771711"], ["updated_at", "2023-02-17 19:28:00.771711"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.772867"], ["updated_at", "2023-02-17 19:28:00.772867"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.773831"], ["updated_at", "2023-02-17 19:28:00.773831"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.774699"], ["updated_at", "2023-02-17 19:28:00.774699"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.775720"], ["updated_at", "2023-02-17 19:28:00.775720"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.776624"], ["updated_at", "2023-02-17 19:28:00.776624"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.777460"], ["updated_at", "2023-02-17 19:28:00.777460"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.778248"], ["updated_at", "2023-02-17 19:28:00.778248"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.779008"], ["updated_at", "2023-02-17 19:28:00.779008"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.779764"], ["updated_at", "2023-02-17 19:28:00.779764"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.780532"], ["updated_at", "2023-02-17 19:28:00.780532"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.781426"], ["updated_at", "2023-02-17 19:28:00.781426"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.782262"], ["updated_at", "2023-02-17 19:28:00.782262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:28:00.794688"], ["updated_at", "2023-02-17 19:28:00.794688"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:28:00.796053"], ["updated_at", "2023-02-17 19:28:00.796053"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:28:00.797114"], ["updated_at", "2023-02-17 19:28:00.797114"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:00.798159"], ["updated_at", "2023-02-17 19:28:00.798159"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:00.798953"], ["updated_at", "2023-02-17 19:28:00.798953"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:00.799678"], ["updated_at", "2023-02-17 19:28:00.799678"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:00.800392"], ["updated_at", "2023-02-17 19:28:00.800392"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:00.801114"], ["updated_at", "2023-02-17 19:28:00.801114"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:28:00.801969"], ["updated_at", "2023-02-17 19:28:00.801969"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.802877"], ["updated_at", "2023-02-17 19:28:00.802877"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.803703"], ["updated_at", "2023-02-17 19:28:00.803703"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.804477"], ["updated_at", "2023-02-17 19:28:00.804477"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.805268"], ["updated_at", "2023-02-17 19:28:00.805268"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.806112"], ["updated_at", "2023-02-17 19:28:00.806112"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.806888"], ["updated_at", "2023-02-17 19:28:00.806888"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.807653"], ["updated_at", "2023-02-17 19:28:00.807653"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.808378"], ["updated_at", "2023-02-17 19:28:00.808378"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.809127"], ["updated_at", "2023-02-17 19:28:00.809127"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.809981"], ["updated_at", "2023-02-17 19:28:00.809981"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.810825"], ["updated_at", "2023-02-17 19:28:00.810825"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:00.811639"], ["updated_at", "2023-02-17 19:28:00.811639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.828176"], ["updated_at", "2023-02-17 19:28:00.828176"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.829394"], ["updated_at", "2023-02-17 19:28:00.829394"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.830682"], ["updated_at", "2023-02-17 19:28:00.830682"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.831647"], ["updated_at", "2023-02-17 19:28:00.831647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.832517"], ["updated_at", "2023-02-17 19:28:00.832517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.833436"], ["updated_at", "2023-02-17 19:28:00.833436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.834165"], ["updated_at", "2023-02-17 19:28:00.834165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.834924"], ["updated_at", "2023-02-17 19:28:00.834924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.835677"], ["updated_at", "2023-02-17 19:28:00.835677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.836399"], ["updated_at", "2023-02-17 19:28:00.836399"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.837112"], ["updated_at", "2023-02-17 19:28:00.837112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.837816"], ["updated_at", "2023-02-17 19:28:00.837816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.838731"], ["updated_at", "2023-02-17 19:28:00.838731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.839786"], ["updated_at", "2023-02-17 19:28:00.839786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.840580"], ["updated_at", "2023-02-17 19:28:00.840580"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:00.841323"], ["updated_at", "2023-02-17 19:28:00.841323"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.857735"], ["updated_at", "2023-02-17 19:28:00.857735"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.858739"], ["updated_at", "2023-02-17 19:28:00.858739"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.859792"], ["updated_at", "2023-02-17 19:28:00.859792"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.860943"], ["updated_at", "2023-02-17 19:28:00.860943"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.862199"], ["updated_at", "2023-02-17 19:28:00.862199"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.863175"], ["updated_at", "2023-02-17 19:28:00.863175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.864877"], ["updated_at", "2023-02-17 19:28:00.864877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.865722"], ["updated_at", "2023-02-17 19:28:00.865722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.866551"], ["updated_at", "2023-02-17 19:28:00.866551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.867275"], ["updated_at", "2023-02-17 19:28:00.867275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.867989"], ["updated_at", "2023-02-17 19:28:00.867989"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.868677"], ["updated_at", "2023-02-17 19:28:00.868677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.869520"], ["updated_at", "2023-02-17 19:28:00.869520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.870666"], ["updated_at", "2023-02-17 19:28:00.870666"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.871786"], ["updated_at", "2023-02-17 19:28:00.871786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:00.872920"], ["updated_at", "2023-02-17 19:28:00.872920"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.890024"], ["updated_at", "2023-02-17 19:28:00.890024"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.891030"], ["updated_at", "2023-02-17 19:28:00.891030"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.891849"], ["updated_at", "2023-02-17 19:28:00.891849"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.892565"], ["updated_at", "2023-02-17 19:28:00.892565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.893367"], ["updated_at", "2023-02-17 19:28:00.893367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.894124"], ["updated_at", "2023-02-17 19:28:00.894124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.894840"], ["updated_at", "2023-02-17 19:28:00.894840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.895584"], ["updated_at", "2023-02-17 19:28:00.895584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.896345"], ["updated_at", "2023-02-17 19:28:00.896345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.897086"], ["updated_at", "2023-02-17 19:28:00.897086"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.897837"], ["updated_at", "2023-02-17 19:28:00.897837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.898648"], ["updated_at", "2023-02-17 19:28:00.898648"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.899436"], ["updated_at", "2023-02-17 19:28:00.899436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.900275"], ["updated_at", "2023-02-17 19:28:00.900275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.901076"], ["updated_at", "2023-02-17 19:28:00.901076"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:00.901844"], ["updated_at", "2023-02-17 19:28:00.901844"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.923168"], ["updated_at", "2023-02-17 19:28:00.923168"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.924204"], ["updated_at", "2023-02-17 19:28:00.924204"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.925125"], ["updated_at", "2023-02-17 19:28:00.925125"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.926048"], ["updated_at", "2023-02-17 19:28:00.926048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.927194"], ["updated_at", "2023-02-17 19:28:00.927194"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.928255"], ["updated_at", "2023-02-17 19:28:00.928255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.929271"], ["updated_at", "2023-02-17 19:28:00.929271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.930310"], ["updated_at", "2023-02-17 19:28:00.930310"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.931453"], ["updated_at", "2023-02-17 19:28:00.931453"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.932424"], ["updated_at", "2023-02-17 19:28:00.932424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.933540"], ["updated_at", "2023-02-17 19:28:00.933540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.934591"], ["updated_at", "2023-02-17 19:28:00.934591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.935421"], ["updated_at", "2023-02-17 19:28:00.935421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.936245"], ["updated_at", "2023-02-17 19:28:00.936245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.937003"], ["updated_at", "2023-02-17 19:28:00.937003"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:00.937824"], ["updated_at", "2023-02-17 19:28:00.937824"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.955104"], ["updated_at", "2023-02-17 19:28:00.955104"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.956233"], ["updated_at", "2023-02-17 19:28:00.956233"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.957041"], ["updated_at", "2023-02-17 19:28:00.957041"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.957772"], ["updated_at", "2023-02-17 19:28:00.957772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.958563"], ["updated_at", "2023-02-17 19:28:00.958563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.959291"], ["updated_at", "2023-02-17 19:28:00.959291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.960004"], ["updated_at", "2023-02-17 19:28:00.960004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.960751"], ["updated_at", "2023-02-17 19:28:00.960751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.961881"], ["updated_at", "2023-02-17 19:28:00.961881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.962920"], ["updated_at", "2023-02-17 19:28:00.962920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.963685"], ["updated_at", "2023-02-17 19:28:00.963685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.964394"], ["updated_at", "2023-02-17 19:28:00.964394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.965131"], ["updated_at", "2023-02-17 19:28:00.965131"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.965957"], ["updated_at", "2023-02-17 19:28:00.965957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.966750"], ["updated_at", "2023-02-17 19:28:00.966750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:00.967489"], ["updated_at", "2023-02-17 19:28:00.967489"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:00.988343"], ["updated_at", "2023-02-17 19:28:00.988343"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:00.989494"], ["updated_at", "2023-02-17 19:28:00.989494"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:00.990302"], ["updated_at", "2023-02-17 19:28:00.990302"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:00.991023"], ["updated_at", "2023-02-17 19:28:00.991023"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.991805"], ["updated_at", "2023-02-17 19:28:00.991805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.992551"], ["updated_at", "2023-02-17 19:28:00.992551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.993270"], ["updated_at", "2023-02-17 19:28:00.993270"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.994247"], ["updated_at", "2023-02-17 19:28:00.994247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.995215"], ["updated_at", "2023-02-17 19:28:00.995215"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.996351"], ["updated_at", "2023-02-17 19:28:00.996351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.997663"], ["updated_at", "2023-02-17 19:28:00.997663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:00.998936"], ["updated_at", "2023-02-17 19:28:00.998936"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.000211"], ["updated_at", "2023-02-17 19:28:01.000211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.001592"], ["updated_at", "2023-02-17 19:28:01.001592"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.002863"], ["updated_at", "2023-02-17 19:28:01.002863"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.004143"], ["updated_at", "2023-02-17 19:28:01.004143"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:28:01 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.2ms | Allocations: 532)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (2.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:28:01.018185"], ["updated_at", "2023-02-17 19:28:01.018185"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (1.0ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:28:01.022259"], ["updated_at", "2023-02-17 19:28:01.022259"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:28:01.028327"], ["updated_at", "2023-02-17 19:28:01.028327"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:28:01.030238"], ["updated_at", "2023-02-17 19:28:01.030238"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:28:01.035409"], ["updated_at", "2023-02-17 19:28:01.035409"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:28:01.037356"], ["updated_at", "2023-02-17 19:28:01.037356"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.6ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:28:01.040922"], ["updated_at", "2023-02-17 19:28:01.040922"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:28:01.043740"], ["updated_at", "2023-02-17 19:28:01.043740"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:28:01.047528"], ["updated_at", "2023-02-17 19:28:01.047528"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:28:01.051115"], ["updated_at", "2023-02-17 19:28:01.051115"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:28:01.053653"], ["updated_at", "2023-02-17 19:28:01.053653"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:28:01.055935"], ["updated_at", "2023-02-17 19:28:01.055935"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:28:01.058443"], ["updated_at", "2023-02-17 19:28:01.058443"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:28:01.060625"], ["updated_at", "2023-02-17 19:28:01.060625"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:28:01.063134"], ["updated_at", "2023-02-17 19:28:01.063134"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:28:01.065283"], ["updated_at", "2023-02-17 19:28:01.065283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:28:01.067547"], ["updated_at", "2023-02-17 19:28:01.067547"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:28:01.069617"], ["updated_at", "2023-02-17 19:28:01.069617"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:28:01.077729"], ["updated_at", "2023-02-17 19:28:01.077729"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:28:01.080006"], ["updated_at", "2023-02-17 19:28:01.080006"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:28:01.082531"], ["updated_at", "2023-02-17 19:28:01.082531"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:28:01.084627"], ["updated_at", "2023-02-17 19:28:01.084627"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:28:01.087193"], ["updated_at", "2023-02-17 19:28:01.087193"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:28:01.089521"], ["updated_at", "2023-02-17 19:28:01.089521"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:28:01.098640"], ["updated_at", "2023-02-17 19:28:01.098640"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:28:01.100939"], ["updated_at", "2023-02-17 19:28:01.100939"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:28:01.103442"], ["updated_at", "2023-02-17 19:28:01.103442"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:28:01.105682"], ["updated_at", "2023-02-17 19:28:01.105682"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:28:01.108154"], ["updated_at", "2023-02-17 19:28:01.108154"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:28:01.110460"], ["updated_at", "2023-02-17 19:28:01.110460"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:28:01.112870"], ["updated_at", "2023-02-17 19:28:01.112870"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:28:01.115196"], ["updated_at", "2023-02-17 19:28:01.115196"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:28:01.126798"], ["updated_at", "2023-02-17 19:28:01.126798"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:28:01.129155"], ["updated_at", "2023-02-17 19:28:01.129155"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:28:01.131708"], ["updated_at", "2023-02-17 19:28:01.131708"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:28:01.133999"], ["updated_at", "2023-02-17 19:28:01.133999"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:28:01.142233"], ["updated_at", "2023-02-17 19:28:01.142233"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:28:01.144341"], ["updated_at", "2023-02-17 19:28:01.144341"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:28:01.146765"], ["updated_at", "2023-02-17 19:28:01.146765"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:28:01.149113"], ["updated_at", "2023-02-17 19:28:01.149113"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:28:01.151369"], ["updated_at", "2023-02-17 19:28:01.151369"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:28:01.153959"], ["updated_at", "2023-02-17 19:28:01.153959"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:28:01.156586"], ["updated_at", "2023-02-17 19:28:01.156586"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:28:01.158905"], ["updated_at", "2023-02-17 19:28:01.158905"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:28:01.161150"], ["updated_at", "2023-02-17 19:28:01.161150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:28:01.162967"], ["updated_at", "2023-02-17 19:28:01.162967"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:28:01.165309"], ["updated_at", "2023-02-17 19:28:01.165309"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:28:01.167511"], ["updated_at", "2023-02-17 19:28:01.167511"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:28:01.169952"], ["updated_at", "2023-02-17 19:28:01.169952"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:28:01.172452"], ["updated_at", "2023-02-17 19:28:01.172452"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:28:01.175186"], ["updated_at", "2023-02-17 19:28:01.175186"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:28:01.177539"], ["updated_at", "2023-02-17 19:28:01.177539"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:28:01.180021"], ["updated_at", "2023-02-17 19:28:01.180021"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.7ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:28:01.182343"], ["updated_at", "2023-02-17 19:28:01.182343"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:28:01.186002"], ["updated_at", "2023-02-17 19:28:01.186002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:28:01.187759"], ["updated_at", "2023-02-17 19:28:01.187759"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:28:01.189642"], ["updated_at", "2023-02-17 19:28:01.189642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:28:01.191477"], ["updated_at", "2023-02-17 19:28:01.191477"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:28:01.193009"], ["updated_at", "2023-02-17 19:28:01.193009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:28:01.194467"], ["updated_at", "2023-02-17 19:28:01.194467"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:28:01.196196"], ["updated_at", "2023-02-17 19:28:01.196196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:28:01.197678"], ["updated_at", "2023-02-17 19:28:01.197678"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:28:01.200067"], ["updated_at", "2023-02-17 19:28:01.200067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:28:01.201701"], ["updated_at", "2023-02-17 19:28:01.201701"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:28:01.203212"], ["updated_at", "2023-02-17 19:28:01.203212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:28:01.204700"], ["updated_at", "2023-02-17 19:28:01.204700"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:28:01.206426"], ["updated_at", "2023-02-17 19:28:01.206426"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:28:01.207930"], ["updated_at", "2023-02-17 19:28:01.207930"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:28:01.209609"], ["updated_at", "2023-02-17 19:28:01.209609"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:28:01.211381"], ["updated_at", "2023-02-17 19:28:01.211381"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:28:01.213521"], ["updated_at", "2023-02-17 19:28:01.213521"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:28:01.215855"], ["updated_at", "2023-02-17 19:28:01.215855"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:28:01.218431"], ["updated_at", "2023-02-17 19:28:01.218431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:28:01.220531"], ["updated_at", "2023-02-17 19:28:01.220531"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:28:01.222853"], ["updated_at", "2023-02-17 19:28:01.222853"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:28:01.225080"], ["updated_at", "2023-02-17 19:28:01.225080"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:28:01.227465"], ["updated_at", "2023-02-17 19:28:01.227465"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:28:01.230107"], ["updated_at", "2023-02-17 19:28:01.230107"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:28:01.233848"], ["updated_at", "2023-02-17 19:28:01.233848"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:28:01.235548"], ["updated_at", "2023-02-17 19:28:01.235548"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:28:01.237304"], ["updated_at", "2023-02-17 19:28:01.237304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:28:01.239060"], ["updated_at", "2023-02-17 19:28:01.239060"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:28:01.240923"], ["updated_at", "2023-02-17 19:28:01.240923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:28:01.242682"], ["updated_at", "2023-02-17 19:28:01.242682"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:28:01.244425"], ["updated_at", "2023-02-17 19:28:01.244425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:28:01.246186"], ["updated_at", "2023-02-17 19:28:01.246186"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:28:01.248118"], ["updated_at", "2023-02-17 19:28:01.248118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:28:01.250233"], ["updated_at", "2023-02-17 19:28:01.250233"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:28:01.252156"], ["updated_at", "2023-02-17 19:28:01.252156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:28:01.253864"], ["updated_at", "2023-02-17 19:28:01.253864"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:28:01.255842"], ["updated_at", "2023-02-17 19:28:01.255842"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:28:01.257487"], ["updated_at", "2023-02-17 19:28:01.257487"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:28:01.259231"], ["updated_at", "2023-02-17 19:28:01.259231"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:28:01.260805"], ["updated_at", "2023-02-17 19:28:01.260805"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:28:01.262596"], ["updated_at", "2023-02-17 19:28:01.262596"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:28:01.264080"], ["updated_at", "2023-02-17 19:28:01.264080"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:28:01.266628"], ["updated_at", "2023-02-17 19:28:01.266628"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:28:01.268669"], ["updated_at", "2023-02-17 19:28:01.268669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:28:01.270251"], ["updated_at", "2023-02-17 19:28:01.270251"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:28:01.271405"], ["updated_at", "2023-02-17 19:28:01.271405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:28:01.272436"], ["updated_at", "2023-02-17 19:28:01.272436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:28:01.284784"], ["updated_at", "2023-02-17 19:28:01.284784"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:28:01.286448"], ["updated_at", "2023-02-17 19:28:01.286448"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:28:01.287821"], ["updated_at", "2023-02-17 19:28:01.287821"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.288870"], ["updated_at", "2023-02-17 19:28:01.288870"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.289782"], ["updated_at", "2023-02-17 19:28:01.289782"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.290531"], ["updated_at", "2023-02-17 19:28:01.290531"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.291372"], ["updated_at", "2023-02-17 19:28:01.291372"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.292094"], ["updated_at", "2023-02-17 19:28:01.292094"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:28:01.292863"], ["updated_at", "2023-02-17 19:28:01.292863"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.293729"], ["updated_at", "2023-02-17 19:28:01.293729"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.294573"], ["updated_at", "2023-02-17 19:28:01.294573"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.295345"], ["updated_at", "2023-02-17 19:28:01.295345"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.296093"], ["updated_at", "2023-02-17 19:28:01.296093"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.296926"], ["updated_at", "2023-02-17 19:28:01.296926"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.297836"], ["updated_at", "2023-02-17 19:28:01.297836"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.299125"], ["updated_at", "2023-02-17 19:28:01.299125"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.299985"], ["updated_at", "2023-02-17 19:28:01.299985"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.300731"], ["updated_at", "2023-02-17 19:28:01.300731"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.301539"], ["updated_at", "2023-02-17 19:28:01.301539"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.302599"], ["updated_at", "2023-02-17 19:28:01.302599"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.303521"], ["updated_at", "2023-02-17 19:28:01.303521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:28:01.316413"], ["updated_at", "2023-02-17 19:28:01.316413"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:28:01.317768"], ["updated_at", "2023-02-17 19:28:01.317768"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:28:01.318776"], ["updated_at", "2023-02-17 19:28:01.318776"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:01.319677"], ["updated_at", "2023-02-17 19:28:01.319677"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:01.320449"], ["updated_at", "2023-02-17 19:28:01.320449"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:01.321950"], ["updated_at", "2023-02-17 19:28:01.321950"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:01.323973"], ["updated_at", "2023-02-17 19:28:01.323973"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:28:01.324883"], ["updated_at", "2023-02-17 19:28:01.324883"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:28:01.325747"], ["updated_at", "2023-02-17 19:28:01.325747"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.326712"], ["updated_at", "2023-02-17 19:28:01.326712"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.327588"], ["updated_at", "2023-02-17 19:28:01.327588"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.328346"], ["updated_at", "2023-02-17 19:28:01.328346"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.329111"], ["updated_at", "2023-02-17 19:28:01.329111"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.329892"], ["updated_at", "2023-02-17 19:28:01.329892"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.330872"], ["updated_at", "2023-02-17 19:28:01.330872"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.332094"], ["updated_at", "2023-02-17 19:28:01.332094"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.332978"], ["updated_at", "2023-02-17 19:28:01.332978"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.333866"], ["updated_at", "2023-02-17 19:28:01.333866"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.334738"], ["updated_at", "2023-02-17 19:28:01.334738"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.335652"], ["updated_at", "2023-02-17 19:28:01.335652"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:28:01.336539"], ["updated_at", "2023-02-17 19:28:01.336539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:01.354205"], ["updated_at", "2023-02-17 19:28:01.354205"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:01.355792"], ["updated_at", "2023-02-17 19:28:01.355792"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.357035"], ["updated_at", "2023-02-17 19:28:01.357035"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.358454"], ["updated_at", "2023-02-17 19:28:01.358454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.359432"], ["updated_at", "2023-02-17 19:28:01.359432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.360258"], ["updated_at", "2023-02-17 19:28:01.360258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.360968"], ["updated_at", "2023-02-17 19:28:01.360968"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.361738"], ["updated_at", "2023-02-17 19:28:01.361738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.362535"], ["updated_at", "2023-02-17 19:28:01.362535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.363270"], ["updated_at", "2023-02-17 19:28:01.363270"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.364025"], ["updated_at", "2023-02-17 19:28:01.364025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.364862"], ["updated_at", "2023-02-17 19:28:01.364862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.366244"], ["updated_at", "2023-02-17 19:28:01.366244"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.367027"], ["updated_at", "2023-02-17 19:28:01.367027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.367828"], ["updated_at", "2023-02-17 19:28:01.367828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:28:01.368656"], ["updated_at", "2023-02-17 19:28:01.368656"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:01.396003"], ["updated_at", "2023-02-17 19:28:01.396003"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:01.397114"], ["updated_at", "2023-02-17 19:28:01.397114"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.398135"], ["updated_at", "2023-02-17 19:28:01.398135"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.399393"], ["updated_at", "2023-02-17 19:28:01.399393"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.400390"], ["updated_at", "2023-02-17 19:28:01.400390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.401205"], ["updated_at", "2023-02-17 19:28:01.401205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.401934"], ["updated_at", "2023-02-17 19:28:01.401934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.402697"], ["updated_at", "2023-02-17 19:28:01.402697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.403469"], ["updated_at", "2023-02-17 19:28:01.403469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.404230"], ["updated_at", "2023-02-17 19:28:01.404230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.405059"], ["updated_at", "2023-02-17 19:28:01.405059"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.406037"], ["updated_at", "2023-02-17 19:28:01.406037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.407094"], ["updated_at", "2023-02-17 19:28:01.407094"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.408183"], ["updated_at", "2023-02-17 19:28:01.408183"]]
LikertScaleAnswer Create (0.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.409600"], ["updated_at", "2023-02-17 19:28:01.409600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:28:01.410892"], ["updated_at", "2023-02-17 19:28:01.410892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:01.433150"], ["updated_at", "2023-02-17 19:28:01.433150"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:01.434258"], ["updated_at", "2023-02-17 19:28:01.434258"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.435227"], ["updated_at", "2023-02-17 19:28:01.435227"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.436019"], ["updated_at", "2023-02-17 19:28:01.436019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.436760"], ["updated_at", "2023-02-17 19:28:01.436760"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.437769"], ["updated_at", "2023-02-17 19:28:01.437769"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.438842"], ["updated_at", "2023-02-17 19:28:01.438842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.439647"], ["updated_at", "2023-02-17 19:28:01.439647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.440324"], ["updated_at", "2023-02-17 19:28:01.440324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.441251"], ["updated_at", "2023-02-17 19:28:01.441251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.441978"], ["updated_at", "2023-02-17 19:28:01.441978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.442859"], ["updated_at", "2023-02-17 19:28:01.442859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.443767"], ["updated_at", "2023-02-17 19:28:01.443767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.444601"], ["updated_at", "2023-02-17 19:28:01.444601"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.445333"], ["updated_at", "2023-02-17 19:28:01.445333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:28:01.446014"], ["updated_at", "2023-02-17 19:28:01.446014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:01.464606"], ["updated_at", "2023-02-17 19:28:01.464606"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:01.466058"], ["updated_at", "2023-02-17 19:28:01.466058"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.466924"], ["updated_at", "2023-02-17 19:28:01.466924"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.467616"], ["updated_at", "2023-02-17 19:28:01.467616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.468366"], ["updated_at", "2023-02-17 19:28:01.468366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.469086"], ["updated_at", "2023-02-17 19:28:01.469086"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.469771"], ["updated_at", "2023-02-17 19:28:01.469771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.470536"], ["updated_at", "2023-02-17 19:28:01.470536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.471572"], ["updated_at", "2023-02-17 19:28:01.471572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.472680"], ["updated_at", "2023-02-17 19:28:01.472680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.473828"], ["updated_at", "2023-02-17 19:28:01.473828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.474724"], ["updated_at", "2023-02-17 19:28:01.474724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.475443"], ["updated_at", "2023-02-17 19:28:01.475443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.476138"], ["updated_at", "2023-02-17 19:28:01.476138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.476801"], ["updated_at", "2023-02-17 19:28:01.476801"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:28:01.477512"], ["updated_at", "2023-02-17 19:28:01.477512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:01.494890"], ["updated_at", "2023-02-17 19:28:01.494890"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:01.495863"], ["updated_at", "2023-02-17 19:28:01.495863"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.496596"], ["updated_at", "2023-02-17 19:28:01.496596"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.497389"], ["updated_at", "2023-02-17 19:28:01.497389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.498405"], ["updated_at", "2023-02-17 19:28:01.498405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.499345"], ["updated_at", "2023-02-17 19:28:01.499345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.500083"], ["updated_at", "2023-02-17 19:28:01.500083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.500773"], ["updated_at", "2023-02-17 19:28:01.500773"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.501454"], ["updated_at", "2023-02-17 19:28:01.501454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.502141"], ["updated_at", "2023-02-17 19:28:01.502141"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.502831"], ["updated_at", "2023-02-17 19:28:01.502831"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.503614"], ["updated_at", "2023-02-17 19:28:01.503614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.504680"], ["updated_at", "2023-02-17 19:28:01.504680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.505895"], ["updated_at", "2023-02-17 19:28:01.505895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.506798"], ["updated_at", "2023-02-17 19:28:01.506798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:28:01.507504"], ["updated_at", "2023-02-17 19:28:01.507504"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:28:01.523445"], ["updated_at", "2023-02-17 19:28:01.523445"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:28:01.524428"], ["updated_at", "2023-02-17 19:28:01.524428"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:28:01.525352"], ["updated_at", "2023-02-17 19:28:01.525352"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:28:01.526177"], ["updated_at", "2023-02-17 19:28:01.526177"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.527109"], ["updated_at", "2023-02-17 19:28:01.527109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.527876"], ["updated_at", "2023-02-17 19:28:01.527876"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.528549"], ["updated_at", "2023-02-17 19:28:01.528549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.529253"], ["updated_at", "2023-02-17 19:28:01.529253"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.529959"], ["updated_at", "2023-02-17 19:28:01.529959"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.530814"], ["updated_at", "2023-02-17 19:28:01.530814"]]
LikertScaleAnswer Create (0.5ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.531842"], ["updated_at", "2023-02-17 19:28:01.531842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.533651"], ["updated_at", "2023-02-17 19:28:01.533651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.534632"], ["updated_at", "2023-02-17 19:28:01.534632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.535425"], ["updated_at", "2023-02-17 19:28:01.535425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.536123"], ["updated_at", "2023-02-17 19:28:01.536123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:28:01.536811"], ["updated_at", "2023-02-17 19:28:01.536811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:28:01 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:28:01 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:28:01 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.2ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.6ms)  SELECT sqlite_version(*)
 (1.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409) Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]

Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:34:29.506359"], ["updated_at", "2023-02-17 19:34:29.506359"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:34:29.517951"], ["updated_at", "2023-02-17 19:34:29.517951"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.3ms | Allocations: 6170)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:34:29.521619"], ["updated_at", "2023-02-17 19:34:29.521619"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:34:29.527394"], ["updated_at", "2023-02-17 19:34:29.527394"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:34:29.538404"], ["updated_at", "2023-02-17 19:34:29.538404"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:34:29.541807"], ["updated_at", "2023-02-17 19:34:29.541807"], ["role_id", 1]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.1ms | Allocations: 5712)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:34:29.545161"], ["updated_at", "2023-02-17 19:34:29.545161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055ad2b408340>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]

Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.1ms)  rollback transaction
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:34:29.548844"], ["updated_at", "2023-02-17 19:34:29.548844"], ["role_id", 34]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:34:29.551907"], ["updated_at", "2023-02-17 19:34:29.551907"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 57ms (Views: 0.2ms | ActiveRecord: 5.3ms | Allocations: 28612) Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.4ms | Allocations: 3026)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 511)

Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:34:29.568371"], ["updated_at", "2023-02-17 19:34:29.568371"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 11ms (Views: 5.7ms | ActiveRecord: 0.8ms | Allocations: 4603)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000556b4e708d70>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 6053) Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.3ms | Allocations: 658)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:29.607531"], ["updated_at", "2023-02-17 19:34:29.607531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 11ms (Views: 0.3ms | ActiveRecord: 0.5ms | Allocations: 5762)

Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:34:29.613874"], ["updated_at", "2023-02-17 19:34:29.613874"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:34:29.619588"], ["updated_at", "2023-02-17 19:34:29.619588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:34:29.621706"], ["updated_at", "2023-02-17 19:34:29.621706"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:34:29.625068"], ["updated_at", "2023-02-17 19:34:29.625068"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:34:29.626308"], ["updated_at", "2023-02-17 19:34:29.626308"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:34:29.629116"], ["updated_at", "2023-02-17 19:34:29.629116"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:29.629971"], ["updated_at", "2023-02-17 19:34:29.629971"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:34:29.630870"], ["updated_at", "2023-02-17 19:34:29.630870"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:29.635430"], ["updated_at", "2023-02-17 19:34:29.635430"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:34:29.637950"], ["updated_at", "2023-02-17 19:34:29.637950"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:34:29.640131"], ["updated_at", "2023-02-17 19:34:29.640131"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:29.640824"], ["updated_at", "2023-02-17 19:34:29.640824"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:34:29.642066"], ["updated_at", "2023-02-17 19:34:29.642066"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:34:29.643397"], ["updated_at", "2023-02-17 19:34:29.643397"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:34:29.644799"], ["updated_at", "2023-02-17 19:34:29.644799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:29.645897"], ["updated_at", "2023-02-17 19:34:29.645897"]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:34:29.646026"], ["updated_at", "2023-02-17 19:34:29.646026"], ["role_id", 34]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:34:29.647431"], ["updated_at", "2023-02-17 19:34:29.647431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:34:29.649064"], ["updated_at", "2023-02-17 19:34:29.649064"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:34:29.650933"], ["updated_at", "2023-02-17 19:34:29.650933"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.4ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:29.652822"], ["updated_at", "2023-02-17 19:34:29.652822"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:34:29.652368"], ["updated_at", "2023-02-17 19:34:29.652368"], ["role_id", 34]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:34:29.654994"], ["updated_at", "2023-02-17 19:34:29.654994"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:34:29.656741"], ["updated_at", "2023-02-17 19:34:29.656741"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:34:29.658633"], ["updated_at", "2023-02-17 19:34:29.658633"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:29.658990"], ["updated_at", "2023-02-17 19:34:29.658990"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:34:29.660163"], ["updated_at", "2023-02-17 19:34:29.660163"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:34:29.661720"], ["updated_at", "2023-02-17 19:34:29.661720"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:34:29.662944"], ["updated_at", "2023-02-17 19:34:29.662944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:34:29.664330"], ["updated_at", "2023-02-17 19:34:29.664330"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:34:29.665986"], ["updated_at", "2023-02-17 19:34:29.665986"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:34:29.667477"], ["updated_at", "2023-02-17 19:34:29.667477"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:29.667568"], ["updated_at", "2023-02-17 19:34:29.667568"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:34:29.668802"], ["updated_at", "2023-02-17 19:34:29.668802"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:34:29.672005"], ["updated_at", "2023-02-17 19:34:29.672005"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:34:29.673731"], ["updated_at", "2023-02-17 19:34:29.673731"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:29.674620"], ["updated_at", "2023-02-17 19:34:29.674620"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:34:29.675573"], ["updated_at", "2023-02-17 19:34:29.675573"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:34:29.676866"], ["updated_at", "2023-02-17 19:34:29.676866"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:34:29.678391"], ["updated_at", "2023-02-17 19:34:29.678391"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:34:29.680011"], ["updated_at", "2023-02-17 19:34:29.680011"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:34:29.681783"], ["updated_at", "2023-02-17 19:34:29.681783"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:34:29.683501"], ["updated_at", "2023-02-17 19:34:29.683501"], ["role_id", 34]]

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:34:29 -0300

TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:34:29.685575"], ["updated_at", "2023-02-17 19:34:29.685575"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:34:29.688268"], ["updated_at", "2023-02-17 19:34:29.688268"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:34:29.690237"], ["updated_at", "2023-02-17 19:34:29.690237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:34:29.691685"], ["updated_at", "2023-02-17 19:34:29.691685"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:34:29.693450"], ["updated_at", "2023-02-17 19:34:29.693450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 232)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:34:29.695089"], ["updated_at", "2023-02-17 19:34:29.695089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:34:29.696512"], ["updated_at", "2023-02-17 19:34:29.696512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:34:29.697770"], ["updated_at", "2023-02-17 19:34:29.697770"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:34:29.699861"], ["updated_at", "2023-02-17 19:34:29.699861"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:34:29.701269"], ["updated_at", "2023-02-17 19:34:29.701269"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:34:29 -0300

TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:34:29.703684"], ["updated_at", "2023-02-17 19:34:29.703684"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 180)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:34:29.705211"], ["updated_at", "2023-02-17 19:34:29.705211"], ["role_id", 34]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:34:29.706655"], ["updated_at", "2023-02-17 19:34:29.706655"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:34:29.707989"], ["updated_at", "2023-02-17 19:34:29.707989"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:34:29.709881"], ["updated_at", "2023-02-17 19:34:29.709881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:34:29.711217"], ["updated_at", "2023-02-17 19:34:29.711217"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:34:29.712636"], ["updated_at", "2023-02-17 19:34:29.712636"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:34:29.714352"], ["updated_at", "2023-02-17 19:34:29.714352"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:34:29.716269"], ["updated_at", "2023-02-17 19:34:29.716269"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:34:29.717605"], ["updated_at", "2023-02-17 19:34:29.717605"], ["role_id", 34]]
TRANSACTION (1.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:34:29.720929"], ["updated_at", "2023-02-17 19:34:29.720929"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:34:29.722311"], ["updated_at", "2023-02-17 19:34:29.722311"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:34:29.723838"], ["updated_at", "2023-02-17 19:34:29.723838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:34:29.725115"], ["updated_at", "2023-02-17 19:34:29.725115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:34:29.726603"], ["updated_at", "2023-02-17 19:34:29.726603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:34:29.728647"], ["updated_at", "2023-02-17 19:34:29.728647"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:34:29.731083"], ["updated_at", "2023-02-17 19:34:29.731083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:34:29.732777"], ["updated_at", "2023-02-17 19:34:29.732777"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:34:29.734896"], ["updated_at", "2023-02-17 19:34:29.734896"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:34:29.736427"], ["updated_at", "2023-02-17 19:34:29.736427"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:34:29.738564"], ["updated_at", "2023-02-17 19:34:29.738564"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:34:29.740536"], ["updated_at", "2023-02-17 19:34:29.740536"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:34:29.742482"], ["updated_at", "2023-02-17 19:34:29.742482"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:34:29.743736"], ["updated_at", "2023-02-17 19:34:29.743736"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:34:29.745115"], ["updated_at", "2023-02-17 19:34:29.745115"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:34:29.746429"], ["updated_at", "2023-02-17 19:34:29.746429"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:34:29.747852"], ["updated_at", "2023-02-17 19:34:29.747852"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:34:29.749749"], ["updated_at", "2023-02-17 19:34:29.749749"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:34:29.751469"], ["updated_at", "2023-02-17 19:34:29.751469"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:34:29.752671"], ["updated_at", "2023-02-17 19:34:29.752671"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:34:29.754470"], ["updated_at", "2023-02-17 19:34:29.754470"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.5ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:34:29.756053"], ["updated_at", "2023-02-17 19:34:29.756053"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:34:29.758706"], ["updated_at", "2023-02-17 19:34:29.758706"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:34:29.760291"], ["updated_at", "2023-02-17 19:34:29.760291"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:34:29.761924"], ["updated_at", "2023-02-17 19:34:29.761924"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:34:29.763171"], ["updated_at", "2023-02-17 19:34:29.763171"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:34:29.764595"], ["updated_at", "2023-02-17 19:34:29.764595"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:34:29.766362"], ["updated_at", "2023-02-17 19:34:29.766362"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:34:29.768048"], ["updated_at", "2023-02-17 19:34:29.768048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:34:29.769804"], ["updated_at", "2023-02-17 19:34:29.769804"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:34:29.771349"], ["updated_at", "2023-02-17 19:34:29.771349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:34:29.772650"], ["updated_at", "2023-02-17 19:34:29.772650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:34:29.775220"], ["updated_at", "2023-02-17 19:34:29.775220"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:34:29.776589"], ["updated_at", "2023-02-17 19:34:29.776589"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:34:29.777992"], ["updated_at", "2023-02-17 19:34:29.777992"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:34:29.779486"], ["updated_at", "2023-02-17 19:34:29.779486"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:34:29.780988"], ["updated_at", "2023-02-17 19:34:29.780988"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:34:29.782568"], ["updated_at", "2023-02-17 19:34:29.782568"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:34:29.784334"], ["updated_at", "2023-02-17 19:34:29.784334"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:34:29.785499"], ["updated_at", "2023-02-17 19:34:29.785499"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:34:29.786698"], ["updated_at", "2023-02-17 19:34:29.786698"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:34:29.788196"], ["updated_at", "2023-02-17 19:34:29.788196"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:34:29.793399"], ["updated_at", "2023-02-17 19:34:29.793399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:34:29.794723"], ["updated_at", "2023-02-17 19:34:29.794723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:34:29.795850"], ["updated_at", "2023-02-17 19:34:29.795850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:29.829107"], ["updated_at", "2023-02-17 19:34:29.829107"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:29.831008"], ["updated_at", "2023-02-17 19:34:29.831008"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:29.832145"], ["updated_at", "2023-02-17 19:34:29.832145"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:29.833061"], ["updated_at", "2023-02-17 19:34:29.833061"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:29.834020"], ["updated_at", "2023-02-17 19:34:29.834020"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:29.834838"], ["updated_at", "2023-02-17 19:34:29.834838"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:29.836891"], ["updated_at", "2023-02-17 19:34:29.836891"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:29.838091"], ["updated_at", "2023-02-17 19:34:29.838091"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:29.839134"], ["updated_at", "2023-02-17 19:34:29.839134"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.840179"], ["updated_at", "2023-02-17 19:34:29.840179"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.841316"], ["updated_at", "2023-02-17 19:34:29.841316"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.842381"], ["updated_at", "2023-02-17 19:34:29.842381"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.843303"], ["updated_at", "2023-02-17 19:34:29.843303"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.844056"], ["updated_at", "2023-02-17 19:34:29.844056"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.844778"], ["updated_at", "2023-02-17 19:34:29.844778"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.845638"], ["updated_at", "2023-02-17 19:34:29.845638"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.846404"], ["updated_at", "2023-02-17 19:34:29.846404"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.847143"], ["updated_at", "2023-02-17 19:34:29.847143"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.847869"], ["updated_at", "2023-02-17 19:34:29.847869"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.848757"], ["updated_at", "2023-02-17 19:34:29.848757"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.849982"], ["updated_at", "2023-02-17 19:34:29.849982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:29.862641"], ["updated_at", "2023-02-17 19:34:29.862641"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:29.863825"], ["updated_at", "2023-02-17 19:34:29.863825"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:29.864764"], ["updated_at", "2023-02-17 19:34:29.864764"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:29.865792"], ["updated_at", "2023-02-17 19:34:29.865792"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:29.866685"], ["updated_at", "2023-02-17 19:34:29.866685"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:29.867380"], ["updated_at", "2023-02-17 19:34:29.867380"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:29.868067"], ["updated_at", "2023-02-17 19:34:29.868067"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:29.868875"], ["updated_at", "2023-02-17 19:34:29.868875"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:29.869875"], ["updated_at", "2023-02-17 19:34:29.869875"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.870904"], ["updated_at", "2023-02-17 19:34:29.870904"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.871706"], ["updated_at", "2023-02-17 19:34:29.871706"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.872442"], ["updated_at", "2023-02-17 19:34:29.872442"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.873224"], ["updated_at", "2023-02-17 19:34:29.873224"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.874091"], ["updated_at", "2023-02-17 19:34:29.874091"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.874980"], ["updated_at", "2023-02-17 19:34:29.874980"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.875746"], ["updated_at", "2023-02-17 19:34:29.875746"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.876583"], ["updated_at", "2023-02-17 19:34:29.876583"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.877457"], ["updated_at", "2023-02-17 19:34:29.877457"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.878259"], ["updated_at", "2023-02-17 19:34:29.878259"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.879192"], ["updated_at", "2023-02-17 19:34:29.879192"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:29.880338"], ["updated_at", "2023-02-17 19:34:29.880338"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:29.916920"], ["updated_at", "2023-02-17 19:34:29.916920"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:29.918176"], ["updated_at", "2023-02-17 19:34:29.918176"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:29.919183"], ["updated_at", "2023-02-17 19:34:29.919183"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.920266"], ["updated_at", "2023-02-17 19:34:29.920266"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.921448"], ["updated_at", "2023-02-17 19:34:29.921448"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.922490"], ["updated_at", "2023-02-17 19:34:29.922490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.923651"], ["updated_at", "2023-02-17 19:34:29.923651"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.924722"], ["updated_at", "2023-02-17 19:34:29.924722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.925876"], ["updated_at", "2023-02-17 19:34:29.925876"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.926780"], ["updated_at", "2023-02-17 19:34:29.926780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.927544"], ["updated_at", "2023-02-17 19:34:29.927544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.928235"], ["updated_at", "2023-02-17 19:34:29.928235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.929011"], ["updated_at", "2023-02-17 19:34:29.929011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.929926"], ["updated_at", "2023-02-17 19:34:29.929926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.930900"], ["updated_at", "2023-02-17 19:34:29.930900"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:29.932114"], ["updated_at", "2023-02-17 19:34:29.932114"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:29.950126"], ["updated_at", "2023-02-17 19:34:29.950126"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:29.951280"], ["updated_at", "2023-02-17 19:34:29.951280"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:29.952150"], ["updated_at", "2023-02-17 19:34:29.952150"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.952897"], ["updated_at", "2023-02-17 19:34:29.952897"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.953699"], ["updated_at", "2023-02-17 19:34:29.953699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.954412"], ["updated_at", "2023-02-17 19:34:29.954412"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.955231"], ["updated_at", "2023-02-17 19:34:29.955231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.956091"], ["updated_at", "2023-02-17 19:34:29.956091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.956835"], ["updated_at", "2023-02-17 19:34:29.956835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.957533"], ["updated_at", "2023-02-17 19:34:29.957533"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.958228"], ["updated_at", "2023-02-17 19:34:29.958228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.958909"], ["updated_at", "2023-02-17 19:34:29.958909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.959866"], ["updated_at", "2023-02-17 19:34:29.959866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.960724"], ["updated_at", "2023-02-17 19:34:29.960724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.961473"], ["updated_at", "2023-02-17 19:34:29.961473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:29.962191"], ["updated_at", "2023-02-17 19:34:29.962191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:29.978855"], ["updated_at", "2023-02-17 19:34:29.978855"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:29.980117"], ["updated_at", "2023-02-17 19:34:29.980117"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:29.981184"], ["updated_at", "2023-02-17 19:34:29.981184"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:29.982405"], ["updated_at", "2023-02-17 19:34:29.982405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.983429"], ["updated_at", "2023-02-17 19:34:29.983429"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.984226"], ["updated_at", "2023-02-17 19:34:29.984226"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.984951"], ["updated_at", "2023-02-17 19:34:29.984951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.985690"], ["updated_at", "2023-02-17 19:34:29.985690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.986454"], ["updated_at", "2023-02-17 19:34:29.986454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.987176"], ["updated_at", "2023-02-17 19:34:29.987176"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.987862"], ["updated_at", "2023-02-17 19:34:29.987862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.988687"], ["updated_at", "2023-02-17 19:34:29.988687"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.990599"], ["updated_at", "2023-02-17 19:34:29.990599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.991414"], ["updated_at", "2023-02-17 19:34:29.991414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.992109"], ["updated_at", "2023-02-17 19:34:29.992109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:29.992800"], ["updated_at", "2023-02-17 19:34:29.992800"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.010960"], ["updated_at", "2023-02-17 19:34:30.010960"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.012005"], ["updated_at", "2023-02-17 19:34:30.012005"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.012764"], ["updated_at", "2023-02-17 19:34:30.012764"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.013509"], ["updated_at", "2023-02-17 19:34:30.013509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.014323"], ["updated_at", "2023-02-17 19:34:30.014323"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.015138"], ["updated_at", "2023-02-17 19:34:30.015138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.016010"], ["updated_at", "2023-02-17 19:34:30.016010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.016998"], ["updated_at", "2023-02-17 19:34:30.016998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.017760"], ["updated_at", "2023-02-17 19:34:30.017760"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.018526"], ["updated_at", "2023-02-17 19:34:30.018526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.019238"], ["updated_at", "2023-02-17 19:34:30.019238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.020157"], ["updated_at", "2023-02-17 19:34:30.020157"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.020965"], ["updated_at", "2023-02-17 19:34:30.020965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.021664"], ["updated_at", "2023-02-17 19:34:30.021664"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.022576"], ["updated_at", "2023-02-17 19:34:30.022576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.023596"], ["updated_at", "2023-02-17 19:34:30.023596"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.040877"], ["updated_at", "2023-02-17 19:34:30.040877"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.041864"], ["updated_at", "2023-02-17 19:34:30.041864"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.042634"], ["updated_at", "2023-02-17 19:34:30.042634"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.043403"], ["updated_at", "2023-02-17 19:34:30.043403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.044188"], ["updated_at", "2023-02-17 19:34:30.044188"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.044977"], ["updated_at", "2023-02-17 19:34:30.044977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.045677"], ["updated_at", "2023-02-17 19:34:30.045677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.046437"], ["updated_at", "2023-02-17 19:34:30.046437"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.047172"], ["updated_at", "2023-02-17 19:34:30.047172"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.047851"], ["updated_at", "2023-02-17 19:34:30.047851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.048679"], ["updated_at", "2023-02-17 19:34:30.048679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.049630"], ["updated_at", "2023-02-17 19:34:30.049630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.050512"], ["updated_at", "2023-02-17 19:34:30.050512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.051263"], ["updated_at", "2023-02-17 19:34:30.051263"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.051996"], ["updated_at", "2023-02-17 19:34:30.051996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.052701"], ["updated_at", "2023-02-17 19:34:30.052701"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.069509"], ["updated_at", "2023-02-17 19:34:30.069509"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.070636"], ["updated_at", "2023-02-17 19:34:30.070636"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.071429"], ["updated_at", "2023-02-17 19:34:30.071429"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.072152"], ["updated_at", "2023-02-17 19:34:30.072152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.073173"], ["updated_at", "2023-02-17 19:34:30.073173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.074194"], ["updated_at", "2023-02-17 19:34:30.074194"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.074971"], ["updated_at", "2023-02-17 19:34:30.074971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.075662"], ["updated_at", "2023-02-17 19:34:30.075662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.076391"], ["updated_at", "2023-02-17 19:34:30.076391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.077159"], ["updated_at", "2023-02-17 19:34:30.077159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.078000"], ["updated_at", "2023-02-17 19:34:30.078000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.078772"], ["updated_at", "2023-02-17 19:34:30.078772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.079488"], ["updated_at", "2023-02-17 19:34:30.079488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.080302"], ["updated_at", "2023-02-17 19:34:30.080302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.081039"], ["updated_at", "2023-02-17 19:34:30.081039"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.081853"], ["updated_at", "2023-02-17 19:34:30.081853"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:34:30 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 0.4ms | Allocations: 3146)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:30.106965"], ["updated_at", "2023-02-17 19:34:30.106965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:34:30.108487"], ["updated_at", "2023-02-17 19:34:30.108487"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:34:30.111606"], ["updated_at", "2023-02-17 19:34:30.111606"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:34:30.112857"], ["updated_at", "2023-02-17 19:34:30.112857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:34:30.116206"], ["updated_at", "2023-02-17 19:34:30.116206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:34:30.117541"], ["updated_at", "2023-02-17 19:34:30.117541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:34:30.119860"], ["updated_at", "2023-02-17 19:34:30.119860"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:34:30.121564"], ["updated_at", "2023-02-17 19:34:30.121564"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:34:30.123468"], ["updated_at", "2023-02-17 19:34:30.123468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:34:30.124994"], ["updated_at", "2023-02-17 19:34:30.124994"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:34:30.126633"], ["updated_at", "2023-02-17 19:34:30.126633"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:34:30.127870"], ["updated_at", "2023-02-17 19:34:30.127870"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:34:30.129424"], ["updated_at", "2023-02-17 19:34:30.129424"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:34:30.130967"], ["updated_at", "2023-02-17 19:34:30.130967"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:34:30.132550"], ["updated_at", "2023-02-17 19:34:30.132550"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:34:30.134121"], ["updated_at", "2023-02-17 19:34:30.134121"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:34:30.135860"], ["updated_at", "2023-02-17 19:34:30.135860"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:34:30.137180"], ["updated_at", "2023-02-17 19:34:30.137180"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:34:30.138704"], ["updated_at", "2023-02-17 19:34:30.138704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:34:30.140424"], ["updated_at", "2023-02-17 19:34:30.140424"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:34:30.142088"], ["updated_at", "2023-02-17 19:34:30.142088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:34:30.143368"], ["updated_at", "2023-02-17 19:34:30.143368"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:34:30.145056"], ["updated_at", "2023-02-17 19:34:30.145056"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:34:30.146418"], ["updated_at", "2023-02-17 19:34:30.146418"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:34:30.147832"], ["updated_at", "2023-02-17 19:34:30.147832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:34:30.149211"], ["updated_at", "2023-02-17 19:34:30.149211"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:34:30.151351"], ["updated_at", "2023-02-17 19:34:30.151351"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:34:30.152945"], ["updated_at", "2023-02-17 19:34:30.152945"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:34:30.154415"], ["updated_at", "2023-02-17 19:34:30.154415"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:34:30.155719"], ["updated_at", "2023-02-17 19:34:30.155719"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:34:30.157444"], ["updated_at", "2023-02-17 19:34:30.157444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:34:30.158713"], ["updated_at", "2023-02-17 19:34:30.158713"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:34:30.160327"], ["updated_at", "2023-02-17 19:34:30.160327"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:34:30.161634"], ["updated_at", "2023-02-17 19:34:30.161634"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:34:30.163066"], ["updated_at", "2023-02-17 19:34:30.163066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:34:30.164365"], ["updated_at", "2023-02-17 19:34:30.164365"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:34:30.166082"], ["updated_at", "2023-02-17 19:34:30.166082"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:34:30.167750"], ["updated_at", "2023-02-17 19:34:30.167750"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:34:30.169251"], ["updated_at", "2023-02-17 19:34:30.169251"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:34:30.170559"], ["updated_at", "2023-02-17 19:34:30.170559"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:34:30.172076"], ["updated_at", "2023-02-17 19:34:30.172076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:34:30.173605"], ["updated_at", "2023-02-17 19:34:30.173605"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:34:30.175143"], ["updated_at", "2023-02-17 19:34:30.175143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.176464"], ["updated_at", "2023-02-17 19:34:30.176464"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:34:30.177946"], ["updated_at", "2023-02-17 19:34:30.177946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:34:30.179238"], ["updated_at", "2023-02-17 19:34:30.179238"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:34:30.180786"], ["updated_at", "2023-02-17 19:34:30.180786"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:34:30.182218"], ["updated_at", "2023-02-17 19:34:30.182218"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:34:30.183742"], ["updated_at", "2023-02-17 19:34:30.183742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:34:30.185051"], ["updated_at", "2023-02-17 19:34:30.185051"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:34:30.186482"], ["updated_at", "2023-02-17 19:34:30.186482"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:34:30.187710"], ["updated_at", "2023-02-17 19:34:30.187710"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:34:30.189259"], ["updated_at", "2023-02-17 19:34:30.189259"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:34:30.190965"], ["updated_at", "2023-02-17 19:34:30.190965"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:34:30.192587"], ["updated_at", "2023-02-17 19:34:30.192587"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:34:30.193945"], ["updated_at", "2023-02-17 19:34:30.193945"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:34:30.195369"], ["updated_at", "2023-02-17 19:34:30.195369"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:34:30.196599"], ["updated_at", "2023-02-17 19:34:30.196599"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:34:30.198207"], ["updated_at", "2023-02-17 19:34:30.198207"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:34:30.199640"], ["updated_at", "2023-02-17 19:34:30.199640"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:34:30.201270"], ["updated_at", "2023-02-17 19:34:30.201270"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:34:30.202587"], ["updated_at", "2023-02-17 19:34:30.202587"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:34:30.204088"], ["updated_at", "2023-02-17 19:34:30.204088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.205463"], ["updated_at", "2023-02-17 19:34:30.205463"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:34:30.207048"], ["updated_at", "2023-02-17 19:34:30.207048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:34:30.208302"], ["updated_at", "2023-02-17 19:34:30.208302"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:34:30.209820"], ["updated_at", "2023-02-17 19:34:30.209820"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:34:30.211183"], ["updated_at", "2023-02-17 19:34:30.211183"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:34:30.212732"], ["updated_at", "2023-02-17 19:34:30.212732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.214063"], ["updated_at", "2023-02-17 19:34:30.214063"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:34:30.215611"], ["updated_at", "2023-02-17 19:34:30.215611"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:34:30.216919"], ["updated_at", "2023-02-17 19:34:30.216919"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:34:30.218433"], ["updated_at", "2023-02-17 19:34:30.218433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:34:30.219699"], ["updated_at", "2023-02-17 19:34:30.219699"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:34:30.221228"], ["updated_at", "2023-02-17 19:34:30.221228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:34:30.222580"], ["updated_at", "2023-02-17 19:34:30.222580"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:34:30.224051"], ["updated_at", "2023-02-17 19:34:30.224051"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:34:30.225269"], ["updated_at", "2023-02-17 19:34:30.225269"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:34:30.226773"], ["updated_at", "2023-02-17 19:34:30.226773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:34:30.228076"], ["updated_at", "2023-02-17 19:34:30.228076"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:34:30.229675"], ["updated_at", "2023-02-17 19:34:30.229675"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.231135"], ["updated_at", "2023-02-17 19:34:30.231135"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:34:30.232769"], ["updated_at", "2023-02-17 19:34:30.232769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:34:30.234137"], ["updated_at", "2023-02-17 19:34:30.234137"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:34:30.235669"], ["updated_at", "2023-02-17 19:34:30.235669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:34:30.236967"], ["updated_at", "2023-02-17 19:34:30.236967"], ["role_id", 34]]
TRANSACTION (10.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:34:30.249106"], ["updated_at", "2023-02-17 19:34:30.249106"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:34:30.250661"], ["updated_at", "2023-02-17 19:34:30.250661"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:34:30.252197"], ["updated_at", "2023-02-17 19:34:30.252197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:34:30.253471"], ["updated_at", "2023-02-17 19:34:30.253471"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:34:30.254900"], ["updated_at", "2023-02-17 19:34:30.254900"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:34:30.256148"], ["updated_at", "2023-02-17 19:34:30.256148"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:34:30.257619"], ["updated_at", "2023-02-17 19:34:30.257619"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:34:30.258835"], ["updated_at", "2023-02-17 19:34:30.258835"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:34:30.260297"], ["updated_at", "2023-02-17 19:34:30.260297"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:34:30.261406"], ["updated_at", "2023-02-17 19:34:30.261406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:34:30.262593"], ["updated_at", "2023-02-17 19:34:30.262593"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:34:30.264021"], ["updated_at", "2023-02-17 19:34:30.264021"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:34:30.265587"], ["updated_at", "2023-02-17 19:34:30.265587"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:34:30.266807"], ["updated_at", "2023-02-17 19:34:30.266807"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:34:30.267968"], ["updated_at", "2023-02-17 19:34:30.267968"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:30.279343"], ["updated_at", "2023-02-17 19:34:30.279343"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:30.280709"], ["updated_at", "2023-02-17 19:34:30.280709"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:30.281771"], ["updated_at", "2023-02-17 19:34:30.281771"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.282704"], ["updated_at", "2023-02-17 19:34:30.282704"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.283687"], ["updated_at", "2023-02-17 19:34:30.283687"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.284616"], ["updated_at", "2023-02-17 19:34:30.284616"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.285320"], ["updated_at", "2023-02-17 19:34:30.285320"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.285990"], ["updated_at", "2023-02-17 19:34:30.285990"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:30.286731"], ["updated_at", "2023-02-17 19:34:30.286731"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.287662"], ["updated_at", "2023-02-17 19:34:30.287662"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.288621"], ["updated_at", "2023-02-17 19:34:30.288621"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.289471"], ["updated_at", "2023-02-17 19:34:30.289471"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.290209"], ["updated_at", "2023-02-17 19:34:30.290209"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.290991"], ["updated_at", "2023-02-17 19:34:30.290991"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.291742"], ["updated_at", "2023-02-17 19:34:30.291742"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.292503"], ["updated_at", "2023-02-17 19:34:30.292503"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.293344"], ["updated_at", "2023-02-17 19:34:30.293344"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.294106"], ["updated_at", "2023-02-17 19:34:30.294106"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.294868"], ["updated_at", "2023-02-17 19:34:30.294868"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.295615"], ["updated_at", "2023-02-17 19:34:30.295615"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.296352"], ["updated_at", "2023-02-17 19:34:30.296352"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:30.308073"], ["updated_at", "2023-02-17 19:34:30.308073"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:30.309404"], ["updated_at", "2023-02-17 19:34:30.309404"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:30.310400"], ["updated_at", "2023-02-17 19:34:30.310400"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:30.311276"], ["updated_at", "2023-02-17 19:34:30.311276"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:30.312026"], ["updated_at", "2023-02-17 19:34:30.312026"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:30.312716"], ["updated_at", "2023-02-17 19:34:30.312716"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:30.313472"], ["updated_at", "2023-02-17 19:34:30.313472"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:30.314217"], ["updated_at", "2023-02-17 19:34:30.314217"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:30.314960"], ["updated_at", "2023-02-17 19:34:30.314960"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.315904"], ["updated_at", "2023-02-17 19:34:30.315904"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.316734"], ["updated_at", "2023-02-17 19:34:30.316734"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.317608"], ["updated_at", "2023-02-17 19:34:30.317608"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.318447"], ["updated_at", "2023-02-17 19:34:30.318447"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.319193"], ["updated_at", "2023-02-17 19:34:30.319193"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.319929"], ["updated_at", "2023-02-17 19:34:30.319929"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.320649"], ["updated_at", "2023-02-17 19:34:30.320649"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.321427"], ["updated_at", "2023-02-17 19:34:30.321427"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.322242"], ["updated_at", "2023-02-17 19:34:30.322242"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.322978"], ["updated_at", "2023-02-17 19:34:30.322978"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.323718"], ["updated_at", "2023-02-17 19:34:30.323718"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.324484"], ["updated_at", "2023-02-17 19:34:30.324484"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.340731"], ["updated_at", "2023-02-17 19:34:30.340731"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.341778"], ["updated_at", "2023-02-17 19:34:30.341778"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.342658"], ["updated_at", "2023-02-17 19:34:30.342658"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.343447"], ["updated_at", "2023-02-17 19:34:30.343447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.344232"], ["updated_at", "2023-02-17 19:34:30.344232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.345016"], ["updated_at", "2023-02-17 19:34:30.345016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.345706"], ["updated_at", "2023-02-17 19:34:30.345706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.346417"], ["updated_at", "2023-02-17 19:34:30.346417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.347202"], ["updated_at", "2023-02-17 19:34:30.347202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.347991"], ["updated_at", "2023-02-17 19:34:30.347991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.348730"], ["updated_at", "2023-02-17 19:34:30.348730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.349463"], ["updated_at", "2023-02-17 19:34:30.349463"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.350138"], ["updated_at", "2023-02-17 19:34:30.350138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.350916"], ["updated_at", "2023-02-17 19:34:30.350916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.351667"], ["updated_at", "2023-02-17 19:34:30.351667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.352350"], ["updated_at", "2023-02-17 19:34:30.352350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.367956"], ["updated_at", "2023-02-17 19:34:30.367956"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.368959"], ["updated_at", "2023-02-17 19:34:30.368959"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.369773"], ["updated_at", "2023-02-17 19:34:30.369773"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.370491"], ["updated_at", "2023-02-17 19:34:30.370491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.371276"], ["updated_at", "2023-02-17 19:34:30.371276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.372035"], ["updated_at", "2023-02-17 19:34:30.372035"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.372744"], ["updated_at", "2023-02-17 19:34:30.372744"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.373469"], ["updated_at", "2023-02-17 19:34:30.373469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.374154"], ["updated_at", "2023-02-17 19:34:30.374154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.374840"], ["updated_at", "2023-02-17 19:34:30.374840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.375559"], ["updated_at", "2023-02-17 19:34:30.375559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.376288"], ["updated_at", "2023-02-17 19:34:30.376288"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.377019"], ["updated_at", "2023-02-17 19:34:30.377019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.377780"], ["updated_at", "2023-02-17 19:34:30.377780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.378494"], ["updated_at", "2023-02-17 19:34:30.378494"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.379182"], ["updated_at", "2023-02-17 19:34:30.379182"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.394715"], ["updated_at", "2023-02-17 19:34:30.394715"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.395714"], ["updated_at", "2023-02-17 19:34:30.395714"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.396502"], ["updated_at", "2023-02-17 19:34:30.396502"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.397219"], ["updated_at", "2023-02-17 19:34:30.397219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.398082"], ["updated_at", "2023-02-17 19:34:30.398082"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.398859"], ["updated_at", "2023-02-17 19:34:30.398859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.399583"], ["updated_at", "2023-02-17 19:34:30.399583"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.400287"], ["updated_at", "2023-02-17 19:34:30.400287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.401053"], ["updated_at", "2023-02-17 19:34:30.401053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.401763"], ["updated_at", "2023-02-17 19:34:30.401763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.402461"], ["updated_at", "2023-02-17 19:34:30.402461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.403147"], ["updated_at", "2023-02-17 19:34:30.403147"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.403848"], ["updated_at", "2023-02-17 19:34:30.403848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.404550"], ["updated_at", "2023-02-17 19:34:30.404550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.405280"], ["updated_at", "2023-02-17 19:34:30.405280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.405964"], ["updated_at", "2023-02-17 19:34:30.405964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.421654"], ["updated_at", "2023-02-17 19:34:30.421654"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.422652"], ["updated_at", "2023-02-17 19:34:30.422652"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.423371"], ["updated_at", "2023-02-17 19:34:30.423371"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.424051"], ["updated_at", "2023-02-17 19:34:30.424051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.424799"], ["updated_at", "2023-02-17 19:34:30.424799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.425576"], ["updated_at", "2023-02-17 19:34:30.425576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.426330"], ["updated_at", "2023-02-17 19:34:30.426330"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.427032"], ["updated_at", "2023-02-17 19:34:30.427032"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.427810"], ["updated_at", "2023-02-17 19:34:30.427810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.428517"], ["updated_at", "2023-02-17 19:34:30.428517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.429265"], ["updated_at", "2023-02-17 19:34:30.429265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.430034"], ["updated_at", "2023-02-17 19:34:30.430034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.430893"], ["updated_at", "2023-02-17 19:34:30.430893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.431972"], ["updated_at", "2023-02-17 19:34:30.431972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.433041"], ["updated_at", "2023-02-17 19:34:30.433041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.434113"], ["updated_at", "2023-02-17 19:34:30.434113"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.450958"], ["updated_at", "2023-02-17 19:34:30.450958"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.451930"], ["updated_at", "2023-02-17 19:34:30.451930"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.452654"], ["updated_at", "2023-02-17 19:34:30.452654"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.453350"], ["updated_at", "2023-02-17 19:34:30.453350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.454159"], ["updated_at", "2023-02-17 19:34:30.454159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.454929"], ["updated_at", "2023-02-17 19:34:30.454929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.455638"], ["updated_at", "2023-02-17 19:34:30.455638"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.456303"], ["updated_at", "2023-02-17 19:34:30.456303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.457021"], ["updated_at", "2023-02-17 19:34:30.457021"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.457866"], ["updated_at", "2023-02-17 19:34:30.457866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.458659"], ["updated_at", "2023-02-17 19:34:30.458659"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.459375"], ["updated_at", "2023-02-17 19:34:30.459375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.460193"], ["updated_at", "2023-02-17 19:34:30.460193"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.461189"], ["updated_at", "2023-02-17 19:34:30.461189"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.461961"], ["updated_at", "2023-02-17 19:34:30.461961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.462693"], ["updated_at", "2023-02-17 19:34:30.462693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.479576"], ["updated_at", "2023-02-17 19:34:30.479576"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.480534"], ["updated_at", "2023-02-17 19:34:30.480534"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.481324"], ["updated_at", "2023-02-17 19:34:30.481324"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.482225"], ["updated_at", "2023-02-17 19:34:30.482225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.483291"], ["updated_at", "2023-02-17 19:34:30.483291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.484196"], ["updated_at", "2023-02-17 19:34:30.484196"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.484944"], ["updated_at", "2023-02-17 19:34:30.484944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.485628"], ["updated_at", "2023-02-17 19:34:30.485628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.486340"], ["updated_at", "2023-02-17 19:34:30.486340"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.487228"], ["updated_at", "2023-02-17 19:34:30.487228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.488123"], ["updated_at", "2023-02-17 19:34:30.488123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.488882"], ["updated_at", "2023-02-17 19:34:30.488882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.489619"], ["updated_at", "2023-02-17 19:34:30.489619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.490306"], ["updated_at", "2023-02-17 19:34:30.490306"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.491064"], ["updated_at", "2023-02-17 19:34:30.491064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.491819"], ["updated_at", "2023-02-17 19:34:30.491819"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:34:30 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:30.501652"], ["updated_at", "2023-02-17 19:34:30.501652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:34:30.503147"], ["updated_at", "2023-02-17 19:34:30.503147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:34:30.506019"], ["updated_at", "2023-02-17 19:34:30.506019"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:34:30.507194"], ["updated_at", "2023-02-17 19:34:30.507194"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:34:30.510269"], ["updated_at", "2023-02-17 19:34:30.510269"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:34:30.511600"], ["updated_at", "2023-02-17 19:34:30.511600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:34:30.513762"], ["updated_at", "2023-02-17 19:34:30.513762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:34:30.515204"], ["updated_at", "2023-02-17 19:34:30.515204"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:34:30.516923"], ["updated_at", "2023-02-17 19:34:30.516923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:34:30.518660"], ["updated_at", "2023-02-17 19:34:30.518660"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:34:30.520096"], ["updated_at", "2023-02-17 19:34:30.520096"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:34:30.521430"], ["updated_at", "2023-02-17 19:34:30.521430"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:34:30.522930"], ["updated_at", "2023-02-17 19:34:30.522930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:34:30.524117"], ["updated_at", "2023-02-17 19:34:30.524117"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:34:30.525579"], ["updated_at", "2023-02-17 19:34:30.525579"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:34:30.526987"], ["updated_at", "2023-02-17 19:34:30.526987"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:34:30.528694"], ["updated_at", "2023-02-17 19:34:30.528694"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:34:30.530159"], ["updated_at", "2023-02-17 19:34:30.530159"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:34:30.531589"], ["updated_at", "2023-02-17 19:34:30.531589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:34:30.532910"], ["updated_at", "2023-02-17 19:34:30.532910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:34:30.534644"], ["updated_at", "2023-02-17 19:34:30.534644"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:34:30.535901"], ["updated_at", "2023-02-17 19:34:30.535901"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:34:30.537492"], ["updated_at", "2023-02-17 19:34:30.537492"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:34:30.538941"], ["updated_at", "2023-02-17 19:34:30.538941"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:34:30.540389"], ["updated_at", "2023-02-17 19:34:30.540389"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:34:30.541583"], ["updated_at", "2023-02-17 19:34:30.541583"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:34:30.543092"], ["updated_at", "2023-02-17 19:34:30.543092"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:34:30.544600"], ["updated_at", "2023-02-17 19:34:30.544600"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:34:30.546065"], ["updated_at", "2023-02-17 19:34:30.546065"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:34:30.547401"], ["updated_at", "2023-02-17 19:34:30.547401"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:34:30.548924"], ["updated_at", "2023-02-17 19:34:30.548924"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:34:30.550335"], ["updated_at", "2023-02-17 19:34:30.550335"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:34:30.551784"], ["updated_at", "2023-02-17 19:34:30.551784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:34:30.553004"], ["updated_at", "2023-02-17 19:34:30.553004"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:34:30.554413"], ["updated_at", "2023-02-17 19:34:30.554413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:34:30.555667"], ["updated_at", "2023-02-17 19:34:30.555667"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:34:30.557194"], ["updated_at", "2023-02-17 19:34:30.557194"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:34:30.558495"], ["updated_at", "2023-02-17 19:34:30.558495"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:34:30.559998"], ["updated_at", "2023-02-17 19:34:30.559998"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:34:30.561522"], ["updated_at", "2023-02-17 19:34:30.561522"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:34:30.562930"], ["updated_at", "2023-02-17 19:34:30.562930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:34:30.564208"], ["updated_at", "2023-02-17 19:34:30.564208"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:34:30.565787"], ["updated_at", "2023-02-17 19:34:30.565787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.567055"], ["updated_at", "2023-02-17 19:34:30.567055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:34:30.568717"], ["updated_at", "2023-02-17 19:34:30.568717"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:34:30.570008"], ["updated_at", "2023-02-17 19:34:30.570008"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:34:30.571382"], ["updated_at", "2023-02-17 19:34:30.571382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:34:30.572783"], ["updated_at", "2023-02-17 19:34:30.572783"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:34:30.574172"], ["updated_at", "2023-02-17 19:34:30.574172"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:34:30.575366"], ["updated_at", "2023-02-17 19:34:30.575366"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:34:30.577161"], ["updated_at", "2023-02-17 19:34:30.577161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:34:30.578620"], ["updated_at", "2023-02-17 19:34:30.578620"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:34:30.580125"], ["updated_at", "2023-02-17 19:34:30.580125"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:34:30.581420"], ["updated_at", "2023-02-17 19:34:30.581420"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:34:30.583029"], ["updated_at", "2023-02-17 19:34:30.583029"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:34:30.584335"], ["updated_at", "2023-02-17 19:34:30.584335"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:34:30.585795"], ["updated_at", "2023-02-17 19:34:30.585795"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:34:30.587176"], ["updated_at", "2023-02-17 19:34:30.587176"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:34:30.588716"], ["updated_at", "2023-02-17 19:34:30.588716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:34:30.589997"], ["updated_at", "2023-02-17 19:34:30.589997"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:34:30.591377"], ["updated_at", "2023-02-17 19:34:30.591377"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:34:30.592552"], ["updated_at", "2023-02-17 19:34:30.592552"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:34:30.594288"], ["updated_at", "2023-02-17 19:34:30.594288"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.595618"], ["updated_at", "2023-02-17 19:34:30.595618"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:34:30.597021"], ["updated_at", "2023-02-17 19:34:30.597021"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:34:30.598471"], ["updated_at", "2023-02-17 19:34:30.598471"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:34:30.599901"], ["updated_at", "2023-02-17 19:34:30.599901"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:34:30.601115"], ["updated_at", "2023-02-17 19:34:30.601115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:34:30.602620"], ["updated_at", "2023-02-17 19:34:30.602620"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.603805"], ["updated_at", "2023-02-17 19:34:30.603805"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:34:30.605165"], ["updated_at", "2023-02-17 19:34:30.605165"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:34:30.606472"], ["updated_at", "2023-02-17 19:34:30.606472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:34:30.607937"], ["updated_at", "2023-02-17 19:34:30.607937"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:34:30.609252"], ["updated_at", "2023-02-17 19:34:30.609252"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:34:30.610980"], ["updated_at", "2023-02-17 19:34:30.610980"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:34:30.612243"], ["updated_at", "2023-02-17 19:34:30.612243"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:34:30.613628"], ["updated_at", "2023-02-17 19:34:30.613628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:34:30.614858"], ["updated_at", "2023-02-17 19:34:30.614858"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:34:30.616298"], ["updated_at", "2023-02-17 19:34:30.616298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:34:30.617676"], ["updated_at", "2023-02-17 19:34:30.617676"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:34:30.619170"], ["updated_at", "2023-02-17 19:34:30.619170"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.620369"], ["updated_at", "2023-02-17 19:34:30.620369"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:34:30.621786"], ["updated_at", "2023-02-17 19:34:30.621786"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:34:30.623024"], ["updated_at", "2023-02-17 19:34:30.623024"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:34:30.624421"], ["updated_at", "2023-02-17 19:34:30.624421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:34:30.625666"], ["updated_at", "2023-02-17 19:34:30.625666"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:34:30.627394"], ["updated_at", "2023-02-17 19:34:30.627394"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:34:30.628840"], ["updated_at", "2023-02-17 19:34:30.628840"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:34:30.630292"], ["updated_at", "2023-02-17 19:34:30.630292"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:34:30.631556"], ["updated_at", "2023-02-17 19:34:30.631556"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:34:30.633125"], ["updated_at", "2023-02-17 19:34:30.633125"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:34:30.634526"], ["updated_at", "2023-02-17 19:34:30.634526"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:34:30.635973"], ["updated_at", "2023-02-17 19:34:30.635973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:34:30.637151"], ["updated_at", "2023-02-17 19:34:30.637151"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:34:30.638726"], ["updated_at", "2023-02-17 19:34:30.638726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:34:30.640044"], ["updated_at", "2023-02-17 19:34:30.640044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:34:30.641372"], ["updated_at", "2023-02-17 19:34:30.641372"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:34:30.642770"], ["updated_at", "2023-02-17 19:34:30.642770"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:34:30.644537"], ["updated_at", "2023-02-17 19:34:30.644537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:34:30.645790"], ["updated_at", "2023-02-17 19:34:30.645790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:34:30.646874"], ["updated_at", "2023-02-17 19:34:30.646874"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:30.658804"], ["updated_at", "2023-02-17 19:34:30.658804"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:30.660221"], ["updated_at", "2023-02-17 19:34:30.660221"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:30.661468"], ["updated_at", "2023-02-17 19:34:30.661468"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.662470"], ["updated_at", "2023-02-17 19:34:30.662470"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.663321"], ["updated_at", "2023-02-17 19:34:30.663321"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.664049"], ["updated_at", "2023-02-17 19:34:30.664049"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.664748"], ["updated_at", "2023-02-17 19:34:30.664748"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.665539"], ["updated_at", "2023-02-17 19:34:30.665539"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:30.666402"], ["updated_at", "2023-02-17 19:34:30.666402"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.667304"], ["updated_at", "2023-02-17 19:34:30.667304"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.668346"], ["updated_at", "2023-02-17 19:34:30.668346"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.669167"], ["updated_at", "2023-02-17 19:34:30.669167"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.670013"], ["updated_at", "2023-02-17 19:34:30.670013"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.670760"], ["updated_at", "2023-02-17 19:34:30.670760"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.671501"], ["updated_at", "2023-02-17 19:34:30.671501"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.672217"], ["updated_at", "2023-02-17 19:34:30.672217"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.672919"], ["updated_at", "2023-02-17 19:34:30.672919"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.673670"], ["updated_at", "2023-02-17 19:34:30.673670"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.674411"], ["updated_at", "2023-02-17 19:34:30.674411"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.675127"], ["updated_at", "2023-02-17 19:34:30.675127"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.675838"], ["updated_at", "2023-02-17 19:34:30.675838"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:30.687593"], ["updated_at", "2023-02-17 19:34:30.687593"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:30.688872"], ["updated_at", "2023-02-17 19:34:30.688872"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:30.689838"], ["updated_at", "2023-02-17 19:34:30.689838"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:30.690706"], ["updated_at", "2023-02-17 19:34:30.690706"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:30.691451"], ["updated_at", "2023-02-17 19:34:30.691451"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:30.692138"], ["updated_at", "2023-02-17 19:34:30.692138"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:30.692929"], ["updated_at", "2023-02-17 19:34:30.692929"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:30.693884"], ["updated_at", "2023-02-17 19:34:30.693884"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:30.694768"], ["updated_at", "2023-02-17 19:34:30.694768"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.695625"], ["updated_at", "2023-02-17 19:34:30.695625"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.696395"], ["updated_at", "2023-02-17 19:34:30.696395"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.697152"], ["updated_at", "2023-02-17 19:34:30.697152"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.698017"], ["updated_at", "2023-02-17 19:34:30.698017"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.698842"], ["updated_at", "2023-02-17 19:34:30.698842"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.699602"], ["updated_at", "2023-02-17 19:34:30.699602"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.700418"], ["updated_at", "2023-02-17 19:34:30.700418"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.701202"], ["updated_at", "2023-02-17 19:34:30.701202"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.701932"], ["updated_at", "2023-02-17 19:34:30.701932"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.702651"], ["updated_at", "2023-02-17 19:34:30.702651"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.703364"], ["updated_at", "2023-02-17 19:34:30.703364"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:30.704083"], ["updated_at", "2023-02-17 19:34:30.704083"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.720737"], ["updated_at", "2023-02-17 19:34:30.720737"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.721803"], ["updated_at", "2023-02-17 19:34:30.721803"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.722622"], ["updated_at", "2023-02-17 19:34:30.722622"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.723392"], ["updated_at", "2023-02-17 19:34:30.723392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.724186"], ["updated_at", "2023-02-17 19:34:30.724186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.724998"], ["updated_at", "2023-02-17 19:34:30.724998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.725717"], ["updated_at", "2023-02-17 19:34:30.725717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.726440"], ["updated_at", "2023-02-17 19:34:30.726440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.727422"], ["updated_at", "2023-02-17 19:34:30.727422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.728388"], ["updated_at", "2023-02-17 19:34:30.728388"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.729149"], ["updated_at", "2023-02-17 19:34:30.729149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.729871"], ["updated_at", "2023-02-17 19:34:30.729871"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.730665"], ["updated_at", "2023-02-17 19:34:30.730665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.731412"], ["updated_at", "2023-02-17 19:34:30.731412"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.732129"], ["updated_at", "2023-02-17 19:34:30.732129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:30.732870"], ["updated_at", "2023-02-17 19:34:30.732870"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.749806"], ["updated_at", "2023-02-17 19:34:30.749806"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.750792"], ["updated_at", "2023-02-17 19:34:30.750792"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.751586"], ["updated_at", "2023-02-17 19:34:30.751586"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.752345"], ["updated_at", "2023-02-17 19:34:30.752345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.753104"], ["updated_at", "2023-02-17 19:34:30.753104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.753812"], ["updated_at", "2023-02-17 19:34:30.753812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.754496"], ["updated_at", "2023-02-17 19:34:30.754496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.755211"], ["updated_at", "2023-02-17 19:34:30.755211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.755952"], ["updated_at", "2023-02-17 19:34:30.755952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.756652"], ["updated_at", "2023-02-17 19:34:30.756652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.757334"], ["updated_at", "2023-02-17 19:34:30.757334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.758121"], ["updated_at", "2023-02-17 19:34:30.758121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.758889"], ["updated_at", "2023-02-17 19:34:30.758889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.759672"], ["updated_at", "2023-02-17 19:34:30.759672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.760671"], ["updated_at", "2023-02-17 19:34:30.760671"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:30.761496"], ["updated_at", "2023-02-17 19:34:30.761496"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.777288"], ["updated_at", "2023-02-17 19:34:30.777288"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.778488"], ["updated_at", "2023-02-17 19:34:30.778488"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.779321"], ["updated_at", "2023-02-17 19:34:30.779321"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.780027"], ["updated_at", "2023-02-17 19:34:30.780027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.780772"], ["updated_at", "2023-02-17 19:34:30.780772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.781561"], ["updated_at", "2023-02-17 19:34:30.781561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.782421"], ["updated_at", "2023-02-17 19:34:30.782421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.783133"], ["updated_at", "2023-02-17 19:34:30.783133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.783806"], ["updated_at", "2023-02-17 19:34:30.783806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.784495"], ["updated_at", "2023-02-17 19:34:30.784495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.785271"], ["updated_at", "2023-02-17 19:34:30.785271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.786022"], ["updated_at", "2023-02-17 19:34:30.786022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.786731"], ["updated_at", "2023-02-17 19:34:30.786731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.787415"], ["updated_at", "2023-02-17 19:34:30.787415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.788181"], ["updated_at", "2023-02-17 19:34:30.788181"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:30.788991"], ["updated_at", "2023-02-17 19:34:30.788991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.804782"], ["updated_at", "2023-02-17 19:34:30.804782"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.805766"], ["updated_at", "2023-02-17 19:34:30.805766"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.806575"], ["updated_at", "2023-02-17 19:34:30.806575"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.807292"], ["updated_at", "2023-02-17 19:34:30.807292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.808128"], ["updated_at", "2023-02-17 19:34:30.808128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.808952"], ["updated_at", "2023-02-17 19:34:30.808952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.809665"], ["updated_at", "2023-02-17 19:34:30.809665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.810354"], ["updated_at", "2023-02-17 19:34:30.810354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.811038"], ["updated_at", "2023-02-17 19:34:30.811038"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.811788"], ["updated_at", "2023-02-17 19:34:30.811788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.812523"], ["updated_at", "2023-02-17 19:34:30.812523"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.813249"], ["updated_at", "2023-02-17 19:34:30.813249"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.813950"], ["updated_at", "2023-02-17 19:34:30.813950"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.814639"], ["updated_at", "2023-02-17 19:34:30.814639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.815321"], ["updated_at", "2023-02-17 19:34:30.815321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:30.816026"], ["updated_at", "2023-02-17 19:34:30.816026"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.831640"], ["updated_at", "2023-02-17 19:34:30.831640"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.832629"], ["updated_at", "2023-02-17 19:34:30.832629"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.833430"], ["updated_at", "2023-02-17 19:34:30.833430"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.834193"], ["updated_at", "2023-02-17 19:34:30.834193"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.835038"], ["updated_at", "2023-02-17 19:34:30.835038"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.835898"], ["updated_at", "2023-02-17 19:34:30.835898"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.836689"], ["updated_at", "2023-02-17 19:34:30.836689"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.837414"], ["updated_at", "2023-02-17 19:34:30.837414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.838184"], ["updated_at", "2023-02-17 19:34:30.838184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.838978"], ["updated_at", "2023-02-17 19:34:30.838978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.839676"], ["updated_at", "2023-02-17 19:34:30.839676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.840365"], ["updated_at", "2023-02-17 19:34:30.840365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.841051"], ["updated_at", "2023-02-17 19:34:30.841051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.841898"], ["updated_at", "2023-02-17 19:34:30.841898"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.842741"], ["updated_at", "2023-02-17 19:34:30.842741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:30.843516"], ["updated_at", "2023-02-17 19:34:30.843516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:30.859056"], ["updated_at", "2023-02-17 19:34:30.859056"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:30.860046"], ["updated_at", "2023-02-17 19:34:30.860046"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:30.860816"], ["updated_at", "2023-02-17 19:34:30.860816"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:30.861520"], ["updated_at", "2023-02-17 19:34:30.861520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.862272"], ["updated_at", "2023-02-17 19:34:30.862272"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.863010"], ["updated_at", "2023-02-17 19:34:30.863010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.863702"], ["updated_at", "2023-02-17 19:34:30.863702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.864465"], ["updated_at", "2023-02-17 19:34:30.864465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.865228"], ["updated_at", "2023-02-17 19:34:30.865228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.865928"], ["updated_at", "2023-02-17 19:34:30.865928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.866593"], ["updated_at", "2023-02-17 19:34:30.866593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.867275"], ["updated_at", "2023-02-17 19:34:30.867275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.867992"], ["updated_at", "2023-02-17 19:34:30.867992"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.868863"], ["updated_at", "2023-02-17 19:34:30.868863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.869607"], ["updated_at", "2023-02-17 19:34:30.869607"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:30.870324"], ["updated_at", "2023-02-17 19:34:30.870324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:34:30 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 15ms (Views: 11.2ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:30.894488"], ["updated_at", "2023-02-17 19:34:30.894488"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:34:30.895971"], ["updated_at", "2023-02-17 19:34:30.895971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:34:30.898992"], ["updated_at", "2023-02-17 19:34:30.898992"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:34:30.900192"], ["updated_at", "2023-02-17 19:34:30.900192"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:34:30.902969"], ["updated_at", "2023-02-17 19:34:30.902969"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:34:30.904141"], ["updated_at", "2023-02-17 19:34:30.904141"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:34:30.906204"], ["updated_at", "2023-02-17 19:34:30.906204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:34:30.907620"], ["updated_at", "2023-02-17 19:34:30.907620"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:34:30.909491"], ["updated_at", "2023-02-17 19:34:30.909491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:34:30.910914"], ["updated_at", "2023-02-17 19:34:30.910914"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:34:30.912310"], ["updated_at", "2023-02-17 19:34:30.912310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:34:30.913575"], ["updated_at", "2023-02-17 19:34:30.913575"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:34:30.915040"], ["updated_at", "2023-02-17 19:34:30.915040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:34:30.916246"], ["updated_at", "2023-02-17 19:34:30.916246"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:34:30.917748"], ["updated_at", "2023-02-17 19:34:30.917748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:34:30.919099"], ["updated_at", "2023-02-17 19:34:30.919099"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:34:30.920531"], ["updated_at", "2023-02-17 19:34:30.920531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:34:30.921750"], ["updated_at", "2023-02-17 19:34:30.921750"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:34:30.923148"], ["updated_at", "2023-02-17 19:34:30.923148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:34:30.924317"], ["updated_at", "2023-02-17 19:34:30.924317"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:34:30.925785"], ["updated_at", "2023-02-17 19:34:30.925785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:34:30.926964"], ["updated_at", "2023-02-17 19:34:30.926964"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:34:30.928308"], ["updated_at", "2023-02-17 19:34:30.928308"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:34:30.929652"], ["updated_at", "2023-02-17 19:34:30.929652"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:34:30.931133"], ["updated_at", "2023-02-17 19:34:30.931133"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:34:30.932521"], ["updated_at", "2023-02-17 19:34:30.932521"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:34:30.933992"], ["updated_at", "2023-02-17 19:34:30.933992"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:34:30.935177"], ["updated_at", "2023-02-17 19:34:30.935177"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:34:30.936691"], ["updated_at", "2023-02-17 19:34:30.936691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:34:30.938009"], ["updated_at", "2023-02-17 19:34:30.938009"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:34:30.939541"], ["updated_at", "2023-02-17 19:34:30.939541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:34:30.940842"], ["updated_at", "2023-02-17 19:34:30.940842"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:34:30.942246"], ["updated_at", "2023-02-17 19:34:30.942246"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:34:30.943521"], ["updated_at", "2023-02-17 19:34:30.943521"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:34:30.945069"], ["updated_at", "2023-02-17 19:34:30.945069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:34:30.946321"], ["updated_at", "2023-02-17 19:34:30.946321"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:34:30.947780"], ["updated_at", "2023-02-17 19:34:30.947780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:34:30.949118"], ["updated_at", "2023-02-17 19:34:30.949118"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:34:30.950570"], ["updated_at", "2023-02-17 19:34:30.950570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:34:30.951814"], ["updated_at", "2023-02-17 19:34:30.951814"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:34:30.953214"], ["updated_at", "2023-02-17 19:34:30.953214"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:34:30.954400"], ["updated_at", "2023-02-17 19:34:30.954400"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:34:30.955870"], ["updated_at", "2023-02-17 19:34:30.955870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.957055"], ["updated_at", "2023-02-17 19:34:30.957055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:34:30.958423"], ["updated_at", "2023-02-17 19:34:30.958423"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:34:30.959776"], ["updated_at", "2023-02-17 19:34:30.959776"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:34:30.961199"], ["updated_at", "2023-02-17 19:34:30.961199"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:34:30.962460"], ["updated_at", "2023-02-17 19:34:30.962460"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:34:30.963909"], ["updated_at", "2023-02-17 19:34:30.963909"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:34:30.965084"], ["updated_at", "2023-02-17 19:34:30.965084"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:34:30.966450"], ["updated_at", "2023-02-17 19:34:30.966450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:34:30.967647"], ["updated_at", "2023-02-17 19:34:30.967647"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:34:30.969125"], ["updated_at", "2023-02-17 19:34:30.969125"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:34:30.970482"], ["updated_at", "2023-02-17 19:34:30.970482"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:34:30.971940"], ["updated_at", "2023-02-17 19:34:30.971940"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:34:30.973128"], ["updated_at", "2023-02-17 19:34:30.973128"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:34:30.974491"], ["updated_at", "2023-02-17 19:34:30.974491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:34:30.975670"], ["updated_at", "2023-02-17 19:34:30.975670"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:34:30.977009"], ["updated_at", "2023-02-17 19:34:30.977009"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:34:30.978345"], ["updated_at", "2023-02-17 19:34:30.978345"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:34:30.979866"], ["updated_at", "2023-02-17 19:34:30.979866"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:34:30.981131"], ["updated_at", "2023-02-17 19:34:30.981131"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:34:30.982825"], ["updated_at", "2023-02-17 19:34:30.982825"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.984196"], ["updated_at", "2023-02-17 19:34:30.984196"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:34:30.985679"], ["updated_at", "2023-02-17 19:34:30.985679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:34:30.986921"], ["updated_at", "2023-02-17 19:34:30.986921"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:34:30.988401"], ["updated_at", "2023-02-17 19:34:30.988401"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:34:30.989938"], ["updated_at", "2023-02-17 19:34:30.989938"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:34:30.991633"], ["updated_at", "2023-02-17 19:34:30.991633"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:34:30.992913"], ["updated_at", "2023-02-17 19:34:30.992913"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:34:30.994299"], ["updated_at", "2023-02-17 19:34:30.994299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:34:30.995504"], ["updated_at", "2023-02-17 19:34:30.995504"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:34:30.996892"], ["updated_at", "2023-02-17 19:34:30.996892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:34:30.998068"], ["updated_at", "2023-02-17 19:34:30.998068"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:34:30.999962"], ["updated_at", "2023-02-17 19:34:30.999962"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:34:31.001569"], ["updated_at", "2023-02-17 19:34:31.001569"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:34:31.003083"], ["updated_at", "2023-02-17 19:34:31.003083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:34:31.004291"], ["updated_at", "2023-02-17 19:34:31.004291"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:34:31.005663"], ["updated_at", "2023-02-17 19:34:31.005663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:34:31.006984"], ["updated_at", "2023-02-17 19:34:31.006984"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:34:31.008376"], ["updated_at", "2023-02-17 19:34:31.008376"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:34:31.009777"], ["updated_at", "2023-02-17 19:34:31.009777"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:34:31.011292"], ["updated_at", "2023-02-17 19:34:31.011292"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:34:31.012476"], ["updated_at", "2023-02-17 19:34:31.012476"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:34:31.013908"], ["updated_at", "2023-02-17 19:34:31.013908"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:34:31.015168"], ["updated_at", "2023-02-17 19:34:31.015168"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:34:31.016912"], ["updated_at", "2023-02-17 19:34:31.016912"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:34:31.018305"], ["updated_at", "2023-02-17 19:34:31.018305"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:34:31.020069"], ["updated_at", "2023-02-17 19:34:31.020069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:34:31.021389"], ["updated_at", "2023-02-17 19:34:31.021389"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:34:31.022895"], ["updated_at", "2023-02-17 19:34:31.022895"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:34:31.024092"], ["updated_at", "2023-02-17 19:34:31.024092"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:34:31.025480"], ["updated_at", "2023-02-17 19:34:31.025480"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:34:31.026698"], ["updated_at", "2023-02-17 19:34:31.026698"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:34:31.028129"], ["updated_at", "2023-02-17 19:34:31.028129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:34:31.029673"], ["updated_at", "2023-02-17 19:34:31.029673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:34:31.030998"], ["updated_at", "2023-02-17 19:34:31.030998"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:34:31.032564"], ["updated_at", "2023-02-17 19:34:31.032564"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:34:31.034309"], ["updated_at", "2023-02-17 19:34:31.034309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:34:31.035447"], ["updated_at", "2023-02-17 19:34:31.035447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:34:31.036498"], ["updated_at", "2023-02-17 19:34:31.036498"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:31.048354"], ["updated_at", "2023-02-17 19:34:31.048354"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:31.050075"], ["updated_at", "2023-02-17 19:34:31.050075"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:31.051254"], ["updated_at", "2023-02-17 19:34:31.051254"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.052212"], ["updated_at", "2023-02-17 19:34:31.052212"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.053018"], ["updated_at", "2023-02-17 19:34:31.053018"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.053730"], ["updated_at", "2023-02-17 19:34:31.053730"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.054414"], ["updated_at", "2023-02-17 19:34:31.054414"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.055083"], ["updated_at", "2023-02-17 19:34:31.055083"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:31.055844"], ["updated_at", "2023-02-17 19:34:31.055844"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.056676"], ["updated_at", "2023-02-17 19:34:31.056676"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.057495"], ["updated_at", "2023-02-17 19:34:31.057495"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.058358"], ["updated_at", "2023-02-17 19:34:31.058358"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.059519"], ["updated_at", "2023-02-17 19:34:31.059519"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.060396"], ["updated_at", "2023-02-17 19:34:31.060396"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.061167"], ["updated_at", "2023-02-17 19:34:31.061167"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.061911"], ["updated_at", "2023-02-17 19:34:31.061911"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.062639"], ["updated_at", "2023-02-17 19:34:31.062639"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.063369"], ["updated_at", "2023-02-17 19:34:31.063369"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.064104"], ["updated_at", "2023-02-17 19:34:31.064104"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.064814"], ["updated_at", "2023-02-17 19:34:31.064814"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.065707"], ["updated_at", "2023-02-17 19:34:31.065707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:31.077591"], ["updated_at", "2023-02-17 19:34:31.077591"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:31.079062"], ["updated_at", "2023-02-17 19:34:31.079062"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:31.080149"], ["updated_at", "2023-02-17 19:34:31.080149"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.080997"], ["updated_at", "2023-02-17 19:34:31.080997"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.081787"], ["updated_at", "2023-02-17 19:34:31.081787"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.082553"], ["updated_at", "2023-02-17 19:34:31.082553"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.083278"], ["updated_at", "2023-02-17 19:34:31.083278"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.083954"], ["updated_at", "2023-02-17 19:34:31.083954"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:31.084707"], ["updated_at", "2023-02-17 19:34:31.084707"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.085568"], ["updated_at", "2023-02-17 19:34:31.085568"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.086393"], ["updated_at", "2023-02-17 19:34:31.086393"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.087124"], ["updated_at", "2023-02-17 19:34:31.087124"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.087833"], ["updated_at", "2023-02-17 19:34:31.087833"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.088769"], ["updated_at", "2023-02-17 19:34:31.088769"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.089896"], ["updated_at", "2023-02-17 19:34:31.089896"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.090741"], ["updated_at", "2023-02-17 19:34:31.090741"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.091503"], ["updated_at", "2023-02-17 19:34:31.091503"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.092236"], ["updated_at", "2023-02-17 19:34:31.092236"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.092975"], ["updated_at", "2023-02-17 19:34:31.092975"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.093711"], ["updated_at", "2023-02-17 19:34:31.093711"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.094441"], ["updated_at", "2023-02-17 19:34:31.094441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.111033"], ["updated_at", "2023-02-17 19:34:31.111033"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.112171"], ["updated_at", "2023-02-17 19:34:31.112171"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.113104"], ["updated_at", "2023-02-17 19:34:31.113104"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.113917"], ["updated_at", "2023-02-17 19:34:31.113917"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.114789"], ["updated_at", "2023-02-17 19:34:31.114789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.115808"], ["updated_at", "2023-02-17 19:34:31.115808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.116820"], ["updated_at", "2023-02-17 19:34:31.116820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.117623"], ["updated_at", "2023-02-17 19:34:31.117623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.118425"], ["updated_at", "2023-02-17 19:34:31.118425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.119488"], ["updated_at", "2023-02-17 19:34:31.119488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.120415"], ["updated_at", "2023-02-17 19:34:31.120415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.121165"], ["updated_at", "2023-02-17 19:34:31.121165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.121859"], ["updated_at", "2023-02-17 19:34:31.121859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.122564"], ["updated_at", "2023-02-17 19:34:31.122564"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.123279"], ["updated_at", "2023-02-17 19:34:31.123279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.123991"], ["updated_at", "2023-02-17 19:34:31.123991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.140553"], ["updated_at", "2023-02-17 19:34:31.140553"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.141545"], ["updated_at", "2023-02-17 19:34:31.141545"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.142378"], ["updated_at", "2023-02-17 19:34:31.142378"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.143137"], ["updated_at", "2023-02-17 19:34:31.143137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.143908"], ["updated_at", "2023-02-17 19:34:31.143908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.144642"], ["updated_at", "2023-02-17 19:34:31.144642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.145389"], ["updated_at", "2023-02-17 19:34:31.145389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.146208"], ["updated_at", "2023-02-17 19:34:31.146208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.147002"], ["updated_at", "2023-02-17 19:34:31.147002"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.147772"], ["updated_at", "2023-02-17 19:34:31.147772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.148729"], ["updated_at", "2023-02-17 19:34:31.148729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.149704"], ["updated_at", "2023-02-17 19:34:31.149704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.150513"], ["updated_at", "2023-02-17 19:34:31.150513"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.151223"], ["updated_at", "2023-02-17 19:34:31.151223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.151911"], ["updated_at", "2023-02-17 19:34:31.151911"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.152603"], ["updated_at", "2023-02-17 19:34:31.152603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.168263"], ["updated_at", "2023-02-17 19:34:31.168263"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.169383"], ["updated_at", "2023-02-17 19:34:31.169383"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.170149"], ["updated_at", "2023-02-17 19:34:31.170149"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.170851"], ["updated_at", "2023-02-17 19:34:31.170851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.171611"], ["updated_at", "2023-02-17 19:34:31.171611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.172367"], ["updated_at", "2023-02-17 19:34:31.172367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.173128"], ["updated_at", "2023-02-17 19:34:31.173128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.173855"], ["updated_at", "2023-02-17 19:34:31.173855"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.174558"], ["updated_at", "2023-02-17 19:34:31.174558"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.175256"], ["updated_at", "2023-02-17 19:34:31.175256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.175943"], ["updated_at", "2023-02-17 19:34:31.175943"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.176675"], ["updated_at", "2023-02-17 19:34:31.176675"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.177404"], ["updated_at", "2023-02-17 19:34:31.177404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.178108"], ["updated_at", "2023-02-17 19:34:31.178108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.178912"], ["updated_at", "2023-02-17 19:34:31.178912"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.179635"], ["updated_at", "2023-02-17 19:34:31.179635"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.195685"], ["updated_at", "2023-02-17 19:34:31.195685"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.196657"], ["updated_at", "2023-02-17 19:34:31.196657"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.197419"], ["updated_at", "2023-02-17 19:34:31.197419"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.198123"], ["updated_at", "2023-02-17 19:34:31.198123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.199014"], ["updated_at", "2023-02-17 19:34:31.199014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.199918"], ["updated_at", "2023-02-17 19:34:31.199918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.200668"], ["updated_at", "2023-02-17 19:34:31.200668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.201396"], ["updated_at", "2023-02-17 19:34:31.201396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.202083"], ["updated_at", "2023-02-17 19:34:31.202083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.202881"], ["updated_at", "2023-02-17 19:34:31.202881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.203638"], ["updated_at", "2023-02-17 19:34:31.203638"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.204373"], ["updated_at", "2023-02-17 19:34:31.204373"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.205104"], ["updated_at", "2023-02-17 19:34:31.205104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.205811"], ["updated_at", "2023-02-17 19:34:31.205811"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.206537"], ["updated_at", "2023-02-17 19:34:31.206537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.207259"], ["updated_at", "2023-02-17 19:34:31.207259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.229709"], ["updated_at", "2023-02-17 19:34:31.229709"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.230687"], ["updated_at", "2023-02-17 19:34:31.230687"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.231426"], ["updated_at", "2023-02-17 19:34:31.231426"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.232290"], ["updated_at", "2023-02-17 19:34:31.232290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.233145"], ["updated_at", "2023-02-17 19:34:31.233145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.233867"], ["updated_at", "2023-02-17 19:34:31.233867"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.234593"], ["updated_at", "2023-02-17 19:34:31.234593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.235293"], ["updated_at", "2023-02-17 19:34:31.235293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.235979"], ["updated_at", "2023-02-17 19:34:31.235979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.236680"], ["updated_at", "2023-02-17 19:34:31.236680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.237390"], ["updated_at", "2023-02-17 19:34:31.237390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.238379"], ["updated_at", "2023-02-17 19:34:31.238379"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.239305"], ["updated_at", "2023-02-17 19:34:31.239305"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.240135"], ["updated_at", "2023-02-17 19:34:31.240135"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.240857"], ["updated_at", "2023-02-17 19:34:31.240857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.241580"], ["updated_at", "2023-02-17 19:34:31.241580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.257108"], ["updated_at", "2023-02-17 19:34:31.257108"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.258173"], ["updated_at", "2023-02-17 19:34:31.258173"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.258948"], ["updated_at", "2023-02-17 19:34:31.258948"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.259660"], ["updated_at", "2023-02-17 19:34:31.259660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.260403"], ["updated_at", "2023-02-17 19:34:31.260403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.261105"], ["updated_at", "2023-02-17 19:34:31.261105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.261797"], ["updated_at", "2023-02-17 19:34:31.261797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.262499"], ["updated_at", "2023-02-17 19:34:31.262499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.263187"], ["updated_at", "2023-02-17 19:34:31.263187"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.263903"], ["updated_at", "2023-02-17 19:34:31.263903"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.264582"], ["updated_at", "2023-02-17 19:34:31.264582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.265459"], ["updated_at", "2023-02-17 19:34:31.265459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.266207"], ["updated_at", "2023-02-17 19:34:31.266207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.266915"], ["updated_at", "2023-02-17 19:34:31.266915"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.267672"], ["updated_at", "2023-02-17 19:34:31.267672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.268411"], ["updated_at", "2023-02-17 19:34:31.268411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:34:31 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:31.286085"], ["updated_at", "2023-02-17 19:34:31.286085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:34:31.287494"], ["updated_at", "2023-02-17 19:34:31.287494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:34:31.290417"], ["updated_at", "2023-02-17 19:34:31.290417"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:34:31.291583"], ["updated_at", "2023-02-17 19:34:31.291583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:34:31.294310"], ["updated_at", "2023-02-17 19:34:31.294310"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:34:31.295464"], ["updated_at", "2023-02-17 19:34:31.295464"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:34:31.297472"], ["updated_at", "2023-02-17 19:34:31.297472"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:34:31.299037"], ["updated_at", "2023-02-17 19:34:31.299037"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:34:31.300672"], ["updated_at", "2023-02-17 19:34:31.300672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:34:31.301990"], ["updated_at", "2023-02-17 19:34:31.301990"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:34:31.303381"], ["updated_at", "2023-02-17 19:34:31.303381"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:34:31.304592"], ["updated_at", "2023-02-17 19:34:31.304592"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:34:31.305949"], ["updated_at", "2023-02-17 19:34:31.305949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:34:31.307097"], ["updated_at", "2023-02-17 19:34:31.307097"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:34:31.308581"], ["updated_at", "2023-02-17 19:34:31.308581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:34:31.309758"], ["updated_at", "2023-02-17 19:34:31.309758"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:34:31.311066"], ["updated_at", "2023-02-17 19:34:31.311066"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:34:31.312244"], ["updated_at", "2023-02-17 19:34:31.312244"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:34:31.313597"], ["updated_at", "2023-02-17 19:34:31.313597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:34:31.314870"], ["updated_at", "2023-02-17 19:34:31.314870"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:34:31.316450"], ["updated_at", "2023-02-17 19:34:31.316450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:34:31.317650"], ["updated_at", "2023-02-17 19:34:31.317650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:34:31.319155"], ["updated_at", "2023-02-17 19:34:31.319155"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:34:31.320339"], ["updated_at", "2023-02-17 19:34:31.320339"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:34:31.321695"], ["updated_at", "2023-02-17 19:34:31.321695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:34:31.322862"], ["updated_at", "2023-02-17 19:34:31.322862"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:34:31.324209"], ["updated_at", "2023-02-17 19:34:31.324209"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:34:31.325384"], ["updated_at", "2023-02-17 19:34:31.325384"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:34:31.326717"], ["updated_at", "2023-02-17 19:34:31.326717"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:34:31.327980"], ["updated_at", "2023-02-17 19:34:31.327980"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:34:31.329320"], ["updated_at", "2023-02-17 19:34:31.329320"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:34:31.330482"], ["updated_at", "2023-02-17 19:34:31.330482"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:34:31.331827"], ["updated_at", "2023-02-17 19:34:31.331827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:34:31.333144"], ["updated_at", "2023-02-17 19:34:31.333144"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:34:31.334933"], ["updated_at", "2023-02-17 19:34:31.334933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:34:31.336180"], ["updated_at", "2023-02-17 19:34:31.336180"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:34:31.337635"], ["updated_at", "2023-02-17 19:34:31.337635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:34:31.338858"], ["updated_at", "2023-02-17 19:34:31.338858"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:34:31.340188"], ["updated_at", "2023-02-17 19:34:31.340188"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:34:31.341355"], ["updated_at", "2023-02-17 19:34:31.341355"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:34:31.342704"], ["updated_at", "2023-02-17 19:34:31.342704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:34:31.343846"], ["updated_at", "2023-02-17 19:34:31.343846"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:34:31.345191"], ["updated_at", "2023-02-17 19:34:31.345191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:34:31.346380"], ["updated_at", "2023-02-17 19:34:31.346380"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:34:31.347842"], ["updated_at", "2023-02-17 19:34:31.347842"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:34:31.349031"], ["updated_at", "2023-02-17 19:34:31.349031"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:34:31.350599"], ["updated_at", "2023-02-17 19:34:31.350599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:34:31.351802"], ["updated_at", "2023-02-17 19:34:31.351802"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:34:31.353130"], ["updated_at", "2023-02-17 19:34:31.353130"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:34:31.354304"], ["updated_at", "2023-02-17 19:34:31.354304"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:34:31.355640"], ["updated_at", "2023-02-17 19:34:31.355640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:34:31.356775"], ["updated_at", "2023-02-17 19:34:31.356775"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:34:31.358228"], ["updated_at", "2023-02-17 19:34:31.358228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:34:31.359402"], ["updated_at", "2023-02-17 19:34:31.359402"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:34:31.360750"], ["updated_at", "2023-02-17 19:34:31.360750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:34:31.361945"], ["updated_at", "2023-02-17 19:34:31.361945"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:34:31.363276"], ["updated_at", "2023-02-17 19:34:31.363276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:34:31.364481"], ["updated_at", "2023-02-17 19:34:31.364481"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:34:31.365908"], ["updated_at", "2023-02-17 19:34:31.365908"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:34:31.367194"], ["updated_at", "2023-02-17 19:34:31.367194"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:34:31.368619"], ["updated_at", "2023-02-17 19:34:31.368619"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:34:31.369791"], ["updated_at", "2023-02-17 19:34:31.369791"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:34:31.371134"], ["updated_at", "2023-02-17 19:34:31.371134"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:34:31.372306"], ["updated_at", "2023-02-17 19:34:31.372306"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:34:31.373663"], ["updated_at", "2023-02-17 19:34:31.373663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:34:31.374819"], ["updated_at", "2023-02-17 19:34:31.374819"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:34:31.376189"], ["updated_at", "2023-02-17 19:34:31.376189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:34:31.377419"], ["updated_at", "2023-02-17 19:34:31.377419"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:34:31.378843"], ["updated_at", "2023-02-17 19:34:31.378843"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:34:31.380016"], ["updated_at", "2023-02-17 19:34:31.380016"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:34:31.381373"], ["updated_at", "2023-02-17 19:34:31.381373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:34:31.382566"], ["updated_at", "2023-02-17 19:34:31.382566"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:34:31.383950"], ["updated_at", "2023-02-17 19:34:31.383950"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:34:31.385110"], ["updated_at", "2023-02-17 19:34:31.385110"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:34:31.386463"], ["updated_at", "2023-02-17 19:34:31.386463"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:34:31.387719"], ["updated_at", "2023-02-17 19:34:31.387719"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:34:31.389100"], ["updated_at", "2023-02-17 19:34:31.389100"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:34:31.390255"], ["updated_at", "2023-02-17 19:34:31.390255"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:34:31.391611"], ["updated_at", "2023-02-17 19:34:31.391611"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:34:31.392748"], ["updated_at", "2023-02-17 19:34:31.392748"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:34:31.394083"], ["updated_at", "2023-02-17 19:34:31.394083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:34:31.395250"], ["updated_at", "2023-02-17 19:34:31.395250"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:34:31.396620"], ["updated_at", "2023-02-17 19:34:31.396620"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:34:31.397881"], ["updated_at", "2023-02-17 19:34:31.397881"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:34:31.399298"], ["updated_at", "2023-02-17 19:34:31.399298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:34:31.400470"], ["updated_at", "2023-02-17 19:34:31.400470"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:34:31.401822"], ["updated_at", "2023-02-17 19:34:31.401822"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:34:31.402971"], ["updated_at", "2023-02-17 19:34:31.402971"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:34:31.404296"], ["updated_at", "2023-02-17 19:34:31.404296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:34:31.405508"], ["updated_at", "2023-02-17 19:34:31.405508"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:34:31.406888"], ["updated_at", "2023-02-17 19:34:31.406888"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:34:31.408206"], ["updated_at", "2023-02-17 19:34:31.408206"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:34:31.410003"], ["updated_at", "2023-02-17 19:34:31.410003"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:34:31.411397"], ["updated_at", "2023-02-17 19:34:31.411397"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:34:31.412932"], ["updated_at", "2023-02-17 19:34:31.412932"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:34:31.414258"], ["updated_at", "2023-02-17 19:34:31.414258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:34:31.415737"], ["updated_at", "2023-02-17 19:34:31.415737"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:34:31.417478"], ["updated_at", "2023-02-17 19:34:31.417478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:34:31.419205"], ["updated_at", "2023-02-17 19:34:31.419205"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:34:31.420556"], ["updated_at", "2023-02-17 19:34:31.420556"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:34:31.421759"], ["updated_at", "2023-02-17 19:34:31.421759"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:31.433263"], ["updated_at", "2023-02-17 19:34:31.433263"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:31.434576"], ["updated_at", "2023-02-17 19:34:31.434576"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:31.435549"], ["updated_at", "2023-02-17 19:34:31.435549"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.436406"], ["updated_at", "2023-02-17 19:34:31.436406"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.437239"], ["updated_at", "2023-02-17 19:34:31.437239"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.438057"], ["updated_at", "2023-02-17 19:34:31.438057"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.438766"], ["updated_at", "2023-02-17 19:34:31.438766"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.439459"], ["updated_at", "2023-02-17 19:34:31.439459"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:31.440179"], ["updated_at", "2023-02-17 19:34:31.440179"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.441026"], ["updated_at", "2023-02-17 19:34:31.441026"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.441853"], ["updated_at", "2023-02-17 19:34:31.441853"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.442594"], ["updated_at", "2023-02-17 19:34:31.442594"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.443310"], ["updated_at", "2023-02-17 19:34:31.443310"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.444036"], ["updated_at", "2023-02-17 19:34:31.444036"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.444757"], ["updated_at", "2023-02-17 19:34:31.444757"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.445499"], ["updated_at", "2023-02-17 19:34:31.445499"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.446314"], ["updated_at", "2023-02-17 19:34:31.446314"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.447074"], ["updated_at", "2023-02-17 19:34:31.447074"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.447904"], ["updated_at", "2023-02-17 19:34:31.447904"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.448672"], ["updated_at", "2023-02-17 19:34:31.448672"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.449451"], ["updated_at", "2023-02-17 19:34:31.449451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:31.460721"], ["updated_at", "2023-02-17 19:34:31.460721"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:31.461960"], ["updated_at", "2023-02-17 19:34:31.461960"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:31.462845"], ["updated_at", "2023-02-17 19:34:31.462845"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.463668"], ["updated_at", "2023-02-17 19:34:31.463668"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.464420"], ["updated_at", "2023-02-17 19:34:31.464420"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.465148"], ["updated_at", "2023-02-17 19:34:31.465148"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.465873"], ["updated_at", "2023-02-17 19:34:31.465873"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.466571"], ["updated_at", "2023-02-17 19:34:31.466571"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:31.467331"], ["updated_at", "2023-02-17 19:34:31.467331"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.468296"], ["updated_at", "2023-02-17 19:34:31.468296"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.469127"], ["updated_at", "2023-02-17 19:34:31.469127"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.469883"], ["updated_at", "2023-02-17 19:34:31.469883"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.470593"], ["updated_at", "2023-02-17 19:34:31.470593"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.471311"], ["updated_at", "2023-02-17 19:34:31.471311"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.472048"], ["updated_at", "2023-02-17 19:34:31.472048"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.472764"], ["updated_at", "2023-02-17 19:34:31.472764"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.473510"], ["updated_at", "2023-02-17 19:34:31.473510"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.474255"], ["updated_at", "2023-02-17 19:34:31.474255"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.474980"], ["updated_at", "2023-02-17 19:34:31.474980"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.475719"], ["updated_at", "2023-02-17 19:34:31.475719"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.476460"], ["updated_at", "2023-02-17 19:34:31.476460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.492176"], ["updated_at", "2023-02-17 19:34:31.492176"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.493266"], ["updated_at", "2023-02-17 19:34:31.493266"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.494110"], ["updated_at", "2023-02-17 19:34:31.494110"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.494837"], ["updated_at", "2023-02-17 19:34:31.494837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.495588"], ["updated_at", "2023-02-17 19:34:31.495588"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.496408"], ["updated_at", "2023-02-17 19:34:31.496408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.497228"], ["updated_at", "2023-02-17 19:34:31.497228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.498046"], ["updated_at", "2023-02-17 19:34:31.498046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.498810"], ["updated_at", "2023-02-17 19:34:31.498810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.499520"], ["updated_at", "2023-02-17 19:34:31.499520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.500210"], ["updated_at", "2023-02-17 19:34:31.500210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.500919"], ["updated_at", "2023-02-17 19:34:31.500919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.501609"], ["updated_at", "2023-02-17 19:34:31.501609"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.502308"], ["updated_at", "2023-02-17 19:34:31.502308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.503008"], ["updated_at", "2023-02-17 19:34:31.503008"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.503675"], ["updated_at", "2023-02-17 19:34:31.503675"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.519075"], ["updated_at", "2023-02-17 19:34:31.519075"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.520082"], ["updated_at", "2023-02-17 19:34:31.520082"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.520828"], ["updated_at", "2023-02-17 19:34:31.520828"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.521550"], ["updated_at", "2023-02-17 19:34:31.521550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.522362"], ["updated_at", "2023-02-17 19:34:31.522362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.523130"], ["updated_at", "2023-02-17 19:34:31.523130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.523843"], ["updated_at", "2023-02-17 19:34:31.523843"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.524539"], ["updated_at", "2023-02-17 19:34:31.524539"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.525248"], ["updated_at", "2023-02-17 19:34:31.525248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.525925"], ["updated_at", "2023-02-17 19:34:31.525925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.526636"], ["updated_at", "2023-02-17 19:34:31.526636"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.527334"], ["updated_at", "2023-02-17 19:34:31.527334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.528123"], ["updated_at", "2023-02-17 19:34:31.528123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.528833"], ["updated_at", "2023-02-17 19:34:31.528833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.529547"], ["updated_at", "2023-02-17 19:34:31.529547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.530248"], ["updated_at", "2023-02-17 19:34:31.530248"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.545439"], ["updated_at", "2023-02-17 19:34:31.545439"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.546456"], ["updated_at", "2023-02-17 19:34:31.546456"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.547191"], ["updated_at", "2023-02-17 19:34:31.547191"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.547964"], ["updated_at", "2023-02-17 19:34:31.547964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.548759"], ["updated_at", "2023-02-17 19:34:31.548759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.549542"], ["updated_at", "2023-02-17 19:34:31.549542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.550277"], ["updated_at", "2023-02-17 19:34:31.550277"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.551035"], ["updated_at", "2023-02-17 19:34:31.551035"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.551815"], ["updated_at", "2023-02-17 19:34:31.551815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.552563"], ["updated_at", "2023-02-17 19:34:31.552563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.553300"], ["updated_at", "2023-02-17 19:34:31.553300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.553994"], ["updated_at", "2023-02-17 19:34:31.553994"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.554700"], ["updated_at", "2023-02-17 19:34:31.554700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.555408"], ["updated_at", "2023-02-17 19:34:31.555408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.556091"], ["updated_at", "2023-02-17 19:34:31.556091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.556779"], ["updated_at", "2023-02-17 19:34:31.556779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.572241"], ["updated_at", "2023-02-17 19:34:31.572241"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.573256"], ["updated_at", "2023-02-17 19:34:31.573256"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.574012"], ["updated_at", "2023-02-17 19:34:31.574012"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.574737"], ["updated_at", "2023-02-17 19:34:31.574737"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.575498"], ["updated_at", "2023-02-17 19:34:31.575498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.576212"], ["updated_at", "2023-02-17 19:34:31.576212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.576957"], ["updated_at", "2023-02-17 19:34:31.576957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.577749"], ["updated_at", "2023-02-17 19:34:31.577749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.578484"], ["updated_at", "2023-02-17 19:34:31.578484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.579175"], ["updated_at", "2023-02-17 19:34:31.579175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.579845"], ["updated_at", "2023-02-17 19:34:31.579845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.580530"], ["updated_at", "2023-02-17 19:34:31.580530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.581242"], ["updated_at", "2023-02-17 19:34:31.581242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.582107"], ["updated_at", "2023-02-17 19:34:31.582107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.583107"], ["updated_at", "2023-02-17 19:34:31.583107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.583926"], ["updated_at", "2023-02-17 19:34:31.583926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.599549"], ["updated_at", "2023-02-17 19:34:31.599549"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.600523"], ["updated_at", "2023-02-17 19:34:31.600523"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.601291"], ["updated_at", "2023-02-17 19:34:31.601291"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.601992"], ["updated_at", "2023-02-17 19:34:31.601992"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.602758"], ["updated_at", "2023-02-17 19:34:31.602758"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.603496"], ["updated_at", "2023-02-17 19:34:31.603496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.604195"], ["updated_at", "2023-02-17 19:34:31.604195"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.604869"], ["updated_at", "2023-02-17 19:34:31.604869"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.605576"], ["updated_at", "2023-02-17 19:34:31.605576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.606342"], ["updated_at", "2023-02-17 19:34:31.606342"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.607124"], ["updated_at", "2023-02-17 19:34:31.607124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.607833"], ["updated_at", "2023-02-17 19:34:31.607833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.608540"], ["updated_at", "2023-02-17 19:34:31.608540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.609233"], ["updated_at", "2023-02-17 19:34:31.609233"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.609936"], ["updated_at", "2023-02-17 19:34:31.609936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.610655"], ["updated_at", "2023-02-17 19:34:31.610655"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.626222"], ["updated_at", "2023-02-17 19:34:31.626222"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.627232"], ["updated_at", "2023-02-17 19:34:31.627232"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.628025"], ["updated_at", "2023-02-17 19:34:31.628025"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.628800"], ["updated_at", "2023-02-17 19:34:31.628800"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.629593"], ["updated_at", "2023-02-17 19:34:31.629593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.630330"], ["updated_at", "2023-02-17 19:34:31.630330"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.631005"], ["updated_at", "2023-02-17 19:34:31.631005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.631720"], ["updated_at", "2023-02-17 19:34:31.631720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.632465"], ["updated_at", "2023-02-17 19:34:31.632465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.633417"], ["updated_at", "2023-02-17 19:34:31.633417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.634265"], ["updated_at", "2023-02-17 19:34:31.634265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.635039"], ["updated_at", "2023-02-17 19:34:31.635039"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.635764"], ["updated_at", "2023-02-17 19:34:31.635764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.636456"], ["updated_at", "2023-02-17 19:34:31.636456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.637134"], ["updated_at", "2023-02-17 19:34:31.637134"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:31.637978"], ["updated_at", "2023-02-17 19:34:31.637978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:34:31 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:31.646646"], ["updated_at", "2023-02-17 19:34:31.646646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:34:31.648195"], ["updated_at", "2023-02-17 19:34:31.648195"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:34:31.651199"], ["updated_at", "2023-02-17 19:34:31.651199"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:34:31.652393"], ["updated_at", "2023-02-17 19:34:31.652393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:34:31.655244"], ["updated_at", "2023-02-17 19:34:31.655244"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:34:31.656387"], ["updated_at", "2023-02-17 19:34:31.656387"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:34:31.658553"], ["updated_at", "2023-02-17 19:34:31.658553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:34:31.659938"], ["updated_at", "2023-02-17 19:34:31.659938"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:34:31.661592"], ["updated_at", "2023-02-17 19:34:31.661592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:34:31.662884"], ["updated_at", "2023-02-17 19:34:31.662884"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:34:31.664222"], ["updated_at", "2023-02-17 19:34:31.664222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:34:31.665440"], ["updated_at", "2023-02-17 19:34:31.665440"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:34:31.667037"], ["updated_at", "2023-02-17 19:34:31.667037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:34:31.668445"], ["updated_at", "2023-02-17 19:34:31.668445"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:34:31.669885"], ["updated_at", "2023-02-17 19:34:31.669885"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:34:31.671074"], ["updated_at", "2023-02-17 19:34:31.671074"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:34:31.672444"], ["updated_at", "2023-02-17 19:34:31.672444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:34:31.673647"], ["updated_at", "2023-02-17 19:34:31.673647"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:34:31.674978"], ["updated_at", "2023-02-17 19:34:31.674978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:34:31.676212"], ["updated_at", "2023-02-17 19:34:31.676212"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:34:31.677664"], ["updated_at", "2023-02-17 19:34:31.677664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:34:31.678873"], ["updated_at", "2023-02-17 19:34:31.678873"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:34:31.680270"], ["updated_at", "2023-02-17 19:34:31.680270"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:34:31.681443"], ["updated_at", "2023-02-17 19:34:31.681443"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:34:31.683009"], ["updated_at", "2023-02-17 19:34:31.683009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:34:31.684328"], ["updated_at", "2023-02-17 19:34:31.684328"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:34:31.685717"], ["updated_at", "2023-02-17 19:34:31.685717"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:34:31.686899"], ["updated_at", "2023-02-17 19:34:31.686899"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:34:31.688371"], ["updated_at", "2023-02-17 19:34:31.688371"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:34:31.689555"], ["updated_at", "2023-02-17 19:34:31.689555"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:34:31.690978"], ["updated_at", "2023-02-17 19:34:31.690978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:34:31.692207"], ["updated_at", "2023-02-17 19:34:31.692207"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:34:31.693582"], ["updated_at", "2023-02-17 19:34:31.693582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:34:31.694755"], ["updated_at", "2023-02-17 19:34:31.694755"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:34:31.696125"], ["updated_at", "2023-02-17 19:34:31.696125"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:34:31.697283"], ["updated_at", "2023-02-17 19:34:31.697283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:34:31.698848"], ["updated_at", "2023-02-17 19:34:31.698848"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:34:31.700272"], ["updated_at", "2023-02-17 19:34:31.700272"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:34:31.701687"], ["updated_at", "2023-02-17 19:34:31.701687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:34:31.702905"], ["updated_at", "2023-02-17 19:34:31.702905"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:34:31.704258"], ["updated_at", "2023-02-17 19:34:31.704258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:34:31.705422"], ["updated_at", "2023-02-17 19:34:31.705422"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:34:31.706791"], ["updated_at", "2023-02-17 19:34:31.706791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:34:31.708070"], ["updated_at", "2023-02-17 19:34:31.708070"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:34:31.709468"], ["updated_at", "2023-02-17 19:34:31.709468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:34:31.710667"], ["updated_at", "2023-02-17 19:34:31.710667"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:34:31.711999"], ["updated_at", "2023-02-17 19:34:31.711999"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:34:31.713191"], ["updated_at", "2023-02-17 19:34:31.713191"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:34:31.714611"], ["updated_at", "2023-02-17 19:34:31.714611"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:34:31.715955"], ["updated_at", "2023-02-17 19:34:31.715955"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:34:31.717423"], ["updated_at", "2023-02-17 19:34:31.717423"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:34:31.718748"], ["updated_at", "2023-02-17 19:34:31.718748"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:34:31.720126"], ["updated_at", "2023-02-17 19:34:31.720126"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:34:31.721389"], ["updated_at", "2023-02-17 19:34:31.721389"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:34:31.722845"], ["updated_at", "2023-02-17 19:34:31.722845"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:34:31.724026"], ["updated_at", "2023-02-17 19:34:31.724026"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:34:31.725388"], ["updated_at", "2023-02-17 19:34:31.725388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:34:31.726552"], ["updated_at", "2023-02-17 19:34:31.726552"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:34:31.727965"], ["updated_at", "2023-02-17 19:34:31.727965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:34:31.729279"], ["updated_at", "2023-02-17 19:34:31.729279"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:34:31.730669"], ["updated_at", "2023-02-17 19:34:31.730669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:34:31.731860"], ["updated_at", "2023-02-17 19:34:31.731860"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:34:31.733502"], ["updated_at", "2023-02-17 19:34:31.733502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:34:31.734777"], ["updated_at", "2023-02-17 19:34:31.734777"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:34:31.736242"], ["updated_at", "2023-02-17 19:34:31.736242"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:34:31.737428"], ["updated_at", "2023-02-17 19:34:31.737428"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:34:31.738908"], ["updated_at", "2023-02-17 19:34:31.738908"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:34:31.740113"], ["updated_at", "2023-02-17 19:34:31.740113"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:34:31.741475"], ["updated_at", "2023-02-17 19:34:31.741475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:34:31.742711"], ["updated_at", "2023-02-17 19:34:31.742711"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:34:31.744085"], ["updated_at", "2023-02-17 19:34:31.744085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:34:31.745236"], ["updated_at", "2023-02-17 19:34:31.745236"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:34:31.746584"], ["updated_at", "2023-02-17 19:34:31.746584"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:34:31.747830"], ["updated_at", "2023-02-17 19:34:31.747830"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:34:31.749431"], ["updated_at", "2023-02-17 19:34:31.749431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:34:31.750800"], ["updated_at", "2023-02-17 19:34:31.750800"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:34:31.752205"], ["updated_at", "2023-02-17 19:34:31.752205"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:34:31.753407"], ["updated_at", "2023-02-17 19:34:31.753407"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:34:31.754921"], ["updated_at", "2023-02-17 19:34:31.754921"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:34:31.756167"], ["updated_at", "2023-02-17 19:34:31.756167"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:34:31.757636"], ["updated_at", "2023-02-17 19:34:31.757636"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:34:31.758996"], ["updated_at", "2023-02-17 19:34:31.758996"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:34:31.760362"], ["updated_at", "2023-02-17 19:34:31.760362"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:34:31.761555"], ["updated_at", "2023-02-17 19:34:31.761555"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:34:31.762879"], ["updated_at", "2023-02-17 19:34:31.762879"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:34:31.764023"], ["updated_at", "2023-02-17 19:34:31.764023"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:34:31.765572"], ["updated_at", "2023-02-17 19:34:31.765572"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:34:31.766921"], ["updated_at", "2023-02-17 19:34:31.766921"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:34:31.768444"], ["updated_at", "2023-02-17 19:34:31.768444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:34:31.769731"], ["updated_at", "2023-02-17 19:34:31.769731"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:34:31.771114"], ["updated_at", "2023-02-17 19:34:31.771114"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:34:31.772347"], ["updated_at", "2023-02-17 19:34:31.772347"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:34:31.773813"], ["updated_at", "2023-02-17 19:34:31.773813"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:34:31.774982"], ["updated_at", "2023-02-17 19:34:31.774982"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:34:31.776357"], ["updated_at", "2023-02-17 19:34:31.776357"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:34:31.777447"], ["updated_at", "2023-02-17 19:34:31.777447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:34:31.778761"], ["updated_at", "2023-02-17 19:34:31.778761"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:34:31.780227"], ["updated_at", "2023-02-17 19:34:31.780227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:34:31.781780"], ["updated_at", "2023-02-17 19:34:31.781780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:34:31.783038"], ["updated_at", "2023-02-17 19:34:31.783038"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:34:31.784059"], ["updated_at", "2023-02-17 19:34:31.784059"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:31.795450"], ["updated_at", "2023-02-17 19:34:31.795450"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:31.796736"], ["updated_at", "2023-02-17 19:34:31.796736"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:31.797727"], ["updated_at", "2023-02-17 19:34:31.797727"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.798680"], ["updated_at", "2023-02-17 19:34:31.798680"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.799598"], ["updated_at", "2023-02-17 19:34:31.799598"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.800376"], ["updated_at", "2023-02-17 19:34:31.800376"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.801142"], ["updated_at", "2023-02-17 19:34:31.801142"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.801823"], ["updated_at", "2023-02-17 19:34:31.801823"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:31.802568"], ["updated_at", "2023-02-17 19:34:31.802568"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.803410"], ["updated_at", "2023-02-17 19:34:31.803410"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.804207"], ["updated_at", "2023-02-17 19:34:31.804207"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.804978"], ["updated_at", "2023-02-17 19:34:31.804978"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.805698"], ["updated_at", "2023-02-17 19:34:31.805698"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.806421"], ["updated_at", "2023-02-17 19:34:31.806421"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.807134"], ["updated_at", "2023-02-17 19:34:31.807134"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.807849"], ["updated_at", "2023-02-17 19:34:31.807849"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.808789"], ["updated_at", "2023-02-17 19:34:31.808789"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.809571"], ["updated_at", "2023-02-17 19:34:31.809571"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.810315"], ["updated_at", "2023-02-17 19:34:31.810315"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.811055"], ["updated_at", "2023-02-17 19:34:31.811055"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.811773"], ["updated_at", "2023-02-17 19:34:31.811773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:31.823240"], ["updated_at", "2023-02-17 19:34:31.823240"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:31.824500"], ["updated_at", "2023-02-17 19:34:31.824500"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:31.825404"], ["updated_at", "2023-02-17 19:34:31.825404"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.826256"], ["updated_at", "2023-02-17 19:34:31.826256"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.827025"], ["updated_at", "2023-02-17 19:34:31.827025"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.827751"], ["updated_at", "2023-02-17 19:34:31.827751"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.828538"], ["updated_at", "2023-02-17 19:34:31.828538"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:31.829233"], ["updated_at", "2023-02-17 19:34:31.829233"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:31.829965"], ["updated_at", "2023-02-17 19:34:31.829965"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.830850"], ["updated_at", "2023-02-17 19:34:31.830850"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.831680"], ["updated_at", "2023-02-17 19:34:31.831680"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.832567"], ["updated_at", "2023-02-17 19:34:31.832567"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.833365"], ["updated_at", "2023-02-17 19:34:31.833365"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.834176"], ["updated_at", "2023-02-17 19:34:31.834176"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.834957"], ["updated_at", "2023-02-17 19:34:31.834957"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.835744"], ["updated_at", "2023-02-17 19:34:31.835744"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.836549"], ["updated_at", "2023-02-17 19:34:31.836549"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.837337"], ["updated_at", "2023-02-17 19:34:31.837337"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.838165"], ["updated_at", "2023-02-17 19:34:31.838165"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.838971"], ["updated_at", "2023-02-17 19:34:31.838971"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:31.839739"], ["updated_at", "2023-02-17 19:34:31.839739"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.855775"], ["updated_at", "2023-02-17 19:34:31.855775"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.856920"], ["updated_at", "2023-02-17 19:34:31.856920"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.857792"], ["updated_at", "2023-02-17 19:34:31.857792"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.858608"], ["updated_at", "2023-02-17 19:34:31.858608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.859433"], ["updated_at", "2023-02-17 19:34:31.859433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.860250"], ["updated_at", "2023-02-17 19:34:31.860250"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.860980"], ["updated_at", "2023-02-17 19:34:31.860980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.861672"], ["updated_at", "2023-02-17 19:34:31.861672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.862362"], ["updated_at", "2023-02-17 19:34:31.862362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.863088"], ["updated_at", "2023-02-17 19:34:31.863088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.863787"], ["updated_at", "2023-02-17 19:34:31.863787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.864468"], ["updated_at", "2023-02-17 19:34:31.864468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.865170"], ["updated_at", "2023-02-17 19:34:31.865170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.865962"], ["updated_at", "2023-02-17 19:34:31.865962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.866761"], ["updated_at", "2023-02-17 19:34:31.866761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:31.867521"], ["updated_at", "2023-02-17 19:34:31.867521"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.883418"], ["updated_at", "2023-02-17 19:34:31.883418"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.884454"], ["updated_at", "2023-02-17 19:34:31.884454"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.885219"], ["updated_at", "2023-02-17 19:34:31.885219"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.885977"], ["updated_at", "2023-02-17 19:34:31.885977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.886750"], ["updated_at", "2023-02-17 19:34:31.886750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.887495"], ["updated_at", "2023-02-17 19:34:31.887495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.888225"], ["updated_at", "2023-02-17 19:34:31.888225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.889064"], ["updated_at", "2023-02-17 19:34:31.889064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.889818"], ["updated_at", "2023-02-17 19:34:31.889818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.890541"], ["updated_at", "2023-02-17 19:34:31.890541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.891237"], ["updated_at", "2023-02-17 19:34:31.891237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.891938"], ["updated_at", "2023-02-17 19:34:31.891938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.892669"], ["updated_at", "2023-02-17 19:34:31.892669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.893398"], ["updated_at", "2023-02-17 19:34:31.893398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.894125"], ["updated_at", "2023-02-17 19:34:31.894125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:31.894823"], ["updated_at", "2023-02-17 19:34:31.894823"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.914667"], ["updated_at", "2023-02-17 19:34:31.914667"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.915988"], ["updated_at", "2023-02-17 19:34:31.915988"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.916940"], ["updated_at", "2023-02-17 19:34:31.916940"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.918004"], ["updated_at", "2023-02-17 19:34:31.918004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.919138"], ["updated_at", "2023-02-17 19:34:31.919138"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.920252"], ["updated_at", "2023-02-17 19:34:31.920252"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.921408"], ["updated_at", "2023-02-17 19:34:31.921408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.922513"], ["updated_at", "2023-02-17 19:34:31.922513"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.923576"], ["updated_at", "2023-02-17 19:34:31.923576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.924477"], ["updated_at", "2023-02-17 19:34:31.924477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.925317"], ["updated_at", "2023-02-17 19:34:31.925317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.926157"], ["updated_at", "2023-02-17 19:34:31.926157"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.927024"], ["updated_at", "2023-02-17 19:34:31.927024"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.928099"], ["updated_at", "2023-02-17 19:34:31.928099"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.929273"], ["updated_at", "2023-02-17 19:34:31.929273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:31.930456"], ["updated_at", "2023-02-17 19:34:31.930456"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.953356"], ["updated_at", "2023-02-17 19:34:31.953356"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.954436"], ["updated_at", "2023-02-17 19:34:31.954436"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.955210"], ["updated_at", "2023-02-17 19:34:31.955210"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.955958"], ["updated_at", "2023-02-17 19:34:31.955958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.956818"], ["updated_at", "2023-02-17 19:34:31.956818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.957810"], ["updated_at", "2023-02-17 19:34:31.957810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.958794"], ["updated_at", "2023-02-17 19:34:31.958794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.959677"], ["updated_at", "2023-02-17 19:34:31.959677"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.960662"], ["updated_at", "2023-02-17 19:34:31.960662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.961512"], ["updated_at", "2023-02-17 19:34:31.961512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.962265"], ["updated_at", "2023-02-17 19:34:31.962265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.962952"], ["updated_at", "2023-02-17 19:34:31.962952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.963673"], ["updated_at", "2023-02-17 19:34:31.963673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.964376"], ["updated_at", "2023-02-17 19:34:31.964376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.965062"], ["updated_at", "2023-02-17 19:34:31.965062"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:31.966040"], ["updated_at", "2023-02-17 19:34:31.966040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:31.981904"], ["updated_at", "2023-02-17 19:34:31.981904"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:31.983203"], ["updated_at", "2023-02-17 19:34:31.983203"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:31.984091"], ["updated_at", "2023-02-17 19:34:31.984091"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:31.984832"], ["updated_at", "2023-02-17 19:34:31.984832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.985623"], ["updated_at", "2023-02-17 19:34:31.985623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.986354"], ["updated_at", "2023-02-17 19:34:31.986354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.987109"], ["updated_at", "2023-02-17 19:34:31.987109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.988014"], ["updated_at", "2023-02-17 19:34:31.988014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.988786"], ["updated_at", "2023-02-17 19:34:31.988786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.989508"], ["updated_at", "2023-02-17 19:34:31.989508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.990234"], ["updated_at", "2023-02-17 19:34:31.990234"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.990934"], ["updated_at", "2023-02-17 19:34:31.990934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.991669"], ["updated_at", "2023-02-17 19:34:31.991669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.992376"], ["updated_at", "2023-02-17 19:34:31.992376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.993067"], ["updated_at", "2023-02-17 19:34:31.993067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:31.993782"], ["updated_at", "2023-02-17 19:34:31.993782"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.009524"], ["updated_at", "2023-02-17 19:34:32.009524"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.010526"], ["updated_at", "2023-02-17 19:34:32.010526"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.011302"], ["updated_at", "2023-02-17 19:34:32.011302"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.012017"], ["updated_at", "2023-02-17 19:34:32.012017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.012784"], ["updated_at", "2023-02-17 19:34:32.012784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.013546"], ["updated_at", "2023-02-17 19:34:32.013546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.014236"], ["updated_at", "2023-02-17 19:34:32.014236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.014972"], ["updated_at", "2023-02-17 19:34:32.014972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.015931"], ["updated_at", "2023-02-17 19:34:32.015931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.016786"], ["updated_at", "2023-02-17 19:34:32.016786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.017553"], ["updated_at", "2023-02-17 19:34:32.017553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.018369"], ["updated_at", "2023-02-17 19:34:32.018369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.019097"], ["updated_at", "2023-02-17 19:34:32.019097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.019806"], ["updated_at", "2023-02-17 19:34:32.019806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.020535"], ["updated_at", "2023-02-17 19:34:32.020535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.021252"], ["updated_at", "2023-02-17 19:34:32.021252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:34:32 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:32.030117"], ["updated_at", "2023-02-17 19:34:32.030117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:34:32.031586"], ["updated_at", "2023-02-17 19:34:32.031586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:34:32.034669"], ["updated_at", "2023-02-17 19:34:32.034669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:34:32.035887"], ["updated_at", "2023-02-17 19:34:32.035887"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:34:32.038802"], ["updated_at", "2023-02-17 19:34:32.038802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:34:32.039991"], ["updated_at", "2023-02-17 19:34:32.039991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:34:32.042093"], ["updated_at", "2023-02-17 19:34:32.042093"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:34:32.043511"], ["updated_at", "2023-02-17 19:34:32.043511"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:34:32.045078"], ["updated_at", "2023-02-17 19:34:32.045078"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:34:32.046438"], ["updated_at", "2023-02-17 19:34:32.046438"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:34:32.047844"], ["updated_at", "2023-02-17 19:34:32.047844"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:34:32.049355"], ["updated_at", "2023-02-17 19:34:32.049355"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:34:32.050958"], ["updated_at", "2023-02-17 19:34:32.050958"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:34:32.052166"], ["updated_at", "2023-02-17 19:34:32.052166"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:34:32.053600"], ["updated_at", "2023-02-17 19:34:32.053600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:34:32.054789"], ["updated_at", "2023-02-17 19:34:32.054789"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:34:32.056118"], ["updated_at", "2023-02-17 19:34:32.056118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:34:32.057336"], ["updated_at", "2023-02-17 19:34:32.057336"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:34:32.058810"], ["updated_at", "2023-02-17 19:34:32.058810"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:34:32.059997"], ["updated_at", "2023-02-17 19:34:32.059997"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:34:32.061566"], ["updated_at", "2023-02-17 19:34:32.061566"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:34:32.062847"], ["updated_at", "2023-02-17 19:34:32.062847"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:34:32.064253"], ["updated_at", "2023-02-17 19:34:32.064253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:34:32.065545"], ["updated_at", "2023-02-17 19:34:32.065545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:34:32.067014"], ["updated_at", "2023-02-17 19:34:32.067014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:34:32.068316"], ["updated_at", "2023-02-17 19:34:32.068316"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:34:32.069791"], ["updated_at", "2023-02-17 19:34:32.069791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:34:32.070966"], ["updated_at", "2023-02-17 19:34:32.070966"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:34:32.072390"], ["updated_at", "2023-02-17 19:34:32.072390"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:34:32.073604"], ["updated_at", "2023-02-17 19:34:32.073604"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:34:32.074983"], ["updated_at", "2023-02-17 19:34:32.074983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:34:32.076203"], ["updated_at", "2023-02-17 19:34:32.076203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:34:32.077593"], ["updated_at", "2023-02-17 19:34:32.077593"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:34:32.078879"], ["updated_at", "2023-02-17 19:34:32.078879"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:34:32.080267"], ["updated_at", "2023-02-17 19:34:32.080267"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:34:32.081465"], ["updated_at", "2023-02-17 19:34:32.081465"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:34:32.082969"], ["updated_at", "2023-02-17 19:34:32.082969"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:34:32.084210"], ["updated_at", "2023-02-17 19:34:32.084210"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:34:32.085601"], ["updated_at", "2023-02-17 19:34:32.085601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:34:32.086787"], ["updated_at", "2023-02-17 19:34:32.086787"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:34:32.088266"], ["updated_at", "2023-02-17 19:34:32.088266"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:34:32.089579"], ["updated_at", "2023-02-17 19:34:32.089579"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:34:32.091004"], ["updated_at", "2023-02-17 19:34:32.091004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:34:32.092237"], ["updated_at", "2023-02-17 19:34:32.092237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:34:32.093628"], ["updated_at", "2023-02-17 19:34:32.093628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:34:32.094830"], ["updated_at", "2023-02-17 19:34:32.094830"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:34:32.096211"], ["updated_at", "2023-02-17 19:34:32.096211"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:34:32.097394"], ["updated_at", "2023-02-17 19:34:32.097394"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:34:32.098912"], ["updated_at", "2023-02-17 19:34:32.098912"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:34:32.100195"], ["updated_at", "2023-02-17 19:34:32.100195"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:34:32.101621"], ["updated_at", "2023-02-17 19:34:32.101621"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:34:32.102869"], ["updated_at", "2023-02-17 19:34:32.102869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:34:32.104261"], ["updated_at", "2023-02-17 19:34:32.104261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:34:32.105456"], ["updated_at", "2023-02-17 19:34:32.105456"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:34:32.106876"], ["updated_at", "2023-02-17 19:34:32.106876"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:34:32.108042"], ["updated_at", "2023-02-17 19:34:32.108042"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:34:32.109535"], ["updated_at", "2023-02-17 19:34:32.109535"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:34:32.110771"], ["updated_at", "2023-02-17 19:34:32.110771"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:34:32.112150"], ["updated_at", "2023-02-17 19:34:32.112150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:34:32.113368"], ["updated_at", "2023-02-17 19:34:32.113368"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:34:32.114798"], ["updated_at", "2023-02-17 19:34:32.114798"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:34:32.116059"], ["updated_at", "2023-02-17 19:34:32.116059"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:34:32.117495"], ["updated_at", "2023-02-17 19:34:32.117495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:34:32.118761"], ["updated_at", "2023-02-17 19:34:32.118761"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:34:32.120173"], ["updated_at", "2023-02-17 19:34:32.120173"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:34:32.121377"], ["updated_at", "2023-02-17 19:34:32.121377"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:34:32.122778"], ["updated_at", "2023-02-17 19:34:32.122778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:34:32.123961"], ["updated_at", "2023-02-17 19:34:32.123961"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:34:32.125374"], ["updated_at", "2023-02-17 19:34:32.125374"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:34:32.126588"], ["updated_at", "2023-02-17 19:34:32.126588"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:34:32.127917"], ["updated_at", "2023-02-17 19:34:32.127917"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:34:32.129227"], ["updated_at", "2023-02-17 19:34:32.129227"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:34:32.130624"], ["updated_at", "2023-02-17 19:34:32.130624"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:34:32.131830"], ["updated_at", "2023-02-17 19:34:32.131830"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:34:32.133404"], ["updated_at", "2023-02-17 19:34:32.133404"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:34:32.134613"], ["updated_at", "2023-02-17 19:34:32.134613"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:34:32.135988"], ["updated_at", "2023-02-17 19:34:32.135988"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:34:32.137197"], ["updated_at", "2023-02-17 19:34:32.137197"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:34:32.138682"], ["updated_at", "2023-02-17 19:34:32.138682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:34:32.140060"], ["updated_at", "2023-02-17 19:34:32.140060"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:34:32.141473"], ["updated_at", "2023-02-17 19:34:32.141473"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:34:32.142686"], ["updated_at", "2023-02-17 19:34:32.142686"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:34:32.144087"], ["updated_at", "2023-02-17 19:34:32.144087"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:34:32.145264"], ["updated_at", "2023-02-17 19:34:32.145264"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:34:32.146655"], ["updated_at", "2023-02-17 19:34:32.146655"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:34:32.147840"], ["updated_at", "2023-02-17 19:34:32.147840"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:34:32.149423"], ["updated_at", "2023-02-17 19:34:32.149423"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:34:32.150716"], ["updated_at", "2023-02-17 19:34:32.150716"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:34:32.152100"], ["updated_at", "2023-02-17 19:34:32.152100"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:34:32.153308"], ["updated_at", "2023-02-17 19:34:32.153308"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:34:32.154716"], ["updated_at", "2023-02-17 19:34:32.154716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:34:32.155880"], ["updated_at", "2023-02-17 19:34:32.155880"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:34:32.157226"], ["updated_at", "2023-02-17 19:34:32.157226"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:34:32.158549"], ["updated_at", "2023-02-17 19:34:32.158549"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:34:32.159991"], ["updated_at", "2023-02-17 19:34:32.159991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:34:32.161094"], ["updated_at", "2023-02-17 19:34:32.161094"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:34:32.162541"], ["updated_at", "2023-02-17 19:34:32.162541"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:34:32.164084"], ["updated_at", "2023-02-17 19:34:32.164084"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:34:32.165660"], ["updated_at", "2023-02-17 19:34:32.165660"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:34:32.166989"], ["updated_at", "2023-02-17 19:34:32.166989"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:34:32.168053"], ["updated_at", "2023-02-17 19:34:32.168053"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:32.185184"], ["updated_at", "2023-02-17 19:34:32.185184"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:32.186454"], ["updated_at", "2023-02-17 19:34:32.186454"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:32.187411"], ["updated_at", "2023-02-17 19:34:32.187411"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.188308"], ["updated_at", "2023-02-17 19:34:32.188308"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.189340"], ["updated_at", "2023-02-17 19:34:32.189340"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.190417"], ["updated_at", "2023-02-17 19:34:32.190417"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.191284"], ["updated_at", "2023-02-17 19:34:32.191284"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.191957"], ["updated_at", "2023-02-17 19:34:32.191957"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:32.192695"], ["updated_at", "2023-02-17 19:34:32.192695"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.193597"], ["updated_at", "2023-02-17 19:34:32.193597"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.194446"], ["updated_at", "2023-02-17 19:34:32.194446"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.195169"], ["updated_at", "2023-02-17 19:34:32.195169"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.195889"], ["updated_at", "2023-02-17 19:34:32.195889"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.196602"], ["updated_at", "2023-02-17 19:34:32.196602"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.197338"], ["updated_at", "2023-02-17 19:34:32.197338"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.198101"], ["updated_at", "2023-02-17 19:34:32.198101"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.198978"], ["updated_at", "2023-02-17 19:34:32.198978"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.200101"], ["updated_at", "2023-02-17 19:34:32.200101"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.200978"], ["updated_at", "2023-02-17 19:34:32.200978"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.201750"], ["updated_at", "2023-02-17 19:34:32.201750"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.202471"], ["updated_at", "2023-02-17 19:34:32.202471"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:32.213787"], ["updated_at", "2023-02-17 19:34:32.213787"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:32.214982"], ["updated_at", "2023-02-17 19:34:32.214982"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:32.215865"], ["updated_at", "2023-02-17 19:34:32.215865"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:32.216716"], ["updated_at", "2023-02-17 19:34:32.216716"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:32.217471"], ["updated_at", "2023-02-17 19:34:32.217471"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:32.218155"], ["updated_at", "2023-02-17 19:34:32.218155"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:32.218893"], ["updated_at", "2023-02-17 19:34:32.218893"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:32.219936"], ["updated_at", "2023-02-17 19:34:32.219936"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:32.220874"], ["updated_at", "2023-02-17 19:34:32.220874"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.221736"], ["updated_at", "2023-02-17 19:34:32.221736"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.222516"], ["updated_at", "2023-02-17 19:34:32.222516"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.223243"], ["updated_at", "2023-02-17 19:34:32.223243"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.224004"], ["updated_at", "2023-02-17 19:34:32.224004"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.224750"], ["updated_at", "2023-02-17 19:34:32.224750"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.225501"], ["updated_at", "2023-02-17 19:34:32.225501"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.226230"], ["updated_at", "2023-02-17 19:34:32.226230"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.226933"], ["updated_at", "2023-02-17 19:34:32.226933"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.227659"], ["updated_at", "2023-02-17 19:34:32.227659"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.228404"], ["updated_at", "2023-02-17 19:34:32.228404"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.229351"], ["updated_at", "2023-02-17 19:34:32.229351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.230435"], ["updated_at", "2023-02-17 19:34:32.230435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.246779"], ["updated_at", "2023-02-17 19:34:32.246779"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.247966"], ["updated_at", "2023-02-17 19:34:32.247966"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.249150"], ["updated_at", "2023-02-17 19:34:32.249150"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.249983"], ["updated_at", "2023-02-17 19:34:32.249983"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.250785"], ["updated_at", "2023-02-17 19:34:32.250785"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.251577"], ["updated_at", "2023-02-17 19:34:32.251577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.252313"], ["updated_at", "2023-02-17 19:34:32.252313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.253015"], ["updated_at", "2023-02-17 19:34:32.253015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.253686"], ["updated_at", "2023-02-17 19:34:32.253686"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.254389"], ["updated_at", "2023-02-17 19:34:32.254389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.255085"], ["updated_at", "2023-02-17 19:34:32.255085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.255765"], ["updated_at", "2023-02-17 19:34:32.255765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.256452"], ["updated_at", "2023-02-17 19:34:32.256452"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.257145"], ["updated_at", "2023-02-17 19:34:32.257145"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.257987"], ["updated_at", "2023-02-17 19:34:32.257987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.259082"], ["updated_at", "2023-02-17 19:34:32.259082"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.274844"], ["updated_at", "2023-02-17 19:34:32.274844"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.275880"], ["updated_at", "2023-02-17 19:34:32.275880"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.276617"], ["updated_at", "2023-02-17 19:34:32.276617"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.277332"], ["updated_at", "2023-02-17 19:34:32.277332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.278270"], ["updated_at", "2023-02-17 19:34:32.278270"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.279324"], ["updated_at", "2023-02-17 19:34:32.279324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.280102"], ["updated_at", "2023-02-17 19:34:32.280102"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.280824"], ["updated_at", "2023-02-17 19:34:32.280824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.281521"], ["updated_at", "2023-02-17 19:34:32.281521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.282291"], ["updated_at", "2023-02-17 19:34:32.282291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.283032"], ["updated_at", "2023-02-17 19:34:32.283032"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.283708"], ["updated_at", "2023-02-17 19:34:32.283708"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.284400"], ["updated_at", "2023-02-17 19:34:32.284400"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.285113"], ["updated_at", "2023-02-17 19:34:32.285113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.285806"], ["updated_at", "2023-02-17 19:34:32.285806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.286525"], ["updated_at", "2023-02-17 19:34:32.286525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.302460"], ["updated_at", "2023-02-17 19:34:32.302460"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.303460"], ["updated_at", "2023-02-17 19:34:32.303460"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.304187"], ["updated_at", "2023-02-17 19:34:32.304187"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.304933"], ["updated_at", "2023-02-17 19:34:32.304933"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.305716"], ["updated_at", "2023-02-17 19:34:32.305716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.306449"], ["updated_at", "2023-02-17 19:34:32.306449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.307137"], ["updated_at", "2023-02-17 19:34:32.307137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.307909"], ["updated_at", "2023-02-17 19:34:32.307909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.308952"], ["updated_at", "2023-02-17 19:34:32.308952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.309895"], ["updated_at", "2023-02-17 19:34:32.309895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.310607"], ["updated_at", "2023-02-17 19:34:32.310607"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.311302"], ["updated_at", "2023-02-17 19:34:32.311302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.311989"], ["updated_at", "2023-02-17 19:34:32.311989"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.312674"], ["updated_at", "2023-02-17 19:34:32.312674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.313395"], ["updated_at", "2023-02-17 19:34:32.313395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.314097"], ["updated_at", "2023-02-17 19:34:32.314097"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.329814"], ["updated_at", "2023-02-17 19:34:32.329814"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.330822"], ["updated_at", "2023-02-17 19:34:32.330822"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.331630"], ["updated_at", "2023-02-17 19:34:32.331630"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.332372"], ["updated_at", "2023-02-17 19:34:32.332372"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.333132"], ["updated_at", "2023-02-17 19:34:32.333132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.333860"], ["updated_at", "2023-02-17 19:34:32.333860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.334578"], ["updated_at", "2023-02-17 19:34:32.334578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.335316"], ["updated_at", "2023-02-17 19:34:32.335316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.336049"], ["updated_at", "2023-02-17 19:34:32.336049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.336740"], ["updated_at", "2023-02-17 19:34:32.336740"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.337430"], ["updated_at", "2023-02-17 19:34:32.337430"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.338223"], ["updated_at", "2023-02-17 19:34:32.338223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.339315"], ["updated_at", "2023-02-17 19:34:32.339315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.340169"], ["updated_at", "2023-02-17 19:34:32.340169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.340981"], ["updated_at", "2023-02-17 19:34:32.340981"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.341761"], ["updated_at", "2023-02-17 19:34:32.341761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.357673"], ["updated_at", "2023-02-17 19:34:32.357673"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.358857"], ["updated_at", "2023-02-17 19:34:32.358857"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.359723"], ["updated_at", "2023-02-17 19:34:32.359723"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.360439"], ["updated_at", "2023-02-17 19:34:32.360439"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.361219"], ["updated_at", "2023-02-17 19:34:32.361219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.361942"], ["updated_at", "2023-02-17 19:34:32.361942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.362623"], ["updated_at", "2023-02-17 19:34:32.362623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.363317"], ["updated_at", "2023-02-17 19:34:32.363317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.364027"], ["updated_at", "2023-02-17 19:34:32.364027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.364810"], ["updated_at", "2023-02-17 19:34:32.364810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.365690"], ["updated_at", "2023-02-17 19:34:32.365690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.366477"], ["updated_at", "2023-02-17 19:34:32.366477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.367166"], ["updated_at", "2023-02-17 19:34:32.367166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.367848"], ["updated_at", "2023-02-17 19:34:32.367848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.368781"], ["updated_at", "2023-02-17 19:34:32.368781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.369839"], ["updated_at", "2023-02-17 19:34:32.369839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.385916"], ["updated_at", "2023-02-17 19:34:32.385916"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.386876"], ["updated_at", "2023-02-17 19:34:32.386876"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.387609"], ["updated_at", "2023-02-17 19:34:32.387609"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.388362"], ["updated_at", "2023-02-17 19:34:32.388362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.389305"], ["updated_at", "2023-02-17 19:34:32.389305"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.390108"], ["updated_at", "2023-02-17 19:34:32.390108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.390830"], ["updated_at", "2023-02-17 19:34:32.390830"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.391555"], ["updated_at", "2023-02-17 19:34:32.391555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.392339"], ["updated_at", "2023-02-17 19:34:32.392339"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.393054"], ["updated_at", "2023-02-17 19:34:32.393054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.393744"], ["updated_at", "2023-02-17 19:34:32.393744"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.394434"], ["updated_at", "2023-02-17 19:34:32.394434"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.395109"], ["updated_at", "2023-02-17 19:34:32.395109"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.395828"], ["updated_at", "2023-02-17 19:34:32.395828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.396540"], ["updated_at", "2023-02-17 19:34:32.396540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.397232"], ["updated_at", "2023-02-17 19:34:32.397232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:34:32 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.2ms | Allocations: 540)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:34:32.406751"], ["updated_at", "2023-02-17 19:34:32.406751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:34:32.408201"], ["updated_at", "2023-02-17 19:34:32.408201"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:34:32.411934"], ["updated_at", "2023-02-17 19:34:32.411934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:34:32.413145"], ["updated_at", "2023-02-17 19:34:32.413145"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:34:32.415789"], ["updated_at", "2023-02-17 19:34:32.415789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:34:32.416983"], ["updated_at", "2023-02-17 19:34:32.416983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:34:32.419181"], ["updated_at", "2023-02-17 19:34:32.419181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:34:32.420664"], ["updated_at", "2023-02-17 19:34:32.420664"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:34:32.422192"], ["updated_at", "2023-02-17 19:34:32.422192"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:34:32.423514"], ["updated_at", "2023-02-17 19:34:32.423514"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:34:32.424855"], ["updated_at", "2023-02-17 19:34:32.424855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:34:32.426044"], ["updated_at", "2023-02-17 19:34:32.426044"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:34:32.427447"], ["updated_at", "2023-02-17 19:34:32.427447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:34:32.428705"], ["updated_at", "2023-02-17 19:34:32.428705"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:34:32.430531"], ["updated_at", "2023-02-17 19:34:32.430531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:34:32.431816"], ["updated_at", "2023-02-17 19:34:32.431816"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:34:32.433185"], ["updated_at", "2023-02-17 19:34:32.433185"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:34:32.434386"], ["updated_at", "2023-02-17 19:34:32.434386"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:34:32.435726"], ["updated_at", "2023-02-17 19:34:32.435726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:34:32.436913"], ["updated_at", "2023-02-17 19:34:32.436913"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:34:32.438601"], ["updated_at", "2023-02-17 19:34:32.438601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:34:32.440280"], ["updated_at", "2023-02-17 19:34:32.440280"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:34:32.441743"], ["updated_at", "2023-02-17 19:34:32.441743"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:34:32.443032"], ["updated_at", "2023-02-17 19:34:32.443032"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:34:32.444410"], ["updated_at", "2023-02-17 19:34:32.444410"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:34:32.445647"], ["updated_at", "2023-02-17 19:34:32.445647"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:34:32.447001"], ["updated_at", "2023-02-17 19:34:32.447001"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:34:32.448199"], ["updated_at", "2023-02-17 19:34:32.448199"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:34:32.449917"], ["updated_at", "2023-02-17 19:34:32.449917"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:34:32.451188"], ["updated_at", "2023-02-17 19:34:32.451188"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:34:32.452579"], ["updated_at", "2023-02-17 19:34:32.452579"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:34:32.453786"], ["updated_at", "2023-02-17 19:34:32.453786"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:34:32.455155"], ["updated_at", "2023-02-17 19:34:32.455155"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:34:32.456336"], ["updated_at", "2023-02-17 19:34:32.456336"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:34:32.457735"], ["updated_at", "2023-02-17 19:34:32.457735"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:34:32.459055"], ["updated_at", "2023-02-17 19:34:32.459055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:34:32.460801"], ["updated_at", "2023-02-17 19:34:32.460801"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:34:32.462029"], ["updated_at", "2023-02-17 19:34:32.462029"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:34:32.463401"], ["updated_at", "2023-02-17 19:34:32.463401"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:34:32.464560"], ["updated_at", "2023-02-17 19:34:32.464560"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:34:32.466007"], ["updated_at", "2023-02-17 19:34:32.466007"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:34:32.467375"], ["updated_at", "2023-02-17 19:34:32.467375"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:34:32.468857"], ["updated_at", "2023-02-17 19:34:32.468857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:34:32.470499"], ["updated_at", "2023-02-17 19:34:32.470499"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:34:32.471967"], ["updated_at", "2023-02-17 19:34:32.471967"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:34:32.473155"], ["updated_at", "2023-02-17 19:34:32.473155"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:34:32.474501"], ["updated_at", "2023-02-17 19:34:32.474501"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:34:32.475634"], ["updated_at", "2023-02-17 19:34:32.475634"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:34:32.476982"], ["updated_at", "2023-02-17 19:34:32.476982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:34:32.478216"], ["updated_at", "2023-02-17 19:34:32.478216"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:34:32.479835"], ["updated_at", "2023-02-17 19:34:32.479835"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:34:32.481081"], ["updated_at", "2023-02-17 19:34:32.481081"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:34:32.482471"], ["updated_at", "2023-02-17 19:34:32.482471"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:34:32.483722"], ["updated_at", "2023-02-17 19:34:32.483722"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:34:32.485353"], ["updated_at", "2023-02-17 19:34:32.485353"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:34:32.486644"], ["updated_at", "2023-02-17 19:34:32.486644"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:34:32.488061"], ["updated_at", "2023-02-17 19:34:32.488061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:34:32.489506"], ["updated_at", "2023-02-17 19:34:32.489506"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:34:32.491171"], ["updated_at", "2023-02-17 19:34:32.491171"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:34:32.492398"], ["updated_at", "2023-02-17 19:34:32.492398"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:34:32.493875"], ["updated_at", "2023-02-17 19:34:32.493875"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:34:32.495029"], ["updated_at", "2023-02-17 19:34:32.495029"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:34:32.496358"], ["updated_at", "2023-02-17 19:34:32.496358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:34:32.497589"], ["updated_at", "2023-02-17 19:34:32.497589"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:34:32.499067"], ["updated_at", "2023-02-17 19:34:32.499067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:34:32.500685"], ["updated_at", "2023-02-17 19:34:32.500685"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:34:32.502105"], ["updated_at", "2023-02-17 19:34:32.502105"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:34:32.503239"], ["updated_at", "2023-02-17 19:34:32.503239"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:34:32.504588"], ["updated_at", "2023-02-17 19:34:32.504588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:34:32.505741"], ["updated_at", "2023-02-17 19:34:32.505741"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:34:32.507103"], ["updated_at", "2023-02-17 19:34:32.507103"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:34:32.508345"], ["updated_at", "2023-02-17 19:34:32.508345"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:34:32.509949"], ["updated_at", "2023-02-17 19:34:32.509949"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:34:32.511234"], ["updated_at", "2023-02-17 19:34:32.511234"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:34:32.512629"], ["updated_at", "2023-02-17 19:34:32.512629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:34:32.513797"], ["updated_at", "2023-02-17 19:34:32.513797"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:34:32.515156"], ["updated_at", "2023-02-17 19:34:32.515156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:34:32.516429"], ["updated_at", "2023-02-17 19:34:32.516429"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:34:32.517813"], ["updated_at", "2023-02-17 19:34:32.517813"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:34:32.519136"], ["updated_at", "2023-02-17 19:34:32.519136"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:34:32.520884"], ["updated_at", "2023-02-17 19:34:32.520884"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:34:32.522169"], ["updated_at", "2023-02-17 19:34:32.522169"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:34:32.523660"], ["updated_at", "2023-02-17 19:34:32.523660"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:34:32.524836"], ["updated_at", "2023-02-17 19:34:32.524836"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:34:32.526200"], ["updated_at", "2023-02-17 19:34:32.526200"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:34:32.527383"], ["updated_at", "2023-02-17 19:34:32.527383"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:34:32.528728"], ["updated_at", "2023-02-17 19:34:32.528728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:34:32.530374"], ["updated_at", "2023-02-17 19:34:32.530374"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:34:32.532051"], ["updated_at", "2023-02-17 19:34:32.532051"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:34:32.533553"], ["updated_at", "2023-02-17 19:34:32.533553"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:34:32.535057"], ["updated_at", "2023-02-17 19:34:32.535057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:34:32.536226"], ["updated_at", "2023-02-17 19:34:32.536226"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:34:32.537585"], ["updated_at", "2023-02-17 19:34:32.537585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:34:32.539068"], ["updated_at", "2023-02-17 19:34:32.539068"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:34:32.540472"], ["updated_at", "2023-02-17 19:34:32.540472"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:34:32.541531"], ["updated_at", "2023-02-17 19:34:32.541531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:34:32.542737"], ["updated_at", "2023-02-17 19:34:32.542737"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:34:32.544173"], ["updated_at", "2023-02-17 19:34:32.544173"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:34:32.545657"], ["updated_at", "2023-02-17 19:34:32.545657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:34:32.546832"], ["updated_at", "2023-02-17 19:34:32.546832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:34:32.547824"], ["updated_at", "2023-02-17 19:34:32.547824"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:32.560119"], ["updated_at", "2023-02-17 19:34:32.560119"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:32.561450"], ["updated_at", "2023-02-17 19:34:32.561450"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:32.562444"], ["updated_at", "2023-02-17 19:34:32.562444"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.563260"], ["updated_at", "2023-02-17 19:34:32.563260"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.564009"], ["updated_at", "2023-02-17 19:34:32.564009"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.564705"], ["updated_at", "2023-02-17 19:34:32.564705"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.565467"], ["updated_at", "2023-02-17 19:34:32.565467"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.566497"], ["updated_at", "2023-02-17 19:34:32.566497"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:32.567490"], ["updated_at", "2023-02-17 19:34:32.567490"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.568644"], ["updated_at", "2023-02-17 19:34:32.568644"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.569674"], ["updated_at", "2023-02-17 19:34:32.569674"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.570467"], ["updated_at", "2023-02-17 19:34:32.570467"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.571188"], ["updated_at", "2023-02-17 19:34:32.571188"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.571915"], ["updated_at", "2023-02-17 19:34:32.571915"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.572655"], ["updated_at", "2023-02-17 19:34:32.572655"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.573387"], ["updated_at", "2023-02-17 19:34:32.573387"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.574116"], ["updated_at", "2023-02-17 19:34:32.574116"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.574853"], ["updated_at", "2023-02-17 19:34:32.574853"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.575618"], ["updated_at", "2023-02-17 19:34:32.575618"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.576353"], ["updated_at", "2023-02-17 19:34:32.576353"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.577060"], ["updated_at", "2023-02-17 19:34:32.577060"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:34:32.588924"], ["updated_at", "2023-02-17 19:34:32.588924"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:34:32.590378"], ["updated_at", "2023-02-17 19:34:32.590378"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:34:32.591349"], ["updated_at", "2023-02-17 19:34:32.591349"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:32.592166"], ["updated_at", "2023-02-17 19:34:32.592166"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:32.592942"], ["updated_at", "2023-02-17 19:34:32.592942"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:32.593937"], ["updated_at", "2023-02-17 19:34:32.593937"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:32.594940"], ["updated_at", "2023-02-17 19:34:32.594940"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:34:32.595691"], ["updated_at", "2023-02-17 19:34:32.595691"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:34:32.596438"], ["updated_at", "2023-02-17 19:34:32.596438"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.597332"], ["updated_at", "2023-02-17 19:34:32.597332"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.598274"], ["updated_at", "2023-02-17 19:34:32.598274"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.599369"], ["updated_at", "2023-02-17 19:34:32.599369"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.600455"], ["updated_at", "2023-02-17 19:34:32.600455"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.601313"], ["updated_at", "2023-02-17 19:34:32.601313"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.602083"], ["updated_at", "2023-02-17 19:34:32.602083"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.602812"], ["updated_at", "2023-02-17 19:34:32.602812"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.603528"], ["updated_at", "2023-02-17 19:34:32.603528"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.604224"], ["updated_at", "2023-02-17 19:34:32.604224"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.604989"], ["updated_at", "2023-02-17 19:34:32.604989"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.605756"], ["updated_at", "2023-02-17 19:34:32.605756"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:34:32.606498"], ["updated_at", "2023-02-17 19:34:32.606498"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.624182"], ["updated_at", "2023-02-17 19:34:32.624182"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.625301"], ["updated_at", "2023-02-17 19:34:32.625301"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.626137"], ["updated_at", "2023-02-17 19:34:32.626137"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.627024"], ["updated_at", "2023-02-17 19:34:32.627024"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.628137"], ["updated_at", "2023-02-17 19:34:32.628137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.629241"], ["updated_at", "2023-02-17 19:34:32.629241"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.630073"], ["updated_at", "2023-02-17 19:34:32.630073"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.630803"], ["updated_at", "2023-02-17 19:34:32.630803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.631516"], ["updated_at", "2023-02-17 19:34:32.631516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.632486"], ["updated_at", "2023-02-17 19:34:32.632486"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.633503"], ["updated_at", "2023-02-17 19:34:32.633503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.634284"], ["updated_at", "2023-02-17 19:34:32.634284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.634986"], ["updated_at", "2023-02-17 19:34:32.634986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.635737"], ["updated_at", "2023-02-17 19:34:32.635737"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.636456"], ["updated_at", "2023-02-17 19:34:32.636456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:34:32.637164"], ["updated_at", "2023-02-17 19:34:32.637164"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.654569"], ["updated_at", "2023-02-17 19:34:32.654569"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.655593"], ["updated_at", "2023-02-17 19:34:32.655593"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.656347"], ["updated_at", "2023-02-17 19:34:32.656347"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.657085"], ["updated_at", "2023-02-17 19:34:32.657085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.657848"], ["updated_at", "2023-02-17 19:34:32.657848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.658665"], ["updated_at", "2023-02-17 19:34:32.658665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.659541"], ["updated_at", "2023-02-17 19:34:32.659541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.660555"], ["updated_at", "2023-02-17 19:34:32.660555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.661503"], ["updated_at", "2023-02-17 19:34:32.661503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.662250"], ["updated_at", "2023-02-17 19:34:32.662250"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.662948"], ["updated_at", "2023-02-17 19:34:32.662948"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.663639"], ["updated_at", "2023-02-17 19:34:32.663639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.664365"], ["updated_at", "2023-02-17 19:34:32.664365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.665193"], ["updated_at", "2023-02-17 19:34:32.665193"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.666244"], ["updated_at", "2023-02-17 19:34:32.666244"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:34:32.667126"], ["updated_at", "2023-02-17 19:34:32.667126"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.684948"], ["updated_at", "2023-02-17 19:34:32.684948"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.685972"], ["updated_at", "2023-02-17 19:34:32.685972"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.686699"], ["updated_at", "2023-02-17 19:34:32.686699"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.687502"], ["updated_at", "2023-02-17 19:34:32.687502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.688405"], ["updated_at", "2023-02-17 19:34:32.688405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.689422"], ["updated_at", "2023-02-17 19:34:32.689422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.690297"], ["updated_at", "2023-02-17 19:34:32.690297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.691059"], ["updated_at", "2023-02-17 19:34:32.691059"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.691783"], ["updated_at", "2023-02-17 19:34:32.691783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.692614"], ["updated_at", "2023-02-17 19:34:32.692614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.693632"], ["updated_at", "2023-02-17 19:34:32.693632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.694400"], ["updated_at", "2023-02-17 19:34:32.694400"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.695118"], ["updated_at", "2023-02-17 19:34:32.695118"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.695850"], ["updated_at", "2023-02-17 19:34:32.695850"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.696586"], ["updated_at", "2023-02-17 19:34:32.696586"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:34:32.697341"], ["updated_at", "2023-02-17 19:34:32.697341"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.717207"], ["updated_at", "2023-02-17 19:34:32.717207"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.718371"], ["updated_at", "2023-02-17 19:34:32.718371"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.719378"], ["updated_at", "2023-02-17 19:34:32.719378"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.720321"], ["updated_at", "2023-02-17 19:34:32.720321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.721229"], ["updated_at", "2023-02-17 19:34:32.721229"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.722016"], ["updated_at", "2023-02-17 19:34:32.722016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.722793"], ["updated_at", "2023-02-17 19:34:32.722793"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.723553"], ["updated_at", "2023-02-17 19:34:32.723553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.724338"], ["updated_at", "2023-02-17 19:34:32.724338"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.725122"], ["updated_at", "2023-02-17 19:34:32.725122"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.726067"], ["updated_at", "2023-02-17 19:34:32.726067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.727066"], ["updated_at", "2023-02-17 19:34:32.727066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.727864"], ["updated_at", "2023-02-17 19:34:32.727864"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.728662"], ["updated_at", "2023-02-17 19:34:32.728662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.729569"], ["updated_at", "2023-02-17 19:34:32.729569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:34:32.730337"], ["updated_at", "2023-02-17 19:34:32.730337"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.747354"], ["updated_at", "2023-02-17 19:34:32.747354"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.748404"], ["updated_at", "2023-02-17 19:34:32.748404"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.749563"], ["updated_at", "2023-02-17 19:34:32.749563"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.750623"], ["updated_at", "2023-02-17 19:34:32.750623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.751794"], ["updated_at", "2023-02-17 19:34:32.751794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.752872"], ["updated_at", "2023-02-17 19:34:32.752872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.753897"], ["updated_at", "2023-02-17 19:34:32.753897"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.754720"], ["updated_at", "2023-02-17 19:34:32.754720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.755495"], ["updated_at", "2023-02-17 19:34:32.755495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.756245"], ["updated_at", "2023-02-17 19:34:32.756245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.757003"], ["updated_at", "2023-02-17 19:34:32.757003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.757815"], ["updated_at", "2023-02-17 19:34:32.757815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.758603"], ["updated_at", "2023-02-17 19:34:32.758603"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.759472"], ["updated_at", "2023-02-17 19:34:32.759472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.760272"], ["updated_at", "2023-02-17 19:34:32.760272"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:34:32.761130"], ["updated_at", "2023-02-17 19:34:32.761130"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:34:32.778231"], ["updated_at", "2023-02-17 19:34:32.778231"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:34:32.779336"], ["updated_at", "2023-02-17 19:34:32.779336"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:34:32.780215"], ["updated_at", "2023-02-17 19:34:32.780215"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:34:32.781010"], ["updated_at", "2023-02-17 19:34:32.781010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.781876"], ["updated_at", "2023-02-17 19:34:32.781876"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.782870"], ["updated_at", "2023-02-17 19:34:32.782870"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.783948"], ["updated_at", "2023-02-17 19:34:32.783948"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.784860"], ["updated_at", "2023-02-17 19:34:32.784860"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.785736"], ["updated_at", "2023-02-17 19:34:32.785736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.786537"], ["updated_at", "2023-02-17 19:34:32.786537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.787292"], ["updated_at", "2023-02-17 19:34:32.787292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.788017"], ["updated_at", "2023-02-17 19:34:32.788017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.788809"], ["updated_at", "2023-02-17 19:34:32.788809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.789727"], ["updated_at", "2023-02-17 19:34:32.789727"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.790519"], ["updated_at", "2023-02-17 19:34:32.790519"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:34:32.791355"], ["updated_at", "2023-02-17 19:34:32.791355"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:34:32 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 389)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:34:32 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:34:32 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.5ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (1.9ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (1.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:52.052897"], ["updated_at", "2023-02-17 19:37:52.052897"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:37:52.073256"], ["updated_at", "2023-02-17 19:37:52.073256"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:37:52.083515"], ["updated_at", "2023-02-17 19:37:52.083515"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:37:52.096886"], ["updated_at", "2023-02-17 19:37:52.096886"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.7ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:37:52.111461"], ["updated_at", "2023-02-17 19:37:52.111461"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:37:52.118105"], ["updated_at", "2023-02-17 19:37:52.118105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:37:52.121023"], ["updated_at", "2023-02-17 19:37:52.121023"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 89ms (Views: 0.2ms | ActiveRecord: 12.0ms | Allocations: 28631)

Member Load (0.2ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
 (5.8ms)  SELECT sqlite_version(*)
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:37:52.151347"], ["updated_at", "2023-02-17 19:37:52.151347"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 17ms (Views: 9.0ms | ActiveRecord: 2.6ms | Allocations: 4603)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055d2d4e64b58>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
 (3.9ms)  SELECT sqlite_version(*)

Completed 404 Not Found in 4ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.4ms | Allocations: 658)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 5ms (Views: 2.2ms | ActiveRecord: 0.2ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.5ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 33ms (Views: 0.9ms | ActiveRecord: 9.3ms | Allocations: 5762)

TRANSACTION (0.6ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (1.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:52.298331"], ["updated_at", "2023-02-17 19:37:52.298331"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:37:52.303100"], ["updated_at", "2023-02-17 19:37:52.303100"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:52.310254"], ["updated_at", "2023-02-17 19:37:52.310254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:37:52.312271"], ["updated_at", "2023-02-17 19:37:52.312271"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.5ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:37:52.316669"], ["updated_at", "2023-02-17 19:37:52.316669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:37:52.318240"], ["updated_at", "2023-02-17 19:37:52.318240"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:37:52.322917"], ["updated_at", "2023-02-17 19:37:52.322917"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:37:52.328516"], ["updated_at", "2023-02-17 19:37:52.328516"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:37:52.331836"], ["updated_at", "2023-02-17 19:37:52.331836"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:37:52.333808"], ["updated_at", "2023-02-17 19:37:52.333808"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:37:52.337184"], ["updated_at", "2023-02-17 19:37:52.337184"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:37:52.340787"], ["updated_at", "2023-02-17 19:37:52.340787"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:37:52.342542"], ["updated_at", "2023-02-17 19:37:52.342542"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (3.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:37:52.344159"], ["updated_at", "2023-02-17 19:37:52.344159"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:37:52.351259"], ["updated_at", "2023-02-17 19:37:52.351259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:37:52.352766"], ["updated_at", "2023-02-17 19:37:52.352766"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.8ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:37:52.355398"], ["updated_at", "2023-02-17 19:37:52.355398"]]
TRANSACTION (0.3ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:37:52.361560"], ["updated_at", "2023-02-17 19:37:52.361560"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:37:52.363648"], ["updated_at", "2023-02-17 19:37:52.363648"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.6ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:37:52.371951"], ["updated_at", "2023-02-17 19:37:52.371951"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:37:52.376422"], ["updated_at", "2023-02-17 19:37:52.376422"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:37:52.383920"], ["updated_at", "2023-02-17 19:37:52.383920"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:37:52.387036"], ["updated_at", "2023-02-17 19:37:52.387036"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:37:52.401482"], ["updated_at", "2023-02-17 19:37:52.401482"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:37:52.403257"], ["updated_at", "2023-02-17 19:37:52.403257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:37:52.414771"], ["updated_at", "2023-02-17 19:37:52.414771"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:37:52.420549"], ["updated_at", "2023-02-17 19:37:52.420549"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:37:52.424847"], ["updated_at", "2023-02-17 19:37:52.424847"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:37:52.432473"], ["updated_at", "2023-02-17 19:37:52.432473"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:37:52.434161"], ["updated_at", "2023-02-17 19:37:52.434161"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:37:52.441967"], ["updated_at", "2023-02-17 19:37:52.441967"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:37:52.444953"], ["updated_at", "2023-02-17 19:37:52.444953"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:37:52.452424"], ["updated_at", "2023-02-17 19:37:52.452424"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:37:52.457169"], ["updated_at", "2023-02-17 19:37:52.457169"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:37:52.462737"], ["updated_at", "2023-02-17 19:37:52.462737"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:37:52.464188"], ["updated_at", "2023-02-17 19:37:52.464188"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:37:52.471998"], ["updated_at", "2023-02-17 19:37:52.471998"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:37:52.483163"], ["updated_at", "2023-02-17 19:37:52.483163"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:37:52.484797"], ["updated_at", "2023-02-17 19:37:52.484797"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:37:52.486255"], ["updated_at", "2023-02-17 19:37:52.486255"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (4.4ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:37:52.496307"], ["updated_at", "2023-02-17 19:37:52.496307"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:37:52.503753"], ["updated_at", "2023-02-17 19:37:52.503753"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:37:52.509607"], ["updated_at", "2023-02-17 19:37:52.509607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:37:52.515461"], ["updated_at", "2023-02-17 19:37:52.515461"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:37:52.523520"], ["updated_at", "2023-02-17 19:37:52.523520"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:37:52.525155"], ["updated_at", "2023-02-17 19:37:52.525155"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:37:52.526788"], ["updated_at", "2023-02-17 19:37:52.526788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:37:52.536397"], ["updated_at", "2023-02-17 19:37:52.536397"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:37:52.545605"], ["updated_at", "2023-02-17 19:37:52.545605"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:37:52.547385"], ["updated_at", "2023-02-17 19:37:52.547385"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (3.4ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:37:52.558161"], ["updated_at", "2023-02-17 19:37:52.558161"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:37:52.563338"], ["updated_at", "2023-02-17 19:37:52.563338"], ["role_id", 34]]
TRANSACTION (1.3ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:37:52.571983"], ["updated_at", "2023-02-17 19:37:52.571983"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:37:52.574716"], ["updated_at", "2023-02-17 19:37:52.574716"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:37:52.576710"], ["updated_at", "2023-02-17 19:37:52.576710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (2.7ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:37:52.578640"], ["updated_at", "2023-02-17 19:37:52.578640"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:37:52.583600"], ["updated_at", "2023-02-17 19:37:52.583600"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:37:52.585548"], ["updated_at", "2023-02-17 19:37:52.585548"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:37:52.587652"], ["updated_at", "2023-02-17 19:37:52.587652"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:37:52.592022"], ["updated_at", "2023-02-17 19:37:52.592022"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:37:52.595170"], ["updated_at", "2023-02-17 19:37:52.595170"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:37:52.598695"], ["updated_at", "2023-02-17 19:37:52.598695"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.6ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:37:52.600274"], ["updated_at", "2023-02-17 19:37:52.600274"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:37:52.603768"], ["updated_at", "2023-02-17 19:37:52.603768"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:37:52.605386"], ["updated_at", "2023-02-17 19:37:52.605386"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:37:52.607154"], ["updated_at", "2023-02-17 19:37:52.607154"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:37:52.609021"], ["updated_at", "2023-02-17 19:37:52.609021"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:37:52.610557"], ["updated_at", "2023-02-17 19:37:52.610557"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:37:52.615025"], ["updated_at", "2023-02-17 19:37:52.615025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:37:52.616707"], ["updated_at", "2023-02-17 19:37:52.616707"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:37:52.618326"], ["updated_at", "2023-02-17 19:37:52.618326"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:37:52.619878"], ["updated_at", "2023-02-17 19:37:52.619878"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:37:52.621880"], ["updated_at", "2023-02-17 19:37:52.621880"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:37:52.623801"], ["updated_at", "2023-02-17 19:37:52.623801"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:37:52.625648"], ["updated_at", "2023-02-17 19:37:52.625648"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.9ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:37:52.627182"], ["updated_at", "2023-02-17 19:37:52.627182"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.5ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:37:52.631218"], ["updated_at", "2023-02-17 19:37:52.631218"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:37:52.633561"], ["updated_at", "2023-02-17 19:37:52.633561"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:37:52.635324"], ["updated_at", "2023-02-17 19:37:52.635324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:37:52.636803"], ["updated_at", "2023-02-17 19:37:52.636803"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:37:52.638558"], ["updated_at", "2023-02-17 19:37:52.638558"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:37:52.640159"], ["updated_at", "2023-02-17 19:37:52.640159"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:37:52.642270"], ["updated_at", "2023-02-17 19:37:52.642270"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:37:52.643898"], ["updated_at", "2023-02-17 19:37:52.643898"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:37:52.648008"], ["updated_at", "2023-02-17 19:37:52.648008"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:37:52.649723"], ["updated_at", "2023-02-17 19:37:52.649723"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:37:52.652050"], ["updated_at", "2023-02-17 19:37:52.652050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms | Allocations: 2360)

Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:37:52.653728"], ["updated_at", "2023-02-17 19:37:52.653728"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:37:52.655574"], ["updated_at", "2023-02-17 19:37:52.655574"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:37:52.663970"], ["updated_at", "2023-02-17 19:37:52.663970"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:37:52.667790"], ["updated_at", "2023-02-17 19:37:52.667790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:37:52.669350"], ["updated_at", "2023-02-17 19:37:52.669350"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:37:52.671575"], ["updated_at", "2023-02-17 19:37:52.671575"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:37:52.673278"], ["updated_at", "2023-02-17 19:37:52.673278"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:37:52.678636"], ["updated_at", "2023-02-17 19:37:52.678636"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:37:52.680566"], ["updated_at", "2023-02-17 19:37:52.680566"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:52.680345"], ["updated_at", "2023-02-17 19:37:52.680345"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:37:52.682444"], ["updated_at", "2023-02-17 19:37:52.682444"], ["role_id", 35]]

Completed 500 Internal Server Error in 17ms (ActiveRecord: 1.4ms | Allocations: 6180)

TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:37:52.684304"], ["updated_at", "2023-02-17 19:37:52.684304"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:37:52.688728"], ["updated_at", "2023-02-17 19:37:52.688728"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:37:52.693247"], ["updated_at", "2023-02-17 19:37:52.693247"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:37:52.694700"], ["updated_at", "2023-02-17 19:37:52.694700"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:37:52.715701"], ["updated_at", "2023-02-17 19:37:52.715701"], ["role_id", 1]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 16ms (ActiveRecord: 1.0ms | Allocations: 5710)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000557a5eb15660>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 2ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
QuestionType Load (0.4ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:52.732942"], ["updated_at", "2023-02-17 19:37:52.732942"], ["role_id", 2]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:52.734830"], ["updated_at", "2023-02-17 19:37:52.734830"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:52.736158"], ["updated_at", "2023-02-17 19:37:52.736158"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:52.737372"], ["updated_at", "2023-02-17 19:37:52.737372"]]
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:52.738482"], ["updated_at", "2023-02-17 19:37:52.738482"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:52.739493"], ["updated_at", "2023-02-17 19:37:52.739493"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:52.743237"], ["updated_at", "2023-02-17 19:37:52.743237"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:52.746089"], ["updated_at", "2023-02-17 19:37:52.746089"]]

Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.4ms | Allocations: 3025)

SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:52.747601"], ["updated_at", "2023-02-17 19:37:52.747601"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.748943"], ["updated_at", "2023-02-17 19:37:52.748943"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.750189"], ["updated_at", "2023-02-17 19:37:52.750189"]]
LikertScaleQuestion Create (0.5ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.751276"], ["updated_at", "2023-02-17 19:37:52.751276"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.752889"], ["updated_at", "2023-02-17 19:37:52.752889"]]
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.753969"], ["updated_at", "2023-02-17 19:37:52.753969"]]

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.755028"], ["updated_at", "2023-02-17 19:37:52.755028"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.756068"], ["updated_at", "2023-02-17 19:37:52.756068"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.759626"], ["updated_at", "2023-02-17 19:37:52.759626"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.760724"], ["updated_at", "2023-02-17 19:37:52.760724"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.761872"], ["updated_at", "2023-02-17 19:37:52.761872"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.762802"], ["updated_at", "2023-02-17 19:37:52.762802"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.763976"], ["updated_at", "2023-02-17 19:37:52.763976"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:52.780098"], ["updated_at", "2023-02-17 19:37:52.780098"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:52.782048"], ["updated_at", "2023-02-17 19:37:52.782048"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:52.783377"], ["updated_at", "2023-02-17 19:37:52.783377"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:52.784448"], ["updated_at", "2023-02-17 19:37:52.784448"]]
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 16ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 6053)

QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:52.785428"], ["updated_at", "2023-02-17 19:37:52.785428"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:52.786402"], ["updated_at", "2023-02-17 19:37:52.786402"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:52.787271"], ["updated_at", "2023-02-17 19:37:52.787271"]]
TRANSACTION (0.1ms)  rollback transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:52.788163"], ["updated_at", "2023-02-17 19:37:52.788163"]]
TRANSACTION (0.2ms)  begin transaction
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:52.789228"], ["updated_at", "2023-02-17 19:37:52.789228"]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.793275"], ["updated_at", "2023-02-17 19:37:52.793275"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.794454"], ["updated_at", "2023-02-17 19:37:52.794454"]]
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.795306"], ["updated_at", "2023-02-17 19:37:52.795306"]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.796253"], ["updated_at", "2023-02-17 19:37:52.796253"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.797332"], ["updated_at", "2023-02-17 19:37:52.797332"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.798976"], ["updated_at", "2023-02-17 19:37:52.798976"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.800292"], ["updated_at", "2023-02-17 19:37:52.800292"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.801497"], ["updated_at", "2023-02-17 19:37:52.801497"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.802714"], ["updated_at", "2023-02-17 19:37:52.802714"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.803848"], ["updated_at", "2023-02-17 19:37:52.803848"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.804878"], ["updated_at", "2023-02-17 19:37:52.804878"]]
Subject Exists? (0.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:52.805953"], ["updated_at", "2023-02-17 19:37:52.805953"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:52.808881"], ["updated_at", "2023-02-17 19:37:52.808881"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:52.817636"], ["updated_at", "2023-02-17 19:37:52.817636"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:52.826158"], ["updated_at", "2023-02-17 19:37:52.826158"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.7ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (1.5ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:52.834665"], ["updated_at", "2023-02-17 19:37:52.834665"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:52.843854"], ["updated_at", "2023-02-17 19:37:52.843854"]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
Subject Create (0.5ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:52.855499"], ["updated_at", "2023-02-17 19:37:52.855499"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:52.864634"], ["updated_at", "2023-02-17 19:37:52.864634"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:52.867016"], ["updated_at", "2023-02-17 19:37:52.867016"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:52.868334"], ["updated_at", "2023-02-17 19:37:52.868334"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:52.869542"], ["updated_at", "2023-02-17 19:37:52.869542"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:52.870312"], ["updated_at", "2023-02-17 19:37:52.870312"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.870539"], ["updated_at", "2023-02-17 19:37:52.870539"]]
TRANSACTION (6.4ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.878917"], ["updated_at", "2023-02-17 19:37:52.878917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.880105"], ["updated_at", "2023-02-17 19:37:52.880105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.881151"], ["updated_at", "2023-02-17 19:37:52.881151"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.883059"], ["updated_at", "2023-02-17 19:37:52.883059"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.884107"], ["updated_at", "2023-02-17 19:37:52.884107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.885136"], ["updated_at", "2023-02-17 19:37:52.885136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.886105"], ["updated_at", "2023-02-17 19:37:52.886105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.887136"], ["updated_at", "2023-02-17 19:37:52.887136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.888155"], ["updated_at", "2023-02-17 19:37:52.888155"]]

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:37:52 -0300

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.889445"], ["updated_at", "2023-02-17 19:37:52.889445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.895384"], ["updated_at", "2023-02-17 19:37:52.895384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:52.896447"], ["updated_at", "2023-02-17 19:37:52.896447"]]
TRANSACTION (0.4ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.2ms | Allocations: 232)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:37:52 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Survey Load (0.3ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.3ms | Allocations: 180)

LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.4ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:52.935575"], ["updated_at", "2023-02-17 19:37:52.935575"]]
QuestionAnswer Create (0.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:52.936836"], ["updated_at", "2023-02-17 19:37:52.936836"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:52.938058"], ["updated_at", "2023-02-17 19:37:52.938058"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:52.938990"], ["updated_at", "2023-02-17 19:37:52.938990"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.943286"], ["updated_at", "2023-02-17 19:37:52.943286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.945151"], ["updated_at", "2023-02-17 19:37:52.945151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.945994"], ["updated_at", "2023-02-17 19:37:52.945994"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.946722"], ["updated_at", "2023-02-17 19:37:52.946722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.947465"], ["updated_at", "2023-02-17 19:37:52.947465"]]
LikertScaleAnswer Create (1.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.951129"], ["updated_at", "2023-02-17 19:37:52.951129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.953602"], ["updated_at", "2023-02-17 19:37:52.953602"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.954646"], ["updated_at", "2023-02-17 19:37:52.954646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.955504"], ["updated_at", "2023-02-17 19:37:52.955504"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.960179"], ["updated_at", "2023-02-17 19:37:52.960179"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.961478"], ["updated_at", "2023-02-17 19:37:52.961478"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:52.962698"], ["updated_at", "2023-02-17 19:37:52.962698"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (1.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (1.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (2.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:53.031211"], ["updated_at", "2023-02-17 19:37:53.031211"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:53.035161"], ["updated_at", "2023-02-17 19:37:53.035161"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.040140"], ["updated_at", "2023-02-17 19:37:53.040140"]]
QuestionAnswer Create (0.4ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.041594"], ["updated_at", "2023-02-17 19:37:53.041594"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.047177"], ["updated_at", "2023-02-17 19:37:53.047177"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.049595"], ["updated_at", "2023-02-17 19:37:53.049595"]]
LikertScaleAnswer Create (1.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.054800"], ["updated_at", "2023-02-17 19:37:53.054800"]]
LikertScaleAnswer Create (0.5ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.057154"], ["updated_at", "2023-02-17 19:37:53.057154"]]
LikertScaleAnswer Create (0.9ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.061286"], ["updated_at", "2023-02-17 19:37:53.061286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.063312"], ["updated_at", "2023-02-17 19:37:53.063312"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.064468"], ["updated_at", "2023-02-17 19:37:53.064468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.072056"], ["updated_at", "2023-02-17 19:37:53.072056"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.073933"], ["updated_at", "2023-02-17 19:37:53.073933"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.075484"], ["updated_at", "2023-02-17 19:37:53.075484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.079666"], ["updated_at", "2023-02-17 19:37:53.079666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.080733"], ["updated_at", "2023-02-17 19:37:53.080733"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:53.108645"], ["updated_at", "2023-02-17 19:37:53.108645"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:53.111023"], ["updated_at", "2023-02-17 19:37:53.111023"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.113677"], ["updated_at", "2023-02-17 19:37:53.113677"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.114721"], ["updated_at", "2023-02-17 19:37:53.114721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.115698"], ["updated_at", "2023-02-17 19:37:53.115698"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.116663"], ["updated_at", "2023-02-17 19:37:53.116663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.117786"], ["updated_at", "2023-02-17 19:37:53.117786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.118741"], ["updated_at", "2023-02-17 19:37:53.118741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.119632"], ["updated_at", "2023-02-17 19:37:53.119632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.120517"], ["updated_at", "2023-02-17 19:37:53.120517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.121406"], ["updated_at", "2023-02-17 19:37:53.121406"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.123140"], ["updated_at", "2023-02-17 19:37:53.123140"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.124465"], ["updated_at", "2023-02-17 19:37:53.124465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.127264"], ["updated_at", "2023-02-17 19:37:53.127264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.128328"], ["updated_at", "2023-02-17 19:37:53.128328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.129254"], ["updated_at", "2023-02-17 19:37:53.129254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (3.3ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (1.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (1.9ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.7ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:53.161291"], ["updated_at", "2023-02-17 19:37:53.161291"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:53.164240"], ["updated_at", "2023-02-17 19:37:53.164240"]]
QuestionAnswer Create (0.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.165870"], ["updated_at", "2023-02-17 19:37:53.165870"]]
QuestionAnswer Create (2.0ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.167228"], ["updated_at", "2023-02-17 19:37:53.167228"]]
LikertScaleAnswer Create (7.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.170484"], ["updated_at", "2023-02-17 19:37:53.170484"]]
LikertScaleAnswer Create (1.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.180726"], ["updated_at", "2023-02-17 19:37:53.180726"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.183237"], ["updated_at", "2023-02-17 19:37:53.183237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.184227"], ["updated_at", "2023-02-17 19:37:53.184227"]]
LikertScaleAnswer Create (4.0ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.185079"], ["updated_at", "2023-02-17 19:37:53.185079"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.190545"], ["updated_at", "2023-02-17 19:37:53.190545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.194991"], ["updated_at", "2023-02-17 19:37:53.194991"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.196111"], ["updated_at", "2023-02-17 19:37:53.196111"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.201578"], ["updated_at", "2023-02-17 19:37:53.201578"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.205286"], ["updated_at", "2023-02-17 19:37:53.205286"]]
LikertScaleAnswer Create (1.0ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.208757"], ["updated_at", "2023-02-17 19:37:53.208757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:53.211817"], ["updated_at", "2023-02-17 19:37:53.211817"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:53.257139"], ["updated_at", "2023-02-17 19:37:53.257139"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:53.258409"], ["updated_at", "2023-02-17 19:37:53.258409"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.263407"], ["updated_at", "2023-02-17 19:37:53.263407"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.264317"], ["updated_at", "2023-02-17 19:37:53.264317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.265497"], ["updated_at", "2023-02-17 19:37:53.265497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.266583"], ["updated_at", "2023-02-17 19:37:53.266583"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.267540"], ["updated_at", "2023-02-17 19:37:53.267540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.268456"], ["updated_at", "2023-02-17 19:37:53.268456"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.278260"], ["updated_at", "2023-02-17 19:37:53.278260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.280577"], ["updated_at", "2023-02-17 19:37:53.280577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.281607"], ["updated_at", "2023-02-17 19:37:53.281607"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.282579"], ["updated_at", "2023-02-17 19:37:53.282579"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.283585"], ["updated_at", "2023-02-17 19:37:53.283585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.284554"], ["updated_at", "2023-02-17 19:37:53.284554"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.285724"], ["updated_at", "2023-02-17 19:37:53.285724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:53.286701"], ["updated_at", "2023-02-17 19:37:53.286701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:37:53 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.3ms | Allocations: 3127)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:53.317733"], ["updated_at", "2023-02-17 19:37:53.317733"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:37:53.320631"], ["updated_at", "2023-02-17 19:37:53.320631"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:53.324509"], ["updated_at", "2023-02-17 19:37:53.324509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:37:53.325922"], ["updated_at", "2023-02-17 19:37:53.325922"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:37:53.330695"], ["updated_at", "2023-02-17 19:37:53.330695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:37:53.332234"], ["updated_at", "2023-02-17 19:37:53.332234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:37:53.334856"], ["updated_at", "2023-02-17 19:37:53.334856"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:37:53.336692"], ["updated_at", "2023-02-17 19:37:53.336692"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:37:53.338610"], ["updated_at", "2023-02-17 19:37:53.338610"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:37:53.341500"], ["updated_at", "2023-02-17 19:37:53.341500"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:37:53.343139"], ["updated_at", "2023-02-17 19:37:53.343139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:37:53.344771"], ["updated_at", "2023-02-17 19:37:53.344771"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:37:53.346480"], ["updated_at", "2023-02-17 19:37:53.346480"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.6ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:37:53.347932"], ["updated_at", "2023-02-17 19:37:53.347932"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:37:53.351415"], ["updated_at", "2023-02-17 19:37:53.351415"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:37:53.353055"], ["updated_at", "2023-02-17 19:37:53.353055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:37:53.354655"], ["updated_at", "2023-02-17 19:37:53.354655"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:37:53.356097"], ["updated_at", "2023-02-17 19:37:53.356097"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:37:53.358041"], ["updated_at", "2023-02-17 19:37:53.358041"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:37:53.360219"], ["updated_at", "2023-02-17 19:37:53.360219"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:37:53.366648"], ["updated_at", "2023-02-17 19:37:53.366648"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:37:53.370836"], ["updated_at", "2023-02-17 19:37:53.370836"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:37:53.374082"], ["updated_at", "2023-02-17 19:37:53.374082"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:37:53.375960"], ["updated_at", "2023-02-17 19:37:53.375960"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:37:53.378119"], ["updated_at", "2023-02-17 19:37:53.378119"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:37:53.380899"], ["updated_at", "2023-02-17 19:37:53.380899"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:37:53.382646"], ["updated_at", "2023-02-17 19:37:53.382646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:37:53.384186"], ["updated_at", "2023-02-17 19:37:53.384186"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:37:53.385746"], ["updated_at", "2023-02-17 19:37:53.385746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:37:53.387088"], ["updated_at", "2023-02-17 19:37:53.387088"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:37:53.390468"], ["updated_at", "2023-02-17 19:37:53.390468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:37:53.392395"], ["updated_at", "2023-02-17 19:37:53.392395"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:37:53.394609"], ["updated_at", "2023-02-17 19:37:53.394609"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:37:53.396317"], ["updated_at", "2023-02-17 19:37:53.396317"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:37:53.397936"], ["updated_at", "2023-02-17 19:37:53.397936"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:37:53.400775"], ["updated_at", "2023-02-17 19:37:53.400775"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:37:53.402862"], ["updated_at", "2023-02-17 19:37:53.402862"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:37:53.404296"], ["updated_at", "2023-02-17 19:37:53.404296"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:37:53.406418"], ["updated_at", "2023-02-17 19:37:53.406418"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:37:53.408108"], ["updated_at", "2023-02-17 19:37:53.408108"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:37:53.412033"], ["updated_at", "2023-02-17 19:37:53.412033"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:37:53.413928"], ["updated_at", "2023-02-17 19:37:53.413928"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:37:53.415641"], ["updated_at", "2023-02-17 19:37:53.415641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:37:53.418037"], ["updated_at", "2023-02-17 19:37:53.418037"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:37:53.422357"], ["updated_at", "2023-02-17 19:37:53.422357"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:37:53.424072"], ["updated_at", "2023-02-17 19:37:53.424072"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:37:53.425881"], ["updated_at", "2023-02-17 19:37:53.425881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:37:53.427250"], ["updated_at", "2023-02-17 19:37:53.427250"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:37:53.428802"], ["updated_at", "2023-02-17 19:37:53.428802"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:37:53.440468"], ["updated_at", "2023-02-17 19:37:53.440468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:37:53.442347"], ["updated_at", "2023-02-17 19:37:53.442347"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:37:53.443974"], ["updated_at", "2023-02-17 19:37:53.443974"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:37:53.445602"], ["updated_at", "2023-02-17 19:37:53.445602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:37:53.446968"], ["updated_at", "2023-02-17 19:37:53.446968"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:37:53.451503"], ["updated_at", "2023-02-17 19:37:53.451503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:37:53.452944"], ["updated_at", "2023-02-17 19:37:53.452944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:37:53.454532"], ["updated_at", "2023-02-17 19:37:53.454532"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:37:53.456051"], ["updated_at", "2023-02-17 19:37:53.456051"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:37:53.458171"], ["updated_at", "2023-02-17 19:37:53.458171"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:37:53.461479"], ["updated_at", "2023-02-17 19:37:53.461479"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:37:53.463966"], ["updated_at", "2023-02-17 19:37:53.463966"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:37:53.465840"], ["updated_at", "2023-02-17 19:37:53.465840"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:37:53.467809"], ["updated_at", "2023-02-17 19:37:53.467809"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:37:53.471846"], ["updated_at", "2023-02-17 19:37:53.471846"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:37:53.474859"], ["updated_at", "2023-02-17 19:37:53.474859"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:37:53.482169"], ["updated_at", "2023-02-17 19:37:53.482169"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:37:53.501313"], ["updated_at", "2023-02-17 19:37:53.501313"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:37:53.503379"], ["updated_at", "2023-02-17 19:37:53.503379"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:37:53.505328"], ["updated_at", "2023-02-17 19:37:53.505328"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:37:53.507705"], ["updated_at", "2023-02-17 19:37:53.507705"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:37:53.512358"], ["updated_at", "2023-02-17 19:37:53.512358"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:37:53.514629"], ["updated_at", "2023-02-17 19:37:53.514629"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:37:53.516978"], ["updated_at", "2023-02-17 19:37:53.516978"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:37:53.520275"], ["updated_at", "2023-02-17 19:37:53.520275"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:37:53.522574"], ["updated_at", "2023-02-17 19:37:53.522574"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:37:53.525190"], ["updated_at", "2023-02-17 19:37:53.525190"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:37:53.527186"], ["updated_at", "2023-02-17 19:37:53.527186"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:37:53.529056"], ["updated_at", "2023-02-17 19:37:53.529056"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:37:53.531855"], ["updated_at", "2023-02-17 19:37:53.531855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:37:53.534384"], ["updated_at", "2023-02-17 19:37:53.534384"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:37:53.536306"], ["updated_at", "2023-02-17 19:37:53.536306"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:37:53.538058"], ["updated_at", "2023-02-17 19:37:53.538058"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:37:53.541864"], ["updated_at", "2023-02-17 19:37:53.541864"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:37:53.544084"], ["updated_at", "2023-02-17 19:37:53.544084"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:37:53.546482"], ["updated_at", "2023-02-17 19:37:53.546482"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:37:53.548541"], ["updated_at", "2023-02-17 19:37:53.548541"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:37:53.556555"], ["updated_at", "2023-02-17 19:37:53.556555"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:37:53.561784"], ["updated_at", "2023-02-17 19:37:53.561784"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:37:53.565166"], ["updated_at", "2023-02-17 19:37:53.565166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:37:53.567073"], ["updated_at", "2023-02-17 19:37:53.567073"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:37:53.570168"], ["updated_at", "2023-02-17 19:37:53.570168"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:37:53.572184"], ["updated_at", "2023-02-17 19:37:53.572184"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (3.7ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:37:53.577924"], ["updated_at", "2023-02-17 19:37:53.577924"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:37:53.587581"], ["updated_at", "2023-02-17 19:37:53.587581"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.4ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:37:53.589760"], ["updated_at", "2023-02-17 19:37:53.589760"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:37:53.593469"], ["updated_at", "2023-02-17 19:37:53.593469"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:37:53.595331"], ["updated_at", "2023-02-17 19:37:53.595331"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:37:53.597282"], ["updated_at", "2023-02-17 19:37:53.597282"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.6ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:37:53.605487"], ["updated_at", "2023-02-17 19:37:53.605487"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:37:53.608109"], ["updated_at", "2023-02-17 19:37:53.608109"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:37:53.616226"], ["updated_at", "2023-02-17 19:37:53.616226"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.0ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:53.643871"], ["updated_at", "2023-02-17 19:37:53.643871"], ["role_id", 2]]
SurveyQuestion Create (6.4ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:53.646241"], ["updated_at", "2023-02-17 19:37:53.646241"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:53.653896"], ["updated_at", "2023-02-17 19:37:53.653896"]]
QuestionOption Create (0.9ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.655218"], ["updated_at", "2023-02-17 19:37:53.655218"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.657181"], ["updated_at", "2023-02-17 19:37:53.657181"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.658348"], ["updated_at", "2023-02-17 19:37:53.658348"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.660740"], ["updated_at", "2023-02-17 19:37:53.660740"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.664231"], ["updated_at", "2023-02-17 19:37:53.664231"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:53.670296"], ["updated_at", "2023-02-17 19:37:53.670296"]]
LikertScaleQuestion Create (2.9ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.672110"], ["updated_at", "2023-02-17 19:37:53.672110"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.683160"], ["updated_at", "2023-02-17 19:37:53.683160"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.684528"], ["updated_at", "2023-02-17 19:37:53.684528"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.685972"], ["updated_at", "2023-02-17 19:37:53.685972"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.687191"], ["updated_at", "2023-02-17 19:37:53.687191"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.688352"], ["updated_at", "2023-02-17 19:37:53.688352"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.689642"], ["updated_at", "2023-02-17 19:37:53.689642"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.691438"], ["updated_at", "2023-02-17 19:37:53.691438"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.695632"], ["updated_at", "2023-02-17 19:37:53.695632"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.697600"], ["updated_at", "2023-02-17 19:37:53.697600"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.699172"], ["updated_at", "2023-02-17 19:37:53.699172"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.704696"], ["updated_at", "2023-02-17 19:37:53.704696"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.6ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:53.743086"], ["updated_at", "2023-02-17 19:37:53.743086"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:53.747451"], ["updated_at", "2023-02-17 19:37:53.747451"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:53.748969"], ["updated_at", "2023-02-17 19:37:53.748969"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:53.750755"], ["updated_at", "2023-02-17 19:37:53.750755"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:53.751946"], ["updated_at", "2023-02-17 19:37:53.751946"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:53.753035"], ["updated_at", "2023-02-17 19:37:53.753035"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:53.754109"], ["updated_at", "2023-02-17 19:37:53.754109"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:53.755277"], ["updated_at", "2023-02-17 19:37:53.755277"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:53.756827"], ["updated_at", "2023-02-17 19:37:53.756827"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.760044"], ["updated_at", "2023-02-17 19:37:53.760044"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.762338"], ["updated_at", "2023-02-17 19:37:53.762338"]]
LikertScaleQuestion Create (0.4ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.763919"], ["updated_at", "2023-02-17 19:37:53.763919"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.765522"], ["updated_at", "2023-02-17 19:37:53.765522"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.766835"], ["updated_at", "2023-02-17 19:37:53.766835"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.768049"], ["updated_at", "2023-02-17 19:37:53.768049"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.769516"], ["updated_at", "2023-02-17 19:37:53.769516"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.770895"], ["updated_at", "2023-02-17 19:37:53.770895"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.772607"], ["updated_at", "2023-02-17 19:37:53.772607"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.774141"], ["updated_at", "2023-02-17 19:37:53.774141"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.775652"], ["updated_at", "2023-02-17 19:37:53.775652"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:53.779190"], ["updated_at", "2023-02-17 19:37:53.779190"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (2.0ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:53.807598"], ["updated_at", "2023-02-17 19:37:53.807598"]]
QuestionAnswer Create (1.5ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:53.811241"], ["updated_at", "2023-02-17 19:37:53.811241"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.813926"], ["updated_at", "2023-02-17 19:37:53.813926"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.815104"], ["updated_at", "2023-02-17 19:37:53.815104"]]
LikertScaleAnswer Create (1.6ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.817764"], ["updated_at", "2023-02-17 19:37:53.817764"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.821202"], ["updated_at", "2023-02-17 19:37:53.821202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.823501"], ["updated_at", "2023-02-17 19:37:53.823501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.826188"], ["updated_at", "2023-02-17 19:37:53.826188"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.827828"], ["updated_at", "2023-02-17 19:37:53.827828"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.829208"], ["updated_at", "2023-02-17 19:37:53.829208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.832180"], ["updated_at", "2023-02-17 19:37:53.832180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.833849"], ["updated_at", "2023-02-17 19:37:53.833849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.834991"], ["updated_at", "2023-02-17 19:37:53.834991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.836297"], ["updated_at", "2023-02-17 19:37:53.836297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.837459"], ["updated_at", "2023-02-17 19:37:53.837459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:53.838544"], ["updated_at", "2023-02-17 19:37:53.838544"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:53.865473"], ["updated_at", "2023-02-17 19:37:53.865473"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:53.866764"], ["updated_at", "2023-02-17 19:37:53.866764"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.867920"], ["updated_at", "2023-02-17 19:37:53.867920"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.869348"], ["updated_at", "2023-02-17 19:37:53.869348"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.870664"], ["updated_at", "2023-02-17 19:37:53.870664"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.872673"], ["updated_at", "2023-02-17 19:37:53.872673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.873855"], ["updated_at", "2023-02-17 19:37:53.873855"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.874994"], ["updated_at", "2023-02-17 19:37:53.874994"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.876140"], ["updated_at", "2023-02-17 19:37:53.876140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.877251"], ["updated_at", "2023-02-17 19:37:53.877251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.878407"], ["updated_at", "2023-02-17 19:37:53.878407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.879522"], ["updated_at", "2023-02-17 19:37:53.879522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.880670"], ["updated_at", "2023-02-17 19:37:53.880670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.881929"], ["updated_at", "2023-02-17 19:37:53.881929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.883037"], ["updated_at", "2023-02-17 19:37:53.883037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:53.884137"], ["updated_at", "2023-02-17 19:37:53.884137"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:53.912484"], ["updated_at", "2023-02-17 19:37:53.912484"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:53.914254"], ["updated_at", "2023-02-17 19:37:53.914254"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.915425"], ["updated_at", "2023-02-17 19:37:53.915425"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.916536"], ["updated_at", "2023-02-17 19:37:53.916536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.917725"], ["updated_at", "2023-02-17 19:37:53.917725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.918840"], ["updated_at", "2023-02-17 19:37:53.918840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.919931"], ["updated_at", "2023-02-17 19:37:53.919931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.921100"], ["updated_at", "2023-02-17 19:37:53.921100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.922224"], ["updated_at", "2023-02-17 19:37:53.922224"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.923421"], ["updated_at", "2023-02-17 19:37:53.923421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.924747"], ["updated_at", "2023-02-17 19:37:53.924747"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.925951"], ["updated_at", "2023-02-17 19:37:53.925951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.927006"], ["updated_at", "2023-02-17 19:37:53.927006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.928054"], ["updated_at", "2023-02-17 19:37:53.928054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.929143"], ["updated_at", "2023-02-17 19:37:53.929143"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:53.930356"], ["updated_at", "2023-02-17 19:37:53.930356"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.5ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:53.954301"], ["updated_at", "2023-02-17 19:37:53.954301"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:53.955639"], ["updated_at", "2023-02-17 19:37:53.955639"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.956888"], ["updated_at", "2023-02-17 19:37:53.956888"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:53.958037"], ["updated_at", "2023-02-17 19:37:53.958037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.959230"], ["updated_at", "2023-02-17 19:37:53.959230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.960458"], ["updated_at", "2023-02-17 19:37:53.960458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.961653"], ["updated_at", "2023-02-17 19:37:53.961653"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.962798"], ["updated_at", "2023-02-17 19:37:53.962798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.963966"], ["updated_at", "2023-02-17 19:37:53.963966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.965096"], ["updated_at", "2023-02-17 19:37:53.965096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.966222"], ["updated_at", "2023-02-17 19:37:53.966222"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.967334"], ["updated_at", "2023-02-17 19:37:53.967334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.968414"], ["updated_at", "2023-02-17 19:37:53.968414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.969531"], ["updated_at", "2023-02-17 19:37:53.969531"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.970706"], ["updated_at", "2023-02-17 19:37:53.970706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:53.972241"], ["updated_at", "2023-02-17 19:37:53.972241"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:53.996786"], ["updated_at", "2023-02-17 19:37:53.996786"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:53.998049"], ["updated_at", "2023-02-17 19:37:53.998049"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:53.999134"], ["updated_at", "2023-02-17 19:37:53.999134"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.000096"], ["updated_at", "2023-02-17 19:37:54.000096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.001190"], ["updated_at", "2023-02-17 19:37:54.001190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.002231"], ["updated_at", "2023-02-17 19:37:54.002231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.003219"], ["updated_at", "2023-02-17 19:37:54.003219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.004276"], ["updated_at", "2023-02-17 19:37:54.004276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.005255"], ["updated_at", "2023-02-17 19:37:54.005255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.006296"], ["updated_at", "2023-02-17 19:37:54.006296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.007365"], ["updated_at", "2023-02-17 19:37:54.007365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.008432"], ["updated_at", "2023-02-17 19:37:54.008432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.009460"], ["updated_at", "2023-02-17 19:37:54.009460"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.010710"], ["updated_at", "2023-02-17 19:37:54.010710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.012230"], ["updated_at", "2023-02-17 19:37:54.012230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.013392"], ["updated_at", "2023-02-17 19:37:54.013392"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:54.034332"], ["updated_at", "2023-02-17 19:37:54.034332"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:54.035549"], ["updated_at", "2023-02-17 19:37:54.035549"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.036595"], ["updated_at", "2023-02-17 19:37:54.036595"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.037700"], ["updated_at", "2023-02-17 19:37:54.037700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.038732"], ["updated_at", "2023-02-17 19:37:54.038732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.039713"], ["updated_at", "2023-02-17 19:37:54.039713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.040679"], ["updated_at", "2023-02-17 19:37:54.040679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.041642"], ["updated_at", "2023-02-17 19:37:54.041642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.042862"], ["updated_at", "2023-02-17 19:37:54.042862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.044185"], ["updated_at", "2023-02-17 19:37:54.044185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.045513"], ["updated_at", "2023-02-17 19:37:54.045513"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.046644"], ["updated_at", "2023-02-17 19:37:54.046644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.047670"], ["updated_at", "2023-02-17 19:37:54.047670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.048696"], ["updated_at", "2023-02-17 19:37:54.048696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.049723"], ["updated_at", "2023-02-17 19:37:54.049723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.050720"], ["updated_at", "2023-02-17 19:37:54.050720"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:37:54 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (2.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:54.062812"], ["updated_at", "2023-02-17 19:37:54.062812"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:37:54.066426"], ["updated_at", "2023-02-17 19:37:54.066426"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:54.071737"], ["updated_at", "2023-02-17 19:37:54.071737"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:37:54.073493"], ["updated_at", "2023-02-17 19:37:54.073493"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:37:54.078214"], ["updated_at", "2023-02-17 19:37:54.078214"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:37:54.079809"], ["updated_at", "2023-02-17 19:37:54.079809"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:37:54.083026"], ["updated_at", "2023-02-17 19:37:54.083026"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:37:54.085696"], ["updated_at", "2023-02-17 19:37:54.085696"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:37:54.089149"], ["updated_at", "2023-02-17 19:37:54.089149"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:37:54.092212"], ["updated_at", "2023-02-17 19:37:54.092212"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:37:54.094622"], ["updated_at", "2023-02-17 19:37:54.094622"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:37:54.096512"], ["updated_at", "2023-02-17 19:37:54.096512"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:37:54.098516"], ["updated_at", "2023-02-17 19:37:54.098516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:37:54.100227"], ["updated_at", "2023-02-17 19:37:54.100227"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:37:54.102181"], ["updated_at", "2023-02-17 19:37:54.102181"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:37:54.103862"], ["updated_at", "2023-02-17 19:37:54.103862"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:37:54.105740"], ["updated_at", "2023-02-17 19:37:54.105740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:37:54.107480"], ["updated_at", "2023-02-17 19:37:54.107480"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:37:54.109360"], ["updated_at", "2023-02-17 19:37:54.109360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:37:54.111665"], ["updated_at", "2023-02-17 19:37:54.111665"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:37:54.114117"], ["updated_at", "2023-02-17 19:37:54.114117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:37:54.115888"], ["updated_at", "2023-02-17 19:37:54.115888"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:37:54.117915"], ["updated_at", "2023-02-17 19:37:54.117915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:37:54.119757"], ["updated_at", "2023-02-17 19:37:54.119757"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:37:54.121721"], ["updated_at", "2023-02-17 19:37:54.121721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:37:54.123445"], ["updated_at", "2023-02-17 19:37:54.123445"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:37:54.125601"], ["updated_at", "2023-02-17 19:37:54.125601"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:37:54.127416"], ["updated_at", "2023-02-17 19:37:54.127416"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:37:54.129355"], ["updated_at", "2023-02-17 19:37:54.129355"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:37:54.131497"], ["updated_at", "2023-02-17 19:37:54.131497"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:37:54.133469"], ["updated_at", "2023-02-17 19:37:54.133469"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:37:54.135189"], ["updated_at", "2023-02-17 19:37:54.135189"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:37:54.137303"], ["updated_at", "2023-02-17 19:37:54.137303"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:37:54.139053"], ["updated_at", "2023-02-17 19:37:54.139053"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:37:54.141069"], ["updated_at", "2023-02-17 19:37:54.141069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:37:54.143289"], ["updated_at", "2023-02-17 19:37:54.143289"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:37:54.145740"], ["updated_at", "2023-02-17 19:37:54.145740"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:37:54.147540"], ["updated_at", "2023-02-17 19:37:54.147540"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:37:54.149658"], ["updated_at", "2023-02-17 19:37:54.149658"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:37:54.151939"], ["updated_at", "2023-02-17 19:37:54.151939"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:37:54.153882"], ["updated_at", "2023-02-17 19:37:54.153882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:37:54.155574"], ["updated_at", "2023-02-17 19:37:54.155574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:37:54.157527"], ["updated_at", "2023-02-17 19:37:54.157527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:37:54.159237"], ["updated_at", "2023-02-17 19:37:54.159237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:37:54.161234"], ["updated_at", "2023-02-17 19:37:54.161234"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:37:54.162938"], ["updated_at", "2023-02-17 19:37:54.162938"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:37:54.164783"], ["updated_at", "2023-02-17 19:37:54.164783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:37:54.166510"], ["updated_at", "2023-02-17 19:37:54.166510"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:37:54.168390"], ["updated_at", "2023-02-17 19:37:54.168390"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:37:54.170177"], ["updated_at", "2023-02-17 19:37:54.170177"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:37:54.172541"], ["updated_at", "2023-02-17 19:37:54.172541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:37:54.174391"], ["updated_at", "2023-02-17 19:37:54.174391"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:37:54.176782"], ["updated_at", "2023-02-17 19:37:54.176782"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:37:54.178742"], ["updated_at", "2023-02-17 19:37:54.178742"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:37:54.181245"], ["updated_at", "2023-02-17 19:37:54.181245"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:37:54.183343"], ["updated_at", "2023-02-17 19:37:54.183343"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:37:54.185592"], ["updated_at", "2023-02-17 19:37:54.185592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:37:54.187504"], ["updated_at", "2023-02-17 19:37:54.187504"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:37:54.189527"], ["updated_at", "2023-02-17 19:37:54.189527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:37:54.191669"], ["updated_at", "2023-02-17 19:37:54.191669"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:37:54.193674"], ["updated_at", "2023-02-17 19:37:54.193674"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:37:54.195467"], ["updated_at", "2023-02-17 19:37:54.195467"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:37:54.197336"], ["updated_at", "2023-02-17 19:37:54.197336"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:37:54.199066"], ["updated_at", "2023-02-17 19:37:54.199066"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:37:54.201059"], ["updated_at", "2023-02-17 19:37:54.201059"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:37:54.202754"], ["updated_at", "2023-02-17 19:37:54.202754"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:37:54.204621"], ["updated_at", "2023-02-17 19:37:54.204621"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:37:54.206326"], ["updated_at", "2023-02-17 19:37:54.206326"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:37:54.208244"], ["updated_at", "2023-02-17 19:37:54.208244"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:37:54.209943"], ["updated_at", "2023-02-17 19:37:54.209943"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:37:54.212917"], ["updated_at", "2023-02-17 19:37:54.212917"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:37:54.214944"], ["updated_at", "2023-02-17 19:37:54.214944"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:37:54.217124"], ["updated_at", "2023-02-17 19:37:54.217124"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:37:54.218956"], ["updated_at", "2023-02-17 19:37:54.218956"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:37:54.221093"], ["updated_at", "2023-02-17 19:37:54.221093"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:37:54.222895"], ["updated_at", "2023-02-17 19:37:54.222895"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:37:54.224862"], ["updated_at", "2023-02-17 19:37:54.224862"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:37:54.226591"], ["updated_at", "2023-02-17 19:37:54.226591"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:37:54.228691"], ["updated_at", "2023-02-17 19:37:54.228691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:37:54.230914"], ["updated_at", "2023-02-17 19:37:54.230914"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:37:54.233080"], ["updated_at", "2023-02-17 19:37:54.233080"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:37:54.234824"], ["updated_at", "2023-02-17 19:37:54.234824"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:37:54.236698"], ["updated_at", "2023-02-17 19:37:54.236698"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:37:54.238441"], ["updated_at", "2023-02-17 19:37:54.238441"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:37:54.240347"], ["updated_at", "2023-02-17 19:37:54.240347"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:37:54.242116"], ["updated_at", "2023-02-17 19:37:54.242116"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:37:54.245253"], ["updated_at", "2023-02-17 19:37:54.245253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:37:54.247277"], ["updated_at", "2023-02-17 19:37:54.247277"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:37:54.249442"], ["updated_at", "2023-02-17 19:37:54.249442"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:37:54.251620"], ["updated_at", "2023-02-17 19:37:54.251620"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:37:54.253681"], ["updated_at", "2023-02-17 19:37:54.253681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:37:54.255497"], ["updated_at", "2023-02-17 19:37:54.255497"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:37:54.257539"], ["updated_at", "2023-02-17 19:37:54.257539"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:37:54.260072"], ["updated_at", "2023-02-17 19:37:54.260072"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:37:54.262212"], ["updated_at", "2023-02-17 19:37:54.262212"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:37:54.263798"], ["updated_at", "2023-02-17 19:37:54.263798"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:37:54.265679"], ["updated_at", "2023-02-17 19:37:54.265679"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:37:54.267607"], ["updated_at", "2023-02-17 19:37:54.267607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.9ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:37:54.269583"], ["updated_at", "2023-02-17 19:37:54.269583"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:37:54.272586"], ["updated_at", "2023-02-17 19:37:54.272586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:37:54.274350"], ["updated_at", "2023-02-17 19:37:54.274350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:54.288858"], ["updated_at", "2023-02-17 19:37:54.288858"], ["role_id", 2]]
SurveyQuestion Create (1.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:54.291702"], ["updated_at", "2023-02-17 19:37:54.291702"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:54.294367"], ["updated_at", "2023-02-17 19:37:54.294367"]]
QuestionOption Create (1.0ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.295697"], ["updated_at", "2023-02-17 19:37:54.295697"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.297726"], ["updated_at", "2023-02-17 19:37:54.297726"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.298927"], ["updated_at", "2023-02-17 19:37:54.298927"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.299984"], ["updated_at", "2023-02-17 19:37:54.299984"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.300945"], ["updated_at", "2023-02-17 19:37:54.300945"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:54.301991"], ["updated_at", "2023-02-17 19:37:54.301991"]]
LikertScaleQuestion Create (0.9ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.303212"], ["updated_at", "2023-02-17 19:37:54.303212"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.305186"], ["updated_at", "2023-02-17 19:37:54.305186"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.306469"], ["updated_at", "2023-02-17 19:37:54.306469"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.307684"], ["updated_at", "2023-02-17 19:37:54.307684"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.308746"], ["updated_at", "2023-02-17 19:37:54.308746"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.309919"], ["updated_at", "2023-02-17 19:37:54.309919"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.311529"], ["updated_at", "2023-02-17 19:37:54.311529"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.312748"], ["updated_at", "2023-02-17 19:37:54.312748"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.313854"], ["updated_at", "2023-02-17 19:37:54.313854"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.314982"], ["updated_at", "2023-02-17 19:37:54.314982"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.315963"], ["updated_at", "2023-02-17 19:37:54.315963"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.317023"], ["updated_at", "2023-02-17 19:37:54.317023"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:54.332267"], ["updated_at", "2023-02-17 19:37:54.332267"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:54.333835"], ["updated_at", "2023-02-17 19:37:54.333835"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:54.335077"], ["updated_at", "2023-02-17 19:37:54.335077"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:54.336265"], ["updated_at", "2023-02-17 19:37:54.336265"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:54.337435"], ["updated_at", "2023-02-17 19:37:54.337435"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:54.338454"], ["updated_at", "2023-02-17 19:37:54.338454"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:54.339442"], ["updated_at", "2023-02-17 19:37:54.339442"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:54.340507"], ["updated_at", "2023-02-17 19:37:54.340507"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:54.341631"], ["updated_at", "2023-02-17 19:37:54.341631"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.342875"], ["updated_at", "2023-02-17 19:37:54.342875"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.344154"], ["updated_at", "2023-02-17 19:37:54.344154"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.345408"], ["updated_at", "2023-02-17 19:37:54.345408"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.346600"], ["updated_at", "2023-02-17 19:37:54.346600"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.347793"], ["updated_at", "2023-02-17 19:37:54.347793"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.349169"], ["updated_at", "2023-02-17 19:37:54.349169"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.350389"], ["updated_at", "2023-02-17 19:37:54.350389"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.352002"], ["updated_at", "2023-02-17 19:37:54.352002"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.353396"], ["updated_at", "2023-02-17 19:37:54.353396"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.354729"], ["updated_at", "2023-02-17 19:37:54.354729"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.356031"], ["updated_at", "2023-02-17 19:37:54.356031"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.357343"], ["updated_at", "2023-02-17 19:37:54.357343"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.8ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:54.383627"], ["updated_at", "2023-02-17 19:37:54.383627"]]
QuestionAnswer Create (1.4ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:54.386634"], ["updated_at", "2023-02-17 19:37:54.386634"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.389182"], ["updated_at", "2023-02-17 19:37:54.389182"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.390422"], ["updated_at", "2023-02-17 19:37:54.390422"]]
LikertScaleAnswer Create (1.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.392084"], ["updated_at", "2023-02-17 19:37:54.392084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.394607"], ["updated_at", "2023-02-17 19:37:54.394607"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.395848"], ["updated_at", "2023-02-17 19:37:54.395848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.397044"], ["updated_at", "2023-02-17 19:37:54.397044"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.398288"], ["updated_at", "2023-02-17 19:37:54.398288"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.399507"], ["updated_at", "2023-02-17 19:37:54.399507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.400661"], ["updated_at", "2023-02-17 19:37:54.400661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.401851"], ["updated_at", "2023-02-17 19:37:54.401851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.402994"], ["updated_at", "2023-02-17 19:37:54.402994"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.404218"], ["updated_at", "2023-02-17 19:37:54.404218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.405440"], ["updated_at", "2023-02-17 19:37:54.405440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.406622"], ["updated_at", "2023-02-17 19:37:54.406622"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:54.433296"], ["updated_at", "2023-02-17 19:37:54.433296"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:54.434656"], ["updated_at", "2023-02-17 19:37:54.434656"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.435851"], ["updated_at", "2023-02-17 19:37:54.435851"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.437070"], ["updated_at", "2023-02-17 19:37:54.437070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.438320"], ["updated_at", "2023-02-17 19:37:54.438320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.439495"], ["updated_at", "2023-02-17 19:37:54.439495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.440754"], ["updated_at", "2023-02-17 19:37:54.440754"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.441938"], ["updated_at", "2023-02-17 19:37:54.441938"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.443164"], ["updated_at", "2023-02-17 19:37:54.443164"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.444560"], ["updated_at", "2023-02-17 19:37:54.444560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.445748"], ["updated_at", "2023-02-17 19:37:54.445748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.446805"], ["updated_at", "2023-02-17 19:37:54.446805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.447814"], ["updated_at", "2023-02-17 19:37:54.447814"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.449005"], ["updated_at", "2023-02-17 19:37:54.449005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.450259"], ["updated_at", "2023-02-17 19:37:54.450259"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:54.451847"], ["updated_at", "2023-02-17 19:37:54.451847"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:54.476712"], ["updated_at", "2023-02-17 19:37:54.476712"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:54.478044"], ["updated_at", "2023-02-17 19:37:54.478044"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.479200"], ["updated_at", "2023-02-17 19:37:54.479200"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.480321"], ["updated_at", "2023-02-17 19:37:54.480321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.481505"], ["updated_at", "2023-02-17 19:37:54.481505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.482634"], ["updated_at", "2023-02-17 19:37:54.482634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.483736"], ["updated_at", "2023-02-17 19:37:54.483736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.484831"], ["updated_at", "2023-02-17 19:37:54.484831"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.485935"], ["updated_at", "2023-02-17 19:37:54.485935"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.486978"], ["updated_at", "2023-02-17 19:37:54.486978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.488169"], ["updated_at", "2023-02-17 19:37:54.488169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.489345"], ["updated_at", "2023-02-17 19:37:54.489345"]]
LikertScaleAnswer Create (0.5ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.490540"], ["updated_at", "2023-02-17 19:37:54.490540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.492140"], ["updated_at", "2023-02-17 19:37:54.492140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.493395"], ["updated_at", "2023-02-17 19:37:54.493395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:54.494578"], ["updated_at", "2023-02-17 19:37:54.494578"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:54.518913"], ["updated_at", "2023-02-17 19:37:54.518913"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:54.520151"], ["updated_at", "2023-02-17 19:37:54.520151"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.521281"], ["updated_at", "2023-02-17 19:37:54.521281"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.522492"], ["updated_at", "2023-02-17 19:37:54.522492"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.523750"], ["updated_at", "2023-02-17 19:37:54.523750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.524883"], ["updated_at", "2023-02-17 19:37:54.524883"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.526207"], ["updated_at", "2023-02-17 19:37:54.526207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.527350"], ["updated_at", "2023-02-17 19:37:54.527350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.528469"], ["updated_at", "2023-02-17 19:37:54.528469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.529516"], ["updated_at", "2023-02-17 19:37:54.529516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.531185"], ["updated_at", "2023-02-17 19:37:54.531185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.532419"], ["updated_at", "2023-02-17 19:37:54.532419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.533442"], ["updated_at", "2023-02-17 19:37:54.533442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.534341"], ["updated_at", "2023-02-17 19:37:54.534341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.535266"], ["updated_at", "2023-02-17 19:37:54.535266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:54.536184"], ["updated_at", "2023-02-17 19:37:54.536184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:54.557755"], ["updated_at", "2023-02-17 19:37:54.557755"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:54.559224"], ["updated_at", "2023-02-17 19:37:54.559224"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.560233"], ["updated_at", "2023-02-17 19:37:54.560233"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.561237"], ["updated_at", "2023-02-17 19:37:54.561237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.562690"], ["updated_at", "2023-02-17 19:37:54.562690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.563696"], ["updated_at", "2023-02-17 19:37:54.563696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.564632"], ["updated_at", "2023-02-17 19:37:54.564632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.565590"], ["updated_at", "2023-02-17 19:37:54.565590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.566530"], ["updated_at", "2023-02-17 19:37:54.566530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.567524"], ["updated_at", "2023-02-17 19:37:54.567524"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.568471"], ["updated_at", "2023-02-17 19:37:54.568471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.569436"], ["updated_at", "2023-02-17 19:37:54.569436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.570391"], ["updated_at", "2023-02-17 19:37:54.570391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.571318"], ["updated_at", "2023-02-17 19:37:54.571318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.572804"], ["updated_at", "2023-02-17 19:37:54.572804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:54.573883"], ["updated_at", "2023-02-17 19:37:54.573883"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:54.597443"], ["updated_at", "2023-02-17 19:37:54.597443"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:54.598718"], ["updated_at", "2023-02-17 19:37:54.598718"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.599738"], ["updated_at", "2023-02-17 19:37:54.599738"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.600711"], ["updated_at", "2023-02-17 19:37:54.600711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.601784"], ["updated_at", "2023-02-17 19:37:54.601784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.602795"], ["updated_at", "2023-02-17 19:37:54.602795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.603741"], ["updated_at", "2023-02-17 19:37:54.603741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.604715"], ["updated_at", "2023-02-17 19:37:54.604715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.605718"], ["updated_at", "2023-02-17 19:37:54.605718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.606722"], ["updated_at", "2023-02-17 19:37:54.606722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.607704"], ["updated_at", "2023-02-17 19:37:54.607704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.608941"], ["updated_at", "2023-02-17 19:37:54.608941"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.609905"], ["updated_at", "2023-02-17 19:37:54.609905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.610846"], ["updated_at", "2023-02-17 19:37:54.610846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.612430"], ["updated_at", "2023-02-17 19:37:54.612430"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:54.613503"], ["updated_at", "2023-02-17 19:37:54.613503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:37:54 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 16ms (Views: 12.1ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (2.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:54.641951"], ["updated_at", "2023-02-17 19:37:54.641951"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:37:54.645615"], ["updated_at", "2023-02-17 19:37:54.645615"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:54.650939"], ["updated_at", "2023-02-17 19:37:54.650939"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:37:54.653222"], ["updated_at", "2023-02-17 19:37:54.653222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:37:54.657968"], ["updated_at", "2023-02-17 19:37:54.657968"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:37:54.659537"], ["updated_at", "2023-02-17 19:37:54.659537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:37:54.662364"], ["updated_at", "2023-02-17 19:37:54.662364"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:37:54.664796"], ["updated_at", "2023-02-17 19:37:54.664796"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:37:54.668210"], ["updated_at", "2023-02-17 19:37:54.668210"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:37:54.671503"], ["updated_at", "2023-02-17 19:37:54.671503"], ["role_id", 34]]
TRANSACTION (0.3ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:37:54.674520"], ["updated_at", "2023-02-17 19:37:54.674520"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:37:54.676703"], ["updated_at", "2023-02-17 19:37:54.676703"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:37:54.679409"], ["updated_at", "2023-02-17 19:37:54.679409"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:37:54.681153"], ["updated_at", "2023-02-17 19:37:54.681153"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:37:54.683160"], ["updated_at", "2023-02-17 19:37:54.683160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:37:54.685056"], ["updated_at", "2023-02-17 19:37:54.685056"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:37:54.687067"], ["updated_at", "2023-02-17 19:37:54.687067"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:37:54.688899"], ["updated_at", "2023-02-17 19:37:54.688899"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.5ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:37:54.691002"], ["updated_at", "2023-02-17 19:37:54.691002"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:37:54.693513"], ["updated_at", "2023-02-17 19:37:54.693513"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:37:54.695697"], ["updated_at", "2023-02-17 19:37:54.695697"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:37:54.697489"], ["updated_at", "2023-02-17 19:37:54.697489"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:37:54.699610"], ["updated_at", "2023-02-17 19:37:54.699610"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:37:54.701522"], ["updated_at", "2023-02-17 19:37:54.701522"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:37:54.703653"], ["updated_at", "2023-02-17 19:37:54.703653"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:37:54.705584"], ["updated_at", "2023-02-17 19:37:54.705584"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:37:54.707821"], ["updated_at", "2023-02-17 19:37:54.707821"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:37:54.709718"], ["updated_at", "2023-02-17 19:37:54.709718"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:37:54.712214"], ["updated_at", "2023-02-17 19:37:54.712214"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:37:54.714195"], ["updated_at", "2023-02-17 19:37:54.714195"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:37:54.716228"], ["updated_at", "2023-02-17 19:37:54.716228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:37:54.718054"], ["updated_at", "2023-02-17 19:37:54.718054"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:37:54.720017"], ["updated_at", "2023-02-17 19:37:54.720017"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:37:54.722022"], ["updated_at", "2023-02-17 19:37:54.722022"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:37:54.724261"], ["updated_at", "2023-02-17 19:37:54.724261"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:37:54.726155"], ["updated_at", "2023-02-17 19:37:54.726155"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:37:54.728306"], ["updated_at", "2023-02-17 19:37:54.728306"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:37:54.730206"], ["updated_at", "2023-02-17 19:37:54.730206"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:37:54.732710"], ["updated_at", "2023-02-17 19:37:54.732710"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:37:54.734715"], ["updated_at", "2023-02-17 19:37:54.734715"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:37:54.736809"], ["updated_at", "2023-02-17 19:37:54.736809"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:37:54.738759"], ["updated_at", "2023-02-17 19:37:54.738759"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:37:54.740891"], ["updated_at", "2023-02-17 19:37:54.740891"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:37:54.742871"], ["updated_at", "2023-02-17 19:37:54.742871"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:37:54.745120"], ["updated_at", "2023-02-17 19:37:54.745120"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:37:54.747001"], ["updated_at", "2023-02-17 19:37:54.747001"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:37:54.749107"], ["updated_at", "2023-02-17 19:37:54.749107"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:37:54.751035"], ["updated_at", "2023-02-17 19:37:54.751035"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:37:54.753645"], ["updated_at", "2023-02-17 19:37:54.753645"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:37:54.755569"], ["updated_at", "2023-02-17 19:37:54.755569"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:37:54.757772"], ["updated_at", "2023-02-17 19:37:54.757772"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:37:54.759726"], ["updated_at", "2023-02-17 19:37:54.759726"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:37:54.761915"], ["updated_at", "2023-02-17 19:37:54.761915"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.6ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:37:54.763916"], ["updated_at", "2023-02-17 19:37:54.763916"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:37:54.766476"], ["updated_at", "2023-02-17 19:37:54.766476"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:37:54.768398"], ["updated_at", "2023-02-17 19:37:54.768398"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:37:54.770527"], ["updated_at", "2023-02-17 19:37:54.770527"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:37:54.772808"], ["updated_at", "2023-02-17 19:37:54.772808"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:37:54.774971"], ["updated_at", "2023-02-17 19:37:54.774971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:37:54.776891"], ["updated_at", "2023-02-17 19:37:54.776891"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:37:54.779046"], ["updated_at", "2023-02-17 19:37:54.779046"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:37:54.780896"], ["updated_at", "2023-02-17 19:37:54.780896"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:37:54.783039"], ["updated_at", "2023-02-17 19:37:54.783039"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:37:54.785001"], ["updated_at", "2023-02-17 19:37:54.785001"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:37:54.787074"], ["updated_at", "2023-02-17 19:37:54.787074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:37:54.788970"], ["updated_at", "2023-02-17 19:37:54.788970"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:37:54.791074"], ["updated_at", "2023-02-17 19:37:54.791074"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:37:54.793420"], ["updated_at", "2023-02-17 19:37:54.793420"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:37:54.795615"], ["updated_at", "2023-02-17 19:37:54.795615"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:37:54.797535"], ["updated_at", "2023-02-17 19:37:54.797535"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:37:54.799751"], ["updated_at", "2023-02-17 19:37:54.799751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:37:54.801635"], ["updated_at", "2023-02-17 19:37:54.801635"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:37:54.803734"], ["updated_at", "2023-02-17 19:37:54.803734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:37:54.805667"], ["updated_at", "2023-02-17 19:37:54.805667"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:37:54.807766"], ["updated_at", "2023-02-17 19:37:54.807766"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:37:54.809619"], ["updated_at", "2023-02-17 19:37:54.809619"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:37:54.811907"], ["updated_at", "2023-02-17 19:37:54.811907"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:37:54.814348"], ["updated_at", "2023-02-17 19:37:54.814348"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:37:54.816577"], ["updated_at", "2023-02-17 19:37:54.816577"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:37:54.818600"], ["updated_at", "2023-02-17 19:37:54.818600"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:37:54.820844"], ["updated_at", "2023-02-17 19:37:54.820844"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:37:54.822952"], ["updated_at", "2023-02-17 19:37:54.822952"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:37:54.825170"], ["updated_at", "2023-02-17 19:37:54.825170"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:37:54.827161"], ["updated_at", "2023-02-17 19:37:54.827161"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:37:54.829361"], ["updated_at", "2023-02-17 19:37:54.829361"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:37:54.831178"], ["updated_at", "2023-02-17 19:37:54.831178"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:37:54.833738"], ["updated_at", "2023-02-17 19:37:54.833738"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:37:54.835729"], ["updated_at", "2023-02-17 19:37:54.835729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:37:54.837786"], ["updated_at", "2023-02-17 19:37:54.837786"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:37:54.839599"], ["updated_at", "2023-02-17 19:37:54.839599"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:37:54.841642"], ["updated_at", "2023-02-17 19:37:54.841642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:37:54.843464"], ["updated_at", "2023-02-17 19:37:54.843464"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:37:54.845441"], ["updated_at", "2023-02-17 19:37:54.845441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:37:54.847245"], ["updated_at", "2023-02-17 19:37:54.847245"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:37:54.849804"], ["updated_at", "2023-02-17 19:37:54.849804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:37:54.851413"], ["updated_at", "2023-02-17 19:37:54.851413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:37:54.853634"], ["updated_at", "2023-02-17 19:37:54.853634"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:37:54.855959"], ["updated_at", "2023-02-17 19:37:54.855959"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.6ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:37:54.858158"], ["updated_at", "2023-02-17 19:37:54.858158"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:37:54.860699"], ["updated_at", "2023-02-17 19:37:54.860699"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:37:54.862552"], ["updated_at", "2023-02-17 19:37:54.862552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.0ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:54.876861"], ["updated_at", "2023-02-17 19:37:54.876861"], ["role_id", 2]]
SurveyQuestion Create (1.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:54.879336"], ["updated_at", "2023-02-17 19:37:54.879336"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:54.881963"], ["updated_at", "2023-02-17 19:37:54.881963"]]
QuestionOption Create (1.0ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.883310"], ["updated_at", "2023-02-17 19:37:54.883310"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.885336"], ["updated_at", "2023-02-17 19:37:54.885336"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.886511"], ["updated_at", "2023-02-17 19:37:54.886511"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.887613"], ["updated_at", "2023-02-17 19:37:54.887613"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.888645"], ["updated_at", "2023-02-17 19:37:54.888645"]]
SurveyQuestion Create (0.4ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:54.889868"], ["updated_at", "2023-02-17 19:37:54.889868"]]
LikertScaleQuestion Create (1.0ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.891824"], ["updated_at", "2023-02-17 19:37:54.891824"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.893908"], ["updated_at", "2023-02-17 19:37:54.893908"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.895099"], ["updated_at", "2023-02-17 19:37:54.895099"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.896225"], ["updated_at", "2023-02-17 19:37:54.896225"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.898702"], ["updated_at", "2023-02-17 19:37:54.898702"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.900065"], ["updated_at", "2023-02-17 19:37:54.900065"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.901290"], ["updated_at", "2023-02-17 19:37:54.901290"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.902508"], ["updated_at", "2023-02-17 19:37:54.902508"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.903669"], ["updated_at", "2023-02-17 19:37:54.903669"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.904722"], ["updated_at", "2023-02-17 19:37:54.904722"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.905880"], ["updated_at", "2023-02-17 19:37:54.905880"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.907294"], ["updated_at", "2023-02-17 19:37:54.907294"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:54.921940"], ["updated_at", "2023-02-17 19:37:54.921940"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:54.923816"], ["updated_at", "2023-02-17 19:37:54.923816"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:54.925430"], ["updated_at", "2023-02-17 19:37:54.925430"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:54.926721"], ["updated_at", "2023-02-17 19:37:54.926721"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:54.927807"], ["updated_at", "2023-02-17 19:37:54.927807"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:54.928817"], ["updated_at", "2023-02-17 19:37:54.928817"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:54.929904"], ["updated_at", "2023-02-17 19:37:54.929904"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:54.930904"], ["updated_at", "2023-02-17 19:37:54.930904"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:54.932404"], ["updated_at", "2023-02-17 19:37:54.932404"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.933798"], ["updated_at", "2023-02-17 19:37:54.933798"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.934970"], ["updated_at", "2023-02-17 19:37:54.934970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.936091"], ["updated_at", "2023-02-17 19:37:54.936091"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.937186"], ["updated_at", "2023-02-17 19:37:54.937186"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.938344"], ["updated_at", "2023-02-17 19:37:54.938344"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.939466"], ["updated_at", "2023-02-17 19:37:54.939466"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.940954"], ["updated_at", "2023-02-17 19:37:54.940954"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.942227"], ["updated_at", "2023-02-17 19:37:54.942227"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.943373"], ["updated_at", "2023-02-17 19:37:54.943373"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.944511"], ["updated_at", "2023-02-17 19:37:54.944511"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.945641"], ["updated_at", "2023-02-17 19:37:54.945641"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:54.946755"], ["updated_at", "2023-02-17 19:37:54.946755"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (2.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:54.970393"], ["updated_at", "2023-02-17 19:37:54.970393"]]
QuestionAnswer Create (1.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:54.973772"], ["updated_at", "2023-02-17 19:37:54.973772"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:54.976480"], ["updated_at", "2023-02-17 19:37:54.976480"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:54.977669"], ["updated_at", "2023-02-17 19:37:54.977669"]]
LikertScaleAnswer Create (1.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.978904"], ["updated_at", "2023-02-17 19:37:54.978904"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.981407"], ["updated_at", "2023-02-17 19:37:54.981407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.982554"], ["updated_at", "2023-02-17 19:37:54.982554"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.983476"], ["updated_at", "2023-02-17 19:37:54.983476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.984543"], ["updated_at", "2023-02-17 19:37:54.984543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.985669"], ["updated_at", "2023-02-17 19:37:54.985669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.987047"], ["updated_at", "2023-02-17 19:37:54.987047"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.988218"], ["updated_at", "2023-02-17 19:37:54.988218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.989239"], ["updated_at", "2023-02-17 19:37:54.989239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.990301"], ["updated_at", "2023-02-17 19:37:54.990301"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.991496"], ["updated_at", "2023-02-17 19:37:54.991496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:54.993318"], ["updated_at", "2023-02-17 19:37:54.993318"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.022852"], ["updated_at", "2023-02-17 19:37:55.022852"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.024356"], ["updated_at", "2023-02-17 19:37:55.024356"]]
QuestionAnswer Create (0.4ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.025815"], ["updated_at", "2023-02-17 19:37:55.025815"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.028425"], ["updated_at", "2023-02-17 19:37:55.028425"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.029711"], ["updated_at", "2023-02-17 19:37:55.029711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.030893"], ["updated_at", "2023-02-17 19:37:55.030893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.032098"], ["updated_at", "2023-02-17 19:37:55.032098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.033729"], ["updated_at", "2023-02-17 19:37:55.033729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.034887"], ["updated_at", "2023-02-17 19:37:55.034887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.036014"], ["updated_at", "2023-02-17 19:37:55.036014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.037148"], ["updated_at", "2023-02-17 19:37:55.037148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.038653"], ["updated_at", "2023-02-17 19:37:55.038653"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.039797"], ["updated_at", "2023-02-17 19:37:55.039797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.040917"], ["updated_at", "2023-02-17 19:37:55.040917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.042061"], ["updated_at", "2023-02-17 19:37:55.042061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.043735"], ["updated_at", "2023-02-17 19:37:55.043735"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.077500"], ["updated_at", "2023-02-17 19:37:55.077500"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.079079"], ["updated_at", "2023-02-17 19:37:55.079079"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.080259"], ["updated_at", "2023-02-17 19:37:55.080259"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.081849"], ["updated_at", "2023-02-17 19:37:55.081849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.083035"], ["updated_at", "2023-02-17 19:37:55.083035"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.084182"], ["updated_at", "2023-02-17 19:37:55.084182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.085275"], ["updated_at", "2023-02-17 19:37:55.085275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.086394"], ["updated_at", "2023-02-17 19:37:55.086394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.087867"], ["updated_at", "2023-02-17 19:37:55.087867"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.089112"], ["updated_at", "2023-02-17 19:37:55.089112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.090550"], ["updated_at", "2023-02-17 19:37:55.090550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.091834"], ["updated_at", "2023-02-17 19:37:55.091834"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.093430"], ["updated_at", "2023-02-17 19:37:55.093430"]]
LikertScaleAnswer Create (0.5ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.094871"], ["updated_at", "2023-02-17 19:37:55.094871"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.096527"], ["updated_at", "2023-02-17 19:37:55.096527"]]
LikertScaleAnswer Create (0.5ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.097821"], ["updated_at", "2023-02-17 19:37:55.097821"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.125014"], ["updated_at", "2023-02-17 19:37:55.125014"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.126574"], ["updated_at", "2023-02-17 19:37:55.126574"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.127928"], ["updated_at", "2023-02-17 19:37:55.127928"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.129607"], ["updated_at", "2023-02-17 19:37:55.129607"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.130934"], ["updated_at", "2023-02-17 19:37:55.130934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.132551"], ["updated_at", "2023-02-17 19:37:55.132551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.133681"], ["updated_at", "2023-02-17 19:37:55.133681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.134799"], ["updated_at", "2023-02-17 19:37:55.134799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.135916"], ["updated_at", "2023-02-17 19:37:55.135916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.137011"], ["updated_at", "2023-02-17 19:37:55.137011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.138635"], ["updated_at", "2023-02-17 19:37:55.138635"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.139918"], ["updated_at", "2023-02-17 19:37:55.139918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.141166"], ["updated_at", "2023-02-17 19:37:55.141166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.142367"], ["updated_at", "2023-02-17 19:37:55.142367"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.143519"], ["updated_at", "2023-02-17 19:37:55.143519"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.145050"], ["updated_at", "2023-02-17 19:37:55.145050"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.4ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.174512"], ["updated_at", "2023-02-17 19:37:55.174512"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.176055"], ["updated_at", "2023-02-17 19:37:55.176055"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.177391"], ["updated_at", "2023-02-17 19:37:55.177391"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.179241"], ["updated_at", "2023-02-17 19:37:55.179241"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.180565"], ["updated_at", "2023-02-17 19:37:55.180565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.183006"], ["updated_at", "2023-02-17 19:37:55.183006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.184237"], ["updated_at", "2023-02-17 19:37:55.184237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.185936"], ["updated_at", "2023-02-17 19:37:55.185936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.187129"], ["updated_at", "2023-02-17 19:37:55.187129"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.188279"], ["updated_at", "2023-02-17 19:37:55.188279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.189438"], ["updated_at", "2023-02-17 19:37:55.189438"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.190741"], ["updated_at", "2023-02-17 19:37:55.190741"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.193155"], ["updated_at", "2023-02-17 19:37:55.193155"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.194956"], ["updated_at", "2023-02-17 19:37:55.194956"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.196114"], ["updated_at", "2023-02-17 19:37:55.196114"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.197205"], ["updated_at", "2023-02-17 19:37:55.197205"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.221929"], ["updated_at", "2023-02-17 19:37:55.221929"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.223250"], ["updated_at", "2023-02-17 19:37:55.223250"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.224485"], ["updated_at", "2023-02-17 19:37:55.224485"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.225901"], ["updated_at", "2023-02-17 19:37:55.225901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.227135"], ["updated_at", "2023-02-17 19:37:55.227135"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.228316"], ["updated_at", "2023-02-17 19:37:55.228316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.229486"], ["updated_at", "2023-02-17 19:37:55.229486"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.230920"], ["updated_at", "2023-02-17 19:37:55.230920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.232080"], ["updated_at", "2023-02-17 19:37:55.232080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.233663"], ["updated_at", "2023-02-17 19:37:55.233663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.234785"], ["updated_at", "2023-02-17 19:37:55.234785"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.235905"], ["updated_at", "2023-02-17 19:37:55.235905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.237031"], ["updated_at", "2023-02-17 19:37:55.237031"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.238105"], ["updated_at", "2023-02-17 19:37:55.238105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.239594"], ["updated_at", "2023-02-17 19:37:55.239594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.240783"], ["updated_at", "2023-02-17 19:37:55.240783"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:37:55 -0300 Processing by MembersController#index as HTML

Member Load (0.4ms)  SELECT "members".* FROM "members"

Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.4ms | Allocations: 7429)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (4.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:55.265698"], ["updated_at", "2023-02-17 19:37:55.265698"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (1.0ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:37:55.271573"], ["updated_at", "2023-02-17 19:37:55.271573"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:55.278974"], ["updated_at", "2023-02-17 19:37:55.278974"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:37:55.281040"], ["updated_at", "2023-02-17 19:37:55.281040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:37:55.286332"], ["updated_at", "2023-02-17 19:37:55.286332"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:37:55.288107"], ["updated_at", "2023-02-17 19:37:55.288107"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.7ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:37:55.294141"], ["updated_at", "2023-02-17 19:37:55.294141"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.4ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:37:55.297124"], ["updated_at", "2023-02-17 19:37:55.297124"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:37:55.300833"], ["updated_at", "2023-02-17 19:37:55.300833"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:37:55.304603"], ["updated_at", "2023-02-17 19:37:55.304603"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:37:55.309195"], ["updated_at", "2023-02-17 19:37:55.309195"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:37:55.311541"], ["updated_at", "2023-02-17 19:37:55.311541"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:37:55.313905"], ["updated_at", "2023-02-17 19:37:55.313905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:37:55.315822"], ["updated_at", "2023-02-17 19:37:55.315822"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:37:55.317950"], ["updated_at", "2023-02-17 19:37:55.317950"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:37:55.320305"], ["updated_at", "2023-02-17 19:37:55.320305"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:37:55.322253"], ["updated_at", "2023-02-17 19:37:55.322253"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:37:55.326950"], ["updated_at", "2023-02-17 19:37:55.326950"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:37:55.329620"], ["updated_at", "2023-02-17 19:37:55.329620"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:37:55.332471"], ["updated_at", "2023-02-17 19:37:55.332471"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:37:55.335028"], ["updated_at", "2023-02-17 19:37:55.335028"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:37:55.337583"], ["updated_at", "2023-02-17 19:37:55.337583"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:37:55.339756"], ["updated_at", "2023-02-17 19:37:55.339756"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:37:55.344641"], ["updated_at", "2023-02-17 19:37:55.344641"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:37:55.346895"], ["updated_at", "2023-02-17 19:37:55.346895"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:37:55.350027"], ["updated_at", "2023-02-17 19:37:55.350027"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:37:55.352686"], ["updated_at", "2023-02-17 19:37:55.352686"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:37:55.354923"], ["updated_at", "2023-02-17 19:37:55.354923"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:37:55.356980"], ["updated_at", "2023-02-17 19:37:55.356980"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:37:55.362037"], ["updated_at", "2023-02-17 19:37:55.362037"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:37:55.364157"], ["updated_at", "2023-02-17 19:37:55.364157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:37:55.366342"], ["updated_at", "2023-02-17 19:37:55.366342"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:37:55.368890"], ["updated_at", "2023-02-17 19:37:55.368890"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:37:55.371355"], ["updated_at", "2023-02-17 19:37:55.371355"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:37:55.373435"], ["updated_at", "2023-02-17 19:37:55.373435"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:37:55.378217"], ["updated_at", "2023-02-17 19:37:55.378217"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:37:55.380334"], ["updated_at", "2023-02-17 19:37:55.380334"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:37:55.382230"], ["updated_at", "2023-02-17 19:37:55.382230"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:37:55.384319"], ["updated_at", "2023-02-17 19:37:55.384319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:37:55.386530"], ["updated_at", "2023-02-17 19:37:55.386530"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (3.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:37:55.389024"], ["updated_at", "2023-02-17 19:37:55.389024"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:37:55.394489"], ["updated_at", "2023-02-17 19:37:55.394489"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:37:55.396646"], ["updated_at", "2023-02-17 19:37:55.396646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:37:55.398598"], ["updated_at", "2023-02-17 19:37:55.398598"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:37:55.400635"], ["updated_at", "2023-02-17 19:37:55.400635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:37:55.402482"], ["updated_at", "2023-02-17 19:37:55.402482"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:37:55.405026"], ["updated_at", "2023-02-17 19:37:55.405026"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:37:55.408541"], ["updated_at", "2023-02-17 19:37:55.408541"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:37:55.411188"], ["updated_at", "2023-02-17 19:37:55.411188"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:37:55.413343"], ["updated_at", "2023-02-17 19:37:55.413343"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:37:55.415425"], ["updated_at", "2023-02-17 19:37:55.415425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:37:55.417377"], ["updated_at", "2023-02-17 19:37:55.417377"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:37:55.419605"], ["updated_at", "2023-02-17 19:37:55.419605"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.6ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:37:55.421515"], ["updated_at", "2023-02-17 19:37:55.421515"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:37:55.424273"], ["updated_at", "2023-02-17 19:37:55.424273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:37:55.426209"], ["updated_at", "2023-02-17 19:37:55.426209"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.5ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:37:55.428354"], ["updated_at", "2023-02-17 19:37:55.428354"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:37:55.430700"], ["updated_at", "2023-02-17 19:37:55.430700"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:37:55.432757"], ["updated_at", "2023-02-17 19:37:55.432757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:37:55.434647"], ["updated_at", "2023-02-17 19:37:55.434647"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:37:55.436746"], ["updated_at", "2023-02-17 19:37:55.436746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:37:55.438752"], ["updated_at", "2023-02-17 19:37:55.438752"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:37:55.441123"], ["updated_at", "2023-02-17 19:37:55.441123"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:37:55.443138"], ["updated_at", "2023-02-17 19:37:55.443138"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:37:55.445290"], ["updated_at", "2023-02-17 19:37:55.445290"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:37:55.447204"], ["updated_at", "2023-02-17 19:37:55.447204"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:37:55.449315"], ["updated_at", "2023-02-17 19:37:55.449315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:37:55.451772"], ["updated_at", "2023-02-17 19:37:55.451772"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:37:55.453903"], ["updated_at", "2023-02-17 19:37:55.453903"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:37:55.455818"], ["updated_at", "2023-02-17 19:37:55.455818"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:37:55.457968"], ["updated_at", "2023-02-17 19:37:55.457968"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:37:55.460031"], ["updated_at", "2023-02-17 19:37:55.460031"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:37:55.462446"], ["updated_at", "2023-02-17 19:37:55.462446"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:37:55.464418"], ["updated_at", "2023-02-17 19:37:55.464418"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:37:55.466525"], ["updated_at", "2023-02-17 19:37:55.466525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:37:55.468375"], ["updated_at", "2023-02-17 19:37:55.468375"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:37:55.471128"], ["updated_at", "2023-02-17 19:37:55.471128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:37:55.473066"], ["updated_at", "2023-02-17 19:37:55.473066"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:37:55.475223"], ["updated_at", "2023-02-17 19:37:55.475223"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:37:55.477212"], ["updated_at", "2023-02-17 19:37:55.477212"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:37:55.479439"], ["updated_at", "2023-02-17 19:37:55.479439"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:37:55.481336"], ["updated_at", "2023-02-17 19:37:55.481336"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:37:55.483418"], ["updated_at", "2023-02-17 19:37:55.483418"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:37:55.485345"], ["updated_at", "2023-02-17 19:37:55.485345"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:37:55.487491"], ["updated_at", "2023-02-17 19:37:55.487491"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:37:55.489857"], ["updated_at", "2023-02-17 19:37:55.489857"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:37:55.492134"], ["updated_at", "2023-02-17 19:37:55.492134"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:37:55.494190"], ["updated_at", "2023-02-17 19:37:55.494190"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:37:55.496367"], ["updated_at", "2023-02-17 19:37:55.496367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:37:55.498286"], ["updated_at", "2023-02-17 19:37:55.498286"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:37:55.500435"], ["updated_at", "2023-02-17 19:37:55.500435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:37:55.502289"], ["updated_at", "2023-02-17 19:37:55.502289"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:37:55.504511"], ["updated_at", "2023-02-17 19:37:55.504511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:37:55.506437"], ["updated_at", "2023-02-17 19:37:55.506437"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:37:55.508576"], ["updated_at", "2023-02-17 19:37:55.508576"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:37:55.510316"], ["updated_at", "2023-02-17 19:37:55.510316"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:37:55.512652"], ["updated_at", "2023-02-17 19:37:55.512652"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:37:55.514749"], ["updated_at", "2023-02-17 19:37:55.514749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.5ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:37:55.516932"], ["updated_at", "2023-02-17 19:37:55.516932"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:37:55.519231"], ["updated_at", "2023-02-17 19:37:55.519231"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:37:55.520985"], ["updated_at", "2023-02-17 19:37:55.520985"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.0ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:55.535335"], ["updated_at", "2023-02-17 19:37:55.535335"], ["role_id", 2]]
SurveyQuestion Create (1.4ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:55.537808"], ["updated_at", "2023-02-17 19:37:55.537808"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:55.540460"], ["updated_at", "2023-02-17 19:37:55.540460"]]
QuestionOption Create (1.0ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.541785"], ["updated_at", "2023-02-17 19:37:55.541785"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.543804"], ["updated_at", "2023-02-17 19:37:55.543804"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.545041"], ["updated_at", "2023-02-17 19:37:55.545041"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.546144"], ["updated_at", "2023-02-17 19:37:55.546144"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.547242"], ["updated_at", "2023-02-17 19:37:55.547242"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:55.548835"], ["updated_at", "2023-02-17 19:37:55.548835"]]
LikertScaleQuestion Create (1.0ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.550209"], ["updated_at", "2023-02-17 19:37:55.550209"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.552313"], ["updated_at", "2023-02-17 19:37:55.552313"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.553541"], ["updated_at", "2023-02-17 19:37:55.553541"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.554758"], ["updated_at", "2023-02-17 19:37:55.554758"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.555940"], ["updated_at", "2023-02-17 19:37:55.555940"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.557182"], ["updated_at", "2023-02-17 19:37:55.557182"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.558431"], ["updated_at", "2023-02-17 19:37:55.558431"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.559669"], ["updated_at", "2023-02-17 19:37:55.559669"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.560881"], ["updated_at", "2023-02-17 19:37:55.560881"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.562136"], ["updated_at", "2023-02-17 19:37:55.562136"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.563314"], ["updated_at", "2023-02-17 19:37:55.563314"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.564520"], ["updated_at", "2023-02-17 19:37:55.564520"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:55.579498"], ["updated_at", "2023-02-17 19:37:55.579498"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:55.581233"], ["updated_at", "2023-02-17 19:37:55.581233"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:55.582644"], ["updated_at", "2023-02-17 19:37:55.582644"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:55.583956"], ["updated_at", "2023-02-17 19:37:55.583956"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:55.585175"], ["updated_at", "2023-02-17 19:37:55.585175"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:55.586317"], ["updated_at", "2023-02-17 19:37:55.586317"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:55.587460"], ["updated_at", "2023-02-17 19:37:55.587460"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:55.588652"], ["updated_at", "2023-02-17 19:37:55.588652"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:55.589921"], ["updated_at", "2023-02-17 19:37:55.589921"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.591246"], ["updated_at", "2023-02-17 19:37:55.591246"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.592925"], ["updated_at", "2023-02-17 19:37:55.592925"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.594227"], ["updated_at", "2023-02-17 19:37:55.594227"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.595506"], ["updated_at", "2023-02-17 19:37:55.595506"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.596731"], ["updated_at", "2023-02-17 19:37:55.596731"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.597927"], ["updated_at", "2023-02-17 19:37:55.597927"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.599155"], ["updated_at", "2023-02-17 19:37:55.599155"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.600356"], ["updated_at", "2023-02-17 19:37:55.600356"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.601560"], ["updated_at", "2023-02-17 19:37:55.601560"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.602816"], ["updated_at", "2023-02-17 19:37:55.602816"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.604055"], ["updated_at", "2023-02-17 19:37:55.604055"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:55.605209"], ["updated_at", "2023-02-17 19:37:55.605209"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.5ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.8ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.631490"], ["updated_at", "2023-02-17 19:37:55.631490"]]
QuestionAnswer Create (1.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.634520"], ["updated_at", "2023-02-17 19:37:55.634520"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.636976"], ["updated_at", "2023-02-17 19:37:55.636976"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.638119"], ["updated_at", "2023-02-17 19:37:55.638119"]]
 (1.0ms)  SELECT sqlite_version(*)
LikertScaleAnswer Create (1.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.639419"], ["updated_at", "2023-02-17 19:37:55.639419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.641949"], ["updated_at", "2023-02-17 19:37:55.641949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.643174"], ["updated_at", "2023-02-17 19:37:55.643174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.644379"], ["updated_at", "2023-02-17 19:37:55.644379"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.645771"], ["updated_at", "2023-02-17 19:37:55.645771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.646968"], ["updated_at", "2023-02-17 19:37:55.646968"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.648114"], ["updated_at", "2023-02-17 19:37:55.648114"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.649284"], ["updated_at", "2023-02-17 19:37:55.649284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.650913"], ["updated_at", "2023-02-17 19:37:55.650913"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.652060"], ["updated_at", "2023-02-17 19:37:55.652060"]]
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.653207"], ["updated_at", "2023-02-17 19:37:55.653207"]]
 (0.1ms)  SELECT sqlite_version(*)
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:55.654492"], ["updated_at", "2023-02-17 19:37:55.654492"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.682507"], ["updated_at", "2023-02-17 19:37:55.682507"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.683847"], ["updated_at", "2023-02-17 19:37:55.683847"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.685100"], ["updated_at", "2023-02-17 19:37:55.685100"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.686257"], ["updated_at", "2023-02-17 19:37:55.686257"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.687484"], ["updated_at", "2023-02-17 19:37:55.687484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.688718"], ["updated_at", "2023-02-17 19:37:55.688718"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.691759"], ["updated_at", "2023-02-17 19:37:55.691759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.693081"], ["updated_at", "2023-02-17 19:37:55.693081"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.694301"], ["updated_at", "2023-02-17 19:37:55.694301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.695484"], ["updated_at", "2023-02-17 19:37:55.695484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.696625"], ["updated_at", "2023-02-17 19:37:55.696625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.697783"], ["updated_at", "2023-02-17 19:37:55.697783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.698976"], ["updated_at", "2023-02-17 19:37:55.698976"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.700156"], ["updated_at", "2023-02-17 19:37:55.700156"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.701320"], ["updated_at", "2023-02-17 19:37:55.701320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:55.702486"], ["updated_at", "2023-02-17 19:37:55.702486"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (3.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.736952"], ["updated_at", "2023-02-17 19:37:55.736952"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.738863"], ["updated_at", "2023-02-17 19:37:55.738863"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.740204"], ["updated_at", "2023-02-17 19:37:55.740204"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.744541"], ["updated_at", "2023-02-17 19:37:55.744541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.746396"], ["updated_at", "2023-02-17 19:37:55.746396"]]
LikertScaleAnswer Create (0.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.747551"], ["updated_at", "2023-02-17 19:37:55.747551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.751430"], ["updated_at", "2023-02-17 19:37:55.751430"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.752936"], ["updated_at", "2023-02-17 19:37:55.752936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.754105"], ["updated_at", "2023-02-17 19:37:55.754105"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.755147"], ["updated_at", "2023-02-17 19:37:55.755147"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.756249"], ["updated_at", "2023-02-17 19:37:55.756249"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.760032"], ["updated_at", "2023-02-17 19:37:55.760032"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.762386"], ["updated_at", "2023-02-17 19:37:55.762386"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.763477"], ["updated_at", "2023-02-17 19:37:55.763477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.765398"], ["updated_at", "2023-02-17 19:37:55.765398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:55.766748"], ["updated_at", "2023-02-17 19:37:55.766748"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.3ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.804925"], ["updated_at", "2023-02-17 19:37:55.804925"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.806569"], ["updated_at", "2023-02-17 19:37:55.806569"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.808038"], ["updated_at", "2023-02-17 19:37:55.808038"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.812763"], ["updated_at", "2023-02-17 19:37:55.812763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.813992"], ["updated_at", "2023-02-17 19:37:55.813992"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.815123"], ["updated_at", "2023-02-17 19:37:55.815123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.816605"], ["updated_at", "2023-02-17 19:37:55.816605"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.818185"], ["updated_at", "2023-02-17 19:37:55.818185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.819778"], ["updated_at", "2023-02-17 19:37:55.819778"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.821216"], ["updated_at", "2023-02-17 19:37:55.821216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.822417"], ["updated_at", "2023-02-17 19:37:55.822417"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.827972"], ["updated_at", "2023-02-17 19:37:55.827972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.830505"], ["updated_at", "2023-02-17 19:37:55.830505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.831749"], ["updated_at", "2023-02-17 19:37:55.831749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.833725"], ["updated_at", "2023-02-17 19:37:55.833725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:55.835022"], ["updated_at", "2023-02-17 19:37:55.835022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.865352"], ["updated_at", "2023-02-17 19:37:55.865352"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.866868"], ["updated_at", "2023-02-17 19:37:55.866868"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.868133"], ["updated_at", "2023-02-17 19:37:55.868133"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.869144"], ["updated_at", "2023-02-17 19:37:55.869144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.871149"], ["updated_at", "2023-02-17 19:37:55.871149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.872350"], ["updated_at", "2023-02-17 19:37:55.872350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.873502"], ["updated_at", "2023-02-17 19:37:55.873502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.874880"], ["updated_at", "2023-02-17 19:37:55.874880"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.876129"], ["updated_at", "2023-02-17 19:37:55.876129"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.877434"], ["updated_at", "2023-02-17 19:37:55.877434"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.879317"], ["updated_at", "2023-02-17 19:37:55.879317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.880567"], ["updated_at", "2023-02-17 19:37:55.880567"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.881536"], ["updated_at", "2023-02-17 19:37:55.881536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.882835"], ["updated_at", "2023-02-17 19:37:55.882835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.884269"], ["updated_at", "2023-02-17 19:37:55.884269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:55.885294"], ["updated_at", "2023-02-17 19:37:55.885294"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.3ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:55.922025"], ["updated_at", "2023-02-17 19:37:55.922025"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:55.923377"], ["updated_at", "2023-02-17 19:37:55.923377"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:55.924885"], ["updated_at", "2023-02-17 19:37:55.924885"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:55.926116"], ["updated_at", "2023-02-17 19:37:55.926116"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.928245"], ["updated_at", "2023-02-17 19:37:55.928245"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.929153"], ["updated_at", "2023-02-17 19:37:55.929153"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.930170"], ["updated_at", "2023-02-17 19:37:55.930170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.931863"], ["updated_at", "2023-02-17 19:37:55.931863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.933045"], ["updated_at", "2023-02-17 19:37:55.933045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.933965"], ["updated_at", "2023-02-17 19:37:55.933965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.935214"], ["updated_at", "2023-02-17 19:37:55.935214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.936387"], ["updated_at", "2023-02-17 19:37:55.936387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.937208"], ["updated_at", "2023-02-17 19:37:55.937208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.937989"], ["updated_at", "2023-02-17 19:37:55.937989"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.939235"], ["updated_at", "2023-02-17 19:37:55.939235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:55.940582"], ["updated_at", "2023-02-17 19:37:55.940582"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:37:55 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:55.953299"], ["updated_at", "2023-02-17 19:37:55.953299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.3ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:37:55.954993"], ["updated_at", "2023-02-17 19:37:55.954993"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:55.959275"], ["updated_at", "2023-02-17 19:37:55.959275"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:37:55.961640"], ["updated_at", "2023-02-17 19:37:55.961640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.3ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:37:55.965569"], ["updated_at", "2023-02-17 19:37:55.965569"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:37:55.966879"], ["updated_at", "2023-02-17 19:37:55.966879"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:37:55.970147"], ["updated_at", "2023-02-17 19:37:55.970147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:37:55.971949"], ["updated_at", "2023-02-17 19:37:55.971949"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:37:55.974082"], ["updated_at", "2023-02-17 19:37:55.974082"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:37:55.976483"], ["updated_at", "2023-02-17 19:37:55.976483"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:37:55.978727"], ["updated_at", "2023-02-17 19:37:55.978727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:37:55.980430"], ["updated_at", "2023-02-17 19:37:55.980430"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:37:55.982972"], ["updated_at", "2023-02-17 19:37:55.982972"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:37:55.984853"], ["updated_at", "2023-02-17 19:37:55.984853"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:37:55.986921"], ["updated_at", "2023-02-17 19:37:55.986921"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:37:55.988246"], ["updated_at", "2023-02-17 19:37:55.988246"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:37:55.990463"], ["updated_at", "2023-02-17 19:37:55.990463"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:37:55.992194"], ["updated_at", "2023-02-17 19:37:55.992194"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:37:55.994553"], ["updated_at", "2023-02-17 19:37:55.994553"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:37:55.996643"], ["updated_at", "2023-02-17 19:37:55.996643"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:37:55.999213"], ["updated_at", "2023-02-17 19:37:55.999213"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:37:56.000958"], ["updated_at", "2023-02-17 19:37:56.000958"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:37:56.003664"], ["updated_at", "2023-02-17 19:37:56.003664"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:37:56.005960"], ["updated_at", "2023-02-17 19:37:56.005960"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:37:56.008031"], ["updated_at", "2023-02-17 19:37:56.008031"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:37:56.010087"], ["updated_at", "2023-02-17 19:37:56.010087"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:37:56.012231"], ["updated_at", "2023-02-17 19:37:56.012231"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:37:56.014245"], ["updated_at", "2023-02-17 19:37:56.014245"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:37:56.016732"], ["updated_at", "2023-02-17 19:37:56.016732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:37:56.018428"], ["updated_at", "2023-02-17 19:37:56.018428"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:37:56.020867"], ["updated_at", "2023-02-17 19:37:56.020867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:37:56.022311"], ["updated_at", "2023-02-17 19:37:56.022311"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:37:56.024489"], ["updated_at", "2023-02-17 19:37:56.024489"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (2.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:37:56.026548"], ["updated_at", "2023-02-17 19:37:56.026548"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:37:56.030832"], ["updated_at", "2023-02-17 19:37:56.030832"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:37:56.032915"], ["updated_at", "2023-02-17 19:37:56.032915"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:37:56.034811"], ["updated_at", "2023-02-17 19:37:56.034811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:37:56.037626"], ["updated_at", "2023-02-17 19:37:56.037626"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:37:56.039666"], ["updated_at", "2023-02-17 19:37:56.039666"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:37:56.041618"], ["updated_at", "2023-02-17 19:37:56.041618"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:37:56.044740"], ["updated_at", "2023-02-17 19:37:56.044740"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:37:56.048187"], ["updated_at", "2023-02-17 19:37:56.048187"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:37:56.050519"], ["updated_at", "2023-02-17 19:37:56.050519"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:37:56.052368"], ["updated_at", "2023-02-17 19:37:56.052368"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:37:56.054747"], ["updated_at", "2023-02-17 19:37:56.054747"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:37:56.058456"], ["updated_at", "2023-02-17 19:37:56.058456"], ["role_id", 34]]
TRANSACTION (1.5ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:37:56.061978"], ["updated_at", "2023-02-17 19:37:56.061978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:37:56.063567"], ["updated_at", "2023-02-17 19:37:56.063567"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:37:56.066744"], ["updated_at", "2023-02-17 19:37:56.066744"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:37:56.068479"], ["updated_at", "2023-02-17 19:37:56.068479"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:37:56.070818"], ["updated_at", "2023-02-17 19:37:56.070818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:37:56.072486"], ["updated_at", "2023-02-17 19:37:56.072486"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:37:56.077722"], ["updated_at", "2023-02-17 19:37:56.077722"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:37:56.079355"], ["updated_at", "2023-02-17 19:37:56.079355"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:37:56.081638"], ["updated_at", "2023-02-17 19:37:56.081638"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:37:56.083763"], ["updated_at", "2023-02-17 19:37:56.083763"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:37:56.086851"], ["updated_at", "2023-02-17 19:37:56.086851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.6ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:37:56.088481"], ["updated_at", "2023-02-17 19:37:56.088481"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:37:56.090884"], ["updated_at", "2023-02-17 19:37:56.090884"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:37:56.092863"], ["updated_at", "2023-02-17 19:37:56.092863"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:37:56.096603"], ["updated_at", "2023-02-17 19:37:56.096603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:37:56.098471"], ["updated_at", "2023-02-17 19:37:56.098471"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:37:56.100396"], ["updated_at", "2023-02-17 19:37:56.100396"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:37:56.101901"], ["updated_at", "2023-02-17 19:37:56.101901"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:37:56.104996"], ["updated_at", "2023-02-17 19:37:56.104996"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:37:56.108612"], ["updated_at", "2023-02-17 19:37:56.108612"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:37:56.112015"], ["updated_at", "2023-02-17 19:37:56.112015"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:37:56.113619"], ["updated_at", "2023-02-17 19:37:56.113619"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:37:56.116683"], ["updated_at", "2023-02-17 19:37:56.116683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:37:56.118537"], ["updated_at", "2023-02-17 19:37:56.118537"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:37:56.120888"], ["updated_at", "2023-02-17 19:37:56.120888"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (2.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:37:56.124127"], ["updated_at", "2023-02-17 19:37:56.124127"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:37:56.128428"], ["updated_at", "2023-02-17 19:37:56.128428"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:37:56.130739"], ["updated_at", "2023-02-17 19:37:56.130739"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:37:56.132690"], ["updated_at", "2023-02-17 19:37:56.132690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:37:56.134546"], ["updated_at", "2023-02-17 19:37:56.134546"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:37:56.137660"], ["updated_at", "2023-02-17 19:37:56.137660"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:37:56.139091"], ["updated_at", "2023-02-17 19:37:56.139091"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:37:56.141306"], ["updated_at", "2023-02-17 19:37:56.141306"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:37:56.144202"], ["updated_at", "2023-02-17 19:37:56.144202"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:37:56.146167"], ["updated_at", "2023-02-17 19:37:56.146167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:37:56.147491"], ["updated_at", "2023-02-17 19:37:56.147491"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:37:56.150087"], ["updated_at", "2023-02-17 19:37:56.150087"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:37:56.151398"], ["updated_at", "2023-02-17 19:37:56.151398"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:37:56.152842"], ["updated_at", "2023-02-17 19:37:56.152842"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:37:56.154557"], ["updated_at", "2023-02-17 19:37:56.154557"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:37:56.156642"], ["updated_at", "2023-02-17 19:37:56.156642"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:37:56.160887"], ["updated_at", "2023-02-17 19:37:56.160887"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:37:56.162412"], ["updated_at", "2023-02-17 19:37:56.162412"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:37:56.163846"], ["updated_at", "2023-02-17 19:37:56.163846"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:37:56.166608"], ["updated_at", "2023-02-17 19:37:56.166608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:37:56.167874"], ["updated_at", "2023-02-17 19:37:56.167874"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:37:56.169230"], ["updated_at", "2023-02-17 19:37:56.169230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:37:56.170529"], ["updated_at", "2023-02-17 19:37:56.170529"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:37:56.172522"], ["updated_at", "2023-02-17 19:37:56.172522"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:37:56.176809"], ["updated_at", "2023-02-17 19:37:56.176809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:37:56.178469"], ["updated_at", "2023-02-17 19:37:56.178469"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:37:56.180003"], ["updated_at", "2023-02-17 19:37:56.180003"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:37:56.181599"], ["updated_at", "2023-02-17 19:37:56.181599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:37:56.183795"], ["updated_at", "2023-02-17 19:37:56.183795"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:37:56.184913"], ["updated_at", "2023-02-17 19:37:56.184913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:56.201588"], ["updated_at", "2023-02-17 19:37:56.201588"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:56.202938"], ["updated_at", "2023-02-17 19:37:56.202938"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:56.203903"], ["updated_at", "2023-02-17 19:37:56.203903"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.205435"], ["updated_at", "2023-02-17 19:37:56.205435"]]
 (1.0ms)  SELECT sqlite_version(*)
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.206692"], ["updated_at", "2023-02-17 19:37:56.206692"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.210195"], ["updated_at", "2023-02-17 19:37:56.210195"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.211012"], ["updated_at", "2023-02-17 19:37:56.211012"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.211697"], ["updated_at", "2023-02-17 19:37:56.211697"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:56.212459"], ["updated_at", "2023-02-17 19:37:56.212459"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.213366"], ["updated_at", "2023-02-17 19:37:56.213366"]]
LikertScaleQuestion Create (1.0ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.214214"], ["updated_at", "2023-02-17 19:37:56.214214"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.216207"], ["updated_at", "2023-02-17 19:37:56.216207"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.217192"], ["updated_at", "2023-02-17 19:37:56.217192"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.217986"], ["updated_at", "2023-02-17 19:37:56.217986"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.218745"], ["updated_at", "2023-02-17 19:37:56.218745"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.219480"], ["updated_at", "2023-02-17 19:37:56.219480"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.220258"], ["updated_at", "2023-02-17 19:37:56.220258"]]
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.221448"], ["updated_at", "2023-02-17 19:37:56.221448"]]
 (0.1ms)  SELECT sqlite_version(*)
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.222428"], ["updated_at", "2023-02-17 19:37:56.222428"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.223322"], ["updated_at", "2023-02-17 19:37:56.223322"]]
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.227204"], ["updated_at", "2023-02-17 19:37:56.227204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:56.242462"], ["updated_at", "2023-02-17 19:37:56.242462"], ["role_id", 2]]
SurveyQuestion Create (0.8ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:56.244247"], ["updated_at", "2023-02-17 19:37:56.244247"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:56.246119"], ["updated_at", "2023-02-17 19:37:56.246119"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:56.247191"], ["updated_at", "2023-02-17 19:37:56.247191"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:56.248575"], ["updated_at", "2023-02-17 19:37:56.248575"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:56.250239"], ["updated_at", "2023-02-17 19:37:56.250239"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:56.251908"], ["updated_at", "2023-02-17 19:37:56.251908"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:56.254216"], ["updated_at", "2023-02-17 19:37:56.254216"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:56.255201"], ["updated_at", "2023-02-17 19:37:56.255201"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.256813"], ["updated_at", "2023-02-17 19:37:56.256813"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.258074"], ["updated_at", "2023-02-17 19:37:56.258074"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.259344"], ["updated_at", "2023-02-17 19:37:56.259344"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.261054"], ["updated_at", "2023-02-17 19:37:56.261054"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.262289"], ["updated_at", "2023-02-17 19:37:56.262289"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.263410"], ["updated_at", "2023-02-17 19:37:56.263410"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.264294"], ["updated_at", "2023-02-17 19:37:56.264294"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.265132"], ["updated_at", "2023-02-17 19:37:56.265132"]]
LikertScaleQuestion Create (0.5ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.266302"], ["updated_at", "2023-02-17 19:37:56.266302"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.267994"], ["updated_at", "2023-02-17 19:37:56.267994"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.269088"], ["updated_at", "2023-02-17 19:37:56.269088"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.269967"], ["updated_at", "2023-02-17 19:37:56.269967"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.4ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:56.292102"], ["updated_at", "2023-02-17 19:37:56.292102"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:56.293779"], ["updated_at", "2023-02-17 19:37:56.293779"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.295080"], ["updated_at", "2023-02-17 19:37:56.295080"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.296151"], ["updated_at", "2023-02-17 19:37:56.296151"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.297069"], ["updated_at", "2023-02-17 19:37:56.297069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.298445"], ["updated_at", "2023-02-17 19:37:56.298445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.299476"], ["updated_at", "2023-02-17 19:37:56.299476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.300322"], ["updated_at", "2023-02-17 19:37:56.300322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.301159"], ["updated_at", "2023-02-17 19:37:56.301159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.302098"], ["updated_at", "2023-02-17 19:37:56.302098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.302951"], ["updated_at", "2023-02-17 19:37:56.302951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.303710"], ["updated_at", "2023-02-17 19:37:56.303710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.304470"], ["updated_at", "2023-02-17 19:37:56.304470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.305451"], ["updated_at", "2023-02-17 19:37:56.305451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.306910"], ["updated_at", "2023-02-17 19:37:56.306910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.308999"], ["updated_at", "2023-02-17 19:37:56.308999"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:56.333520"], ["updated_at", "2023-02-17 19:37:56.333520"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:56.335010"], ["updated_at", "2023-02-17 19:37:56.335010"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.336221"], ["updated_at", "2023-02-17 19:37:56.336221"]]
QuestionAnswer Create (0.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.337336"], ["updated_at", "2023-02-17 19:37:56.337336"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.338799"], ["updated_at", "2023-02-17 19:37:56.338799"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.339980"], ["updated_at", "2023-02-17 19:37:56.339980"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.341183"], ["updated_at", "2023-02-17 19:37:56.341183"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.342528"], ["updated_at", "2023-02-17 19:37:56.342528"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.344041"], ["updated_at", "2023-02-17 19:37:56.344041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.345300"], ["updated_at", "2023-02-17 19:37:56.345300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.346560"], ["updated_at", "2023-02-17 19:37:56.346560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.347769"], ["updated_at", "2023-02-17 19:37:56.347769"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.348874"], ["updated_at", "2023-02-17 19:37:56.348874"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.350328"], ["updated_at", "2023-02-17 19:37:56.350328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.351592"], ["updated_at", "2023-02-17 19:37:56.351592"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:56.352751"], ["updated_at", "2023-02-17 19:37:56.352751"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:56.387077"], ["updated_at", "2023-02-17 19:37:56.387077"]]
QuestionAnswer Create (1.4ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:56.388494"], ["updated_at", "2023-02-17 19:37:56.388494"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.391141"], ["updated_at", "2023-02-17 19:37:56.391141"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.392315"], ["updated_at", "2023-02-17 19:37:56.392315"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.393696"], ["updated_at", "2023-02-17 19:37:56.393696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.395074"], ["updated_at", "2023-02-17 19:37:56.395074"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.396265"], ["updated_at", "2023-02-17 19:37:56.396265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.397634"], ["updated_at", "2023-02-17 19:37:56.397634"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.398798"], ["updated_at", "2023-02-17 19:37:56.398798"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.400014"], ["updated_at", "2023-02-17 19:37:56.400014"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.401493"], ["updated_at", "2023-02-17 19:37:56.401493"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.402702"], ["updated_at", "2023-02-17 19:37:56.402702"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.403891"], ["updated_at", "2023-02-17 19:37:56.403891"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.405198"], ["updated_at", "2023-02-17 19:37:56.405198"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.406428"], ["updated_at", "2023-02-17 19:37:56.406428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:56.407587"], ["updated_at", "2023-02-17 19:37:56.407587"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:56.432920"], ["updated_at", "2023-02-17 19:37:56.432920"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:56.436268"], ["updated_at", "2023-02-17 19:37:56.436268"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.437603"], ["updated_at", "2023-02-17 19:37:56.437603"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.438607"], ["updated_at", "2023-02-17 19:37:56.438607"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.439805"], ["updated_at", "2023-02-17 19:37:56.439805"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.441013"], ["updated_at", "2023-02-17 19:37:56.441013"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.442258"], ["updated_at", "2023-02-17 19:37:56.442258"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.443704"], ["updated_at", "2023-02-17 19:37:56.443704"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.445171"], ["updated_at", "2023-02-17 19:37:56.445171"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.446524"], ["updated_at", "2023-02-17 19:37:56.446524"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.447657"], ["updated_at", "2023-02-17 19:37:56.447657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.448456"], ["updated_at", "2023-02-17 19:37:56.448456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.449208"], ["updated_at", "2023-02-17 19:37:56.449208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.449995"], ["updated_at", "2023-02-17 19:37:56.449995"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.451016"], ["updated_at", "2023-02-17 19:37:56.451016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:56.451763"], ["updated_at", "2023-02-17 19:37:56.451763"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:56.472547"], ["updated_at", "2023-02-17 19:37:56.472547"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:56.473828"], ["updated_at", "2023-02-17 19:37:56.473828"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.474949"], ["updated_at", "2023-02-17 19:37:56.474949"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.476314"], ["updated_at", "2023-02-17 19:37:56.476314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.477639"], ["updated_at", "2023-02-17 19:37:56.477639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.478783"], ["updated_at", "2023-02-17 19:37:56.478783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.479948"], ["updated_at", "2023-02-17 19:37:56.479948"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.481019"], ["updated_at", "2023-02-17 19:37:56.481019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.481924"], ["updated_at", "2023-02-17 19:37:56.481924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.483021"], ["updated_at", "2023-02-17 19:37:56.483021"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.483926"], ["updated_at", "2023-02-17 19:37:56.483926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.484742"], ["updated_at", "2023-02-17 19:37:56.484742"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.485578"], ["updated_at", "2023-02-17 19:37:56.485578"]]
LikertScaleAnswer Create (0.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.486884"], ["updated_at", "2023-02-17 19:37:56.486884"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.488289"], ["updated_at", "2023-02-17 19:37:56.488289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:56.489367"], ["updated_at", "2023-02-17 19:37:56.489367"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:56.512705"], ["updated_at", "2023-02-17 19:37:56.512705"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:56.514046"], ["updated_at", "2023-02-17 19:37:56.514046"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.515168"], ["updated_at", "2023-02-17 19:37:56.515168"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.516029"], ["updated_at", "2023-02-17 19:37:56.516029"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.516885"], ["updated_at", "2023-02-17 19:37:56.516885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.517696"], ["updated_at", "2023-02-17 19:37:56.517696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.518592"], ["updated_at", "2023-02-17 19:37:56.518592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.519587"], ["updated_at", "2023-02-17 19:37:56.519587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.520685"], ["updated_at", "2023-02-17 19:37:56.520685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.521633"], ["updated_at", "2023-02-17 19:37:56.521633"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.522779"], ["updated_at", "2023-02-17 19:37:56.522779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.524007"], ["updated_at", "2023-02-17 19:37:56.524007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.525179"], ["updated_at", "2023-02-17 19:37:56.525179"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.526425"], ["updated_at", "2023-02-17 19:37:56.526425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.527606"], ["updated_at", "2023-02-17 19:37:56.527606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:56.528619"], ["updated_at", "2023-02-17 19:37:56.528619"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:37:56 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:56.539689"], ["updated_at", "2023-02-17 19:37:56.539689"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:37:56.541711"], ["updated_at", "2023-02-17 19:37:56.541711"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:56.546235"], ["updated_at", "2023-02-17 19:37:56.546235"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:37:56.547787"], ["updated_at", "2023-02-17 19:37:56.547787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:37:56.551105"], ["updated_at", "2023-02-17 19:37:56.551105"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:37:56.553219"], ["updated_at", "2023-02-17 19:37:56.553219"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:37:56.557540"], ["updated_at", "2023-02-17 19:37:56.557540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:37:56.559425"], ["updated_at", "2023-02-17 19:37:56.559425"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:37:56.561232"], ["updated_at", "2023-02-17 19:37:56.561232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:37:56.562952"], ["updated_at", "2023-02-17 19:37:56.562952"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:37:56.564684"], ["updated_at", "2023-02-17 19:37:56.564684"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:37:56.566168"], ["updated_at", "2023-02-17 19:37:56.566168"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.0ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:37:56.568187"], ["updated_at", "2023-02-17 19:37:56.568187"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:37:56.570947"], ["updated_at", "2023-02-17 19:37:56.570947"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:37:56.572622"], ["updated_at", "2023-02-17 19:37:56.572622"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:37:56.575344"], ["updated_at", "2023-02-17 19:37:56.575344"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:37:56.577267"], ["updated_at", "2023-02-17 19:37:56.577267"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:37:56.578759"], ["updated_at", "2023-02-17 19:37:56.578759"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:37:56.580420"], ["updated_at", "2023-02-17 19:37:56.580420"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:37:56.581874"], ["updated_at", "2023-02-17 19:37:56.581874"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:37:56.583583"], ["updated_at", "2023-02-17 19:37:56.583583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:37:56.585658"], ["updated_at", "2023-02-17 19:37:56.585658"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:37:56.588163"], ["updated_at", "2023-02-17 19:37:56.588163"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:37:56.590031"], ["updated_at", "2023-02-17 19:37:56.590031"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:37:56.591718"], ["updated_at", "2023-02-17 19:37:56.591718"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:37:56.593032"], ["updated_at", "2023-02-17 19:37:56.593032"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:37:56.595027"], ["updated_at", "2023-02-17 19:37:56.595027"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:37:56.596491"], ["updated_at", "2023-02-17 19:37:56.596491"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:37:56.598253"], ["updated_at", "2023-02-17 19:37:56.598253"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:37:56.599819"], ["updated_at", "2023-02-17 19:37:56.599819"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:37:56.601639"], ["updated_at", "2023-02-17 19:37:56.601639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:37:56.604711"], ["updated_at", "2023-02-17 19:37:56.604711"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:37:56.606908"], ["updated_at", "2023-02-17 19:37:56.606908"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:37:56.608564"], ["updated_at", "2023-02-17 19:37:56.608564"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:37:56.610564"], ["updated_at", "2023-02-17 19:37:56.610564"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:37:56.612056"], ["updated_at", "2023-02-17 19:37:56.612056"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:37:56.613815"], ["updated_at", "2023-02-17 19:37:56.613815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:37:56.615472"], ["updated_at", "2023-02-17 19:37:56.615472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:37:56.617190"], ["updated_at", "2023-02-17 19:37:56.617190"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:37:56.619879"], ["updated_at", "2023-02-17 19:37:56.619879"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:37:56.621835"], ["updated_at", "2023-02-17 19:37:56.621835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:37:56.623489"], ["updated_at", "2023-02-17 19:37:56.623489"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:37:56.625243"], ["updated_at", "2023-02-17 19:37:56.625243"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:37:56.626738"], ["updated_at", "2023-02-17 19:37:56.626738"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:37:56.628413"], ["updated_at", "2023-02-17 19:37:56.628413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:37:56.629915"], ["updated_at", "2023-02-17 19:37:56.629915"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:37:56.631862"], ["updated_at", "2023-02-17 19:37:56.631862"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:37:56.633308"], ["updated_at", "2023-02-17 19:37:56.633308"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:37:56.635123"], ["updated_at", "2023-02-17 19:37:56.635123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:37:56.642532"], ["updated_at", "2023-02-17 19:37:56.642532"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:37:56.644377"], ["updated_at", "2023-02-17 19:37:56.644377"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:37:56.662610"], ["updated_at", "2023-02-17 19:37:56.662610"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:37:56.664650"], ["updated_at", "2023-02-17 19:37:56.664650"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:37:56.671846"], ["updated_at", "2023-02-17 19:37:56.671846"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:37:56.676479"], ["updated_at", "2023-02-17 19:37:56.676479"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:37:56.680120"], ["updated_at", "2023-02-17 19:37:56.680120"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:37:56.686050"], ["updated_at", "2023-02-17 19:37:56.686050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (1.3ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:37:56.688823"], ["updated_at", "2023-02-17 19:37:56.688823"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:37:56.692127"], ["updated_at", "2023-02-17 19:37:56.692127"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:37:56.697993"], ["updated_at", "2023-02-17 19:37:56.697993"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:37:56.699754"], ["updated_at", "2023-02-17 19:37:56.699754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:37:56.706791"], ["updated_at", "2023-02-17 19:37:56.706791"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:37:56.708875"], ["updated_at", "2023-02-17 19:37:56.708875"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (3.4ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:37:56.710323"], ["updated_at", "2023-02-17 19:37:56.710323"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:37:56.715551"], ["updated_at", "2023-02-17 19:37:56.715551"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:37:56.721939"], ["updated_at", "2023-02-17 19:37:56.721939"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:37:56.723794"], ["updated_at", "2023-02-17 19:37:56.723794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:37:56.730113"], ["updated_at", "2023-02-17 19:37:56.730113"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:37:56.732085"], ["updated_at", "2023-02-17 19:37:56.732085"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:37:56.733652"], ["updated_at", "2023-02-17 19:37:56.733652"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:37:56.735348"], ["updated_at", "2023-02-17 19:37:56.735348"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:37:56.742545"], ["updated_at", "2023-02-17 19:37:56.742545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:37:56.744529"], ["updated_at", "2023-02-17 19:37:56.744529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:37:56.745948"], ["updated_at", "2023-02-17 19:37:56.745948"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:37:56.750448"], ["updated_at", "2023-02-17 19:37:56.750448"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:37:56.752023"], ["updated_at", "2023-02-17 19:37:56.752023"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:37:56.753707"], ["updated_at", "2023-02-17 19:37:56.753707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:37:56.755200"], ["updated_at", "2023-02-17 19:37:56.755200"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:37:56.758435"], ["updated_at", "2023-02-17 19:37:56.758435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:37:56.760174"], ["updated_at", "2023-02-17 19:37:56.760174"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:37:56.761683"], ["updated_at", "2023-02-17 19:37:56.761683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:37:56.763093"], ["updated_at", "2023-02-17 19:37:56.763093"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:37:56.776130"], ["updated_at", "2023-02-17 19:37:56.776130"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:37:56.777686"], ["updated_at", "2023-02-17 19:37:56.777686"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:37:56.780658"], ["updated_at", "2023-02-17 19:37:56.780658"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:37:56.784843"], ["updated_at", "2023-02-17 19:37:56.784843"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.9ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:37:56.786715"], ["updated_at", "2023-02-17 19:37:56.786715"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:37:56.790117"], ["updated_at", "2023-02-17 19:37:56.790117"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:37:56.791965"], ["updated_at", "2023-02-17 19:37:56.791965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:37:56.793502"], ["updated_at", "2023-02-17 19:37:56.793502"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:37:56.795182"], ["updated_at", "2023-02-17 19:37:56.795182"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:37:56.797020"], ["updated_at", "2023-02-17 19:37:56.797020"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:37:56.798778"], ["updated_at", "2023-02-17 19:37:56.798778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:37:56.800250"], ["updated_at", "2023-02-17 19:37:56.800250"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:37:56.802206"], ["updated_at", "2023-02-17 19:37:56.802206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:37:56.803630"], ["updated_at", "2023-02-17 19:37:56.803630"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:37:56.805361"], ["updated_at", "2023-02-17 19:37:56.805361"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:37:56.807955"], ["updated_at", "2023-02-17 19:37:56.807955"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:37:56.810121"], ["updated_at", "2023-02-17 19:37:56.810121"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:37:56.811645"], ["updated_at", "2023-02-17 19:37:56.811645"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:37:56.813244"], ["updated_at", "2023-02-17 19:37:56.813244"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:56.830419"], ["updated_at", "2023-02-17 19:37:56.830419"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:56.833058"], ["updated_at", "2023-02-17 19:37:56.833058"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:56.834325"], ["updated_at", "2023-02-17 19:37:56.834325"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.835589"], ["updated_at", "2023-02-17 19:37:56.835589"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.836606"], ["updated_at", "2023-02-17 19:37:56.836606"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.837485"], ["updated_at", "2023-02-17 19:37:56.837485"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.838534"], ["updated_at", "2023-02-17 19:37:56.838534"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.840121"], ["updated_at", "2023-02-17 19:37:56.840121"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:56.841249"], ["updated_at", "2023-02-17 19:37:56.841249"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.842604"], ["updated_at", "2023-02-17 19:37:56.842604"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.843661"], ["updated_at", "2023-02-17 19:37:56.843661"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.844808"], ["updated_at", "2023-02-17 19:37:56.844808"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.846184"], ["updated_at", "2023-02-17 19:37:56.846184"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.847206"], ["updated_at", "2023-02-17 19:37:56.847206"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.849480"], ["updated_at", "2023-02-17 19:37:56.849480"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.850517"], ["updated_at", "2023-02-17 19:37:56.850517"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.851711"], ["updated_at", "2023-02-17 19:37:56.851711"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.852889"], ["updated_at", "2023-02-17 19:37:56.852889"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.853979"], ["updated_at", "2023-02-17 19:37:56.853979"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.854943"], ["updated_at", "2023-02-17 19:37:56.854943"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.856260"], ["updated_at", "2023-02-17 19:37:56.856260"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:56.872258"], ["updated_at", "2023-02-17 19:37:56.872258"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:56.874337"], ["updated_at", "2023-02-17 19:37:56.874337"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:56.875820"], ["updated_at", "2023-02-17 19:37:56.875820"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:56.877322"], ["updated_at", "2023-02-17 19:37:56.877322"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:56.878609"], ["updated_at", "2023-02-17 19:37:56.878609"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:56.879540"], ["updated_at", "2023-02-17 19:37:56.879540"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:56.880507"], ["updated_at", "2023-02-17 19:37:56.880507"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:56.882777"], ["updated_at", "2023-02-17 19:37:56.882777"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:56.883881"], ["updated_at", "2023-02-17 19:37:56.883881"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.885023"], ["updated_at", "2023-02-17 19:37:56.885023"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.886351"], ["updated_at", "2023-02-17 19:37:56.886351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.887378"], ["updated_at", "2023-02-17 19:37:56.887378"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.888700"], ["updated_at", "2023-02-17 19:37:56.888700"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.890090"], ["updated_at", "2023-02-17 19:37:56.890090"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.891432"], ["updated_at", "2023-02-17 19:37:56.891432"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.892404"], ["updated_at", "2023-02-17 19:37:56.892404"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.893632"], ["updated_at", "2023-02-17 19:37:56.893632"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.894921"], ["updated_at", "2023-02-17 19:37:56.894921"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.895963"], ["updated_at", "2023-02-17 19:37:56.895963"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.897088"], ["updated_at", "2023-02-17 19:37:56.897088"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:56.899352"], ["updated_at", "2023-02-17 19:37:56.899352"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (1.5ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:56.950382"], ["updated_at", "2023-02-17 19:37:56.950382"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:56.955160"], ["updated_at", "2023-02-17 19:37:56.955160"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:56.956759"], ["updated_at", "2023-02-17 19:37:56.956759"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:56.959737"], ["updated_at", "2023-02-17 19:37:56.959737"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.962546"], ["updated_at", "2023-02-17 19:37:56.962546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.963650"], ["updated_at", "2023-02-17 19:37:56.963650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.967705"], ["updated_at", "2023-02-17 19:37:56.967705"]]
LikertScaleAnswer Create (3.6ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.968829"], ["updated_at", "2023-02-17 19:37:56.968829"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.973532"], ["updated_at", "2023-02-17 19:37:56.973532"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.975633"], ["updated_at", "2023-02-17 19:37:56.975633"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.976713"], ["updated_at", "2023-02-17 19:37:56.976713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.979731"], ["updated_at", "2023-02-17 19:37:56.979731"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.982423"], ["updated_at", "2023-02-17 19:37:56.982423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.983520"], ["updated_at", "2023-02-17 19:37:56.983520"]]
LikertScaleAnswer Create (1.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.988790"], ["updated_at", "2023-02-17 19:37:56.988790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:56.991146"], ["updated_at", "2023-02-17 19:37:56.991146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.042587"], ["updated_at", "2023-02-17 19:37:57.042587"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.043808"], ["updated_at", "2023-02-17 19:37:57.043808"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.044942"], ["updated_at", "2023-02-17 19:37:57.044942"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.046058"], ["updated_at", "2023-02-17 19:37:57.046058"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.047127"], ["updated_at", "2023-02-17 19:37:57.047127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.059314"], ["updated_at", "2023-02-17 19:37:57.059314"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.060677"], ["updated_at", "2023-02-17 19:37:57.060677"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.061633"], ["updated_at", "2023-02-17 19:37:57.061633"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.067658"], ["updated_at", "2023-02-17 19:37:57.067658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.068821"], ["updated_at", "2023-02-17 19:37:57.068821"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.069999"], ["updated_at", "2023-02-17 19:37:57.069999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.071226"], ["updated_at", "2023-02-17 19:37:57.071226"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.072264"], ["updated_at", "2023-02-17 19:37:57.072264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.073645"], ["updated_at", "2023-02-17 19:37:57.073645"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.074608"], ["updated_at", "2023-02-17 19:37:57.074608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.075603"], ["updated_at", "2023-02-17 19:37:57.075603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.096922"], ["updated_at", "2023-02-17 19:37:57.096922"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.098258"], ["updated_at", "2023-02-17 19:37:57.098258"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.099250"], ["updated_at", "2023-02-17 19:37:57.099250"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.100190"], ["updated_at", "2023-02-17 19:37:57.100190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.101158"], ["updated_at", "2023-02-17 19:37:57.101158"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.102166"], ["updated_at", "2023-02-17 19:37:57.102166"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.103395"], ["updated_at", "2023-02-17 19:37:57.103395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.104365"], ["updated_at", "2023-02-17 19:37:57.104365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.105328"], ["updated_at", "2023-02-17 19:37:57.105328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.106292"], ["updated_at", "2023-02-17 19:37:57.106292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.107470"], ["updated_at", "2023-02-17 19:37:57.107470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.108455"], ["updated_at", "2023-02-17 19:37:57.108455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.109432"], ["updated_at", "2023-02-17 19:37:57.109432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.110343"], ["updated_at", "2023-02-17 19:37:57.110343"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.111506"], ["updated_at", "2023-02-17 19:37:57.111506"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.112417"], ["updated_at", "2023-02-17 19:37:57.112417"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.133454"], ["updated_at", "2023-02-17 19:37:57.133454"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.134600"], ["updated_at", "2023-02-17 19:37:57.134600"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.135672"], ["updated_at", "2023-02-17 19:37:57.135672"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.136663"], ["updated_at", "2023-02-17 19:37:57.136663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.137861"], ["updated_at", "2023-02-17 19:37:57.137861"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.138921"], ["updated_at", "2023-02-17 19:37:57.138921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.140021"], ["updated_at", "2023-02-17 19:37:57.140021"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.140968"], ["updated_at", "2023-02-17 19:37:57.140968"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.142099"], ["updated_at", "2023-02-17 19:37:57.142099"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.143125"], ["updated_at", "2023-02-17 19:37:57.143125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.144160"], ["updated_at", "2023-02-17 19:37:57.144160"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.145120"], ["updated_at", "2023-02-17 19:37:57.145120"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.146071"], ["updated_at", "2023-02-17 19:37:57.146071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.147227"], ["updated_at", "2023-02-17 19:37:57.147227"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.148202"], ["updated_at", "2023-02-17 19:37:57.148202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.149184"], ["updated_at", "2023-02-17 19:37:57.149184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.169843"], ["updated_at", "2023-02-17 19:37:57.169843"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.171006"], ["updated_at", "2023-02-17 19:37:57.171006"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.171950"], ["updated_at", "2023-02-17 19:37:57.171950"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.173252"], ["updated_at", "2023-02-17 19:37:57.173252"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.174845"], ["updated_at", "2023-02-17 19:37:57.174845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.176663"], ["updated_at", "2023-02-17 19:37:57.176663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.177642"], ["updated_at", "2023-02-17 19:37:57.177642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.178569"], ["updated_at", "2023-02-17 19:37:57.178569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.179688"], ["updated_at", "2023-02-17 19:37:57.179688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.180604"], ["updated_at", "2023-02-17 19:37:57.180604"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.181785"], ["updated_at", "2023-02-17 19:37:57.181785"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.182901"], ["updated_at", "2023-02-17 19:37:57.182901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.183909"], ["updated_at", "2023-02-17 19:37:57.183909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.184894"], ["updated_at", "2023-02-17 19:37:57.184894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.185891"], ["updated_at", "2023-02-17 19:37:57.185891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.186798"], ["updated_at", "2023-02-17 19:37:57.186798"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.207640"], ["updated_at", "2023-02-17 19:37:57.207640"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.208757"], ["updated_at", "2023-02-17 19:37:57.208757"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.209825"], ["updated_at", "2023-02-17 19:37:57.209825"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.210996"], ["updated_at", "2023-02-17 19:37:57.210996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.212037"], ["updated_at", "2023-02-17 19:37:57.212037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.213022"], ["updated_at", "2023-02-17 19:37:57.213022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.213954"], ["updated_at", "2023-02-17 19:37:57.213954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.214960"], ["updated_at", "2023-02-17 19:37:57.214960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.215919"], ["updated_at", "2023-02-17 19:37:57.215919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.216785"], ["updated_at", "2023-02-17 19:37:57.216785"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.217714"], ["updated_at", "2023-02-17 19:37:57.217714"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.218859"], ["updated_at", "2023-02-17 19:37:57.218859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.219954"], ["updated_at", "2023-02-17 19:37:57.219954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.220889"], ["updated_at", "2023-02-17 19:37:57.220889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.221783"], ["updated_at", "2023-02-17 19:37:57.221783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.222658"], ["updated_at", "2023-02-17 19:37:57.222658"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:37:57 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.2ms | Allocations: 532)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:37:57.233338"], ["updated_at", "2023-02-17 19:37:57.233338"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:37:57.235001"], ["updated_at", "2023-02-17 19:37:57.235001"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:57.238847"], ["updated_at", "2023-02-17 19:37:57.238847"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:37:57.240474"], ["updated_at", "2023-02-17 19:37:57.240474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:37:57.243855"], ["updated_at", "2023-02-17 19:37:57.243855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:37:57.245209"], ["updated_at", "2023-02-17 19:37:57.245209"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:37:57.247633"], ["updated_at", "2023-02-17 19:37:57.247633"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:37:57.249315"], ["updated_at", "2023-02-17 19:37:57.249315"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:37:57.251465"], ["updated_at", "2023-02-17 19:37:57.251465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:37:57.253376"], ["updated_at", "2023-02-17 19:37:57.253376"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:37:57.255166"], ["updated_at", "2023-02-17 19:37:57.255166"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:37:57.256767"], ["updated_at", "2023-02-17 19:37:57.256767"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:37:57.258511"], ["updated_at", "2023-02-17 19:37:57.258511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:37:57.260032"], ["updated_at", "2023-02-17 19:37:57.260032"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:37:57.261811"], ["updated_at", "2023-02-17 19:37:57.261811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:37:57.263302"], ["updated_at", "2023-02-17 19:37:57.263302"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:37:57.265036"], ["updated_at", "2023-02-17 19:37:57.265036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:37:57.266570"], ["updated_at", "2023-02-17 19:37:57.266570"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:37:57.268211"], ["updated_at", "2023-02-17 19:37:57.268211"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:37:57.269767"], ["updated_at", "2023-02-17 19:37:57.269767"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:37:57.271496"], ["updated_at", "2023-02-17 19:37:57.271496"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:37:57.273007"], ["updated_at", "2023-02-17 19:37:57.273007"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:37:57.274679"], ["updated_at", "2023-02-17 19:37:57.274679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:37:57.276208"], ["updated_at", "2023-02-17 19:37:57.276208"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:37:57.277930"], ["updated_at", "2023-02-17 19:37:57.277930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:37:57.279295"], ["updated_at", "2023-02-17 19:37:57.279295"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:37:57.280953"], ["updated_at", "2023-02-17 19:37:57.280953"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:37:57.282449"], ["updated_at", "2023-02-17 19:37:57.282449"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:37:57.284058"], ["updated_at", "2023-02-17 19:37:57.284058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:37:57.285491"], ["updated_at", "2023-02-17 19:37:57.285491"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:37:57.287104"], ["updated_at", "2023-02-17 19:37:57.287104"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:37:57.288583"], ["updated_at", "2023-02-17 19:37:57.288583"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:37:57.290341"], ["updated_at", "2023-02-17 19:37:57.290341"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:37:57.291854"], ["updated_at", "2023-02-17 19:37:57.291854"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:37:57.293511"], ["updated_at", "2023-02-17 19:37:57.293511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:37:57.294963"], ["updated_at", "2023-02-17 19:37:57.294963"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:37:57.297512"], ["updated_at", "2023-02-17 19:37:57.297512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:37:57.298998"], ["updated_at", "2023-02-17 19:37:57.298998"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:37:57.300690"], ["updated_at", "2023-02-17 19:37:57.300690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:37:57.302272"], ["updated_at", "2023-02-17 19:37:57.302272"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:37:57.304048"], ["updated_at", "2023-02-17 19:37:57.304048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:37:57.305634"], ["updated_at", "2023-02-17 19:37:57.305634"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:37:57.307904"], ["updated_at", "2023-02-17 19:37:57.307904"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:37:57.309358"], ["updated_at", "2023-02-17 19:37:57.309358"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:37:57.311165"], ["updated_at", "2023-02-17 19:37:57.311165"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:37:57.312810"], ["updated_at", "2023-02-17 19:37:57.312810"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:37:57.314535"], ["updated_at", "2023-02-17 19:37:57.314535"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:37:57.316222"], ["updated_at", "2023-02-17 19:37:57.316222"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:37:57.317898"], ["updated_at", "2023-02-17 19:37:57.317898"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:37:57.319342"], ["updated_at", "2023-02-17 19:37:57.319342"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:37:57.320998"], ["updated_at", "2023-02-17 19:37:57.320998"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:37:57.322579"], ["updated_at", "2023-02-17 19:37:57.322579"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:37:57.324606"], ["updated_at", "2023-02-17 19:37:57.324606"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:37:57.325975"], ["updated_at", "2023-02-17 19:37:57.325975"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:37:57.327728"], ["updated_at", "2023-02-17 19:37:57.327728"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:37:57.330392"], ["updated_at", "2023-02-17 19:37:57.330392"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:37:57.332181"], ["updated_at", "2023-02-17 19:37:57.332181"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:37:57.333643"], ["updated_at", "2023-02-17 19:37:57.333643"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:37:57.335321"], ["updated_at", "2023-02-17 19:37:57.335321"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:37:57.336876"], ["updated_at", "2023-02-17 19:37:57.336876"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:37:57.338554"], ["updated_at", "2023-02-17 19:37:57.338554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:37:57.341015"], ["updated_at", "2023-02-17 19:37:57.341015"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:37:57.342827"], ["updated_at", "2023-02-17 19:37:57.342827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:37:57.344301"], ["updated_at", "2023-02-17 19:37:57.344301"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:37:57.345912"], ["updated_at", "2023-02-17 19:37:57.345912"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:37:57.347394"], ["updated_at", "2023-02-17 19:37:57.347394"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:37:57.348976"], ["updated_at", "2023-02-17 19:37:57.348976"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:37:57.350285"], ["updated_at", "2023-02-17 19:37:57.350285"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:37:57.351869"], ["updated_at", "2023-02-17 19:37:57.351869"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:37:57.353298"], ["updated_at", "2023-02-17 19:37:57.353298"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:37:57.355079"], ["updated_at", "2023-02-17 19:37:57.355079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:37:57.356518"], ["updated_at", "2023-02-17 19:37:57.356518"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:37:57.358368"], ["updated_at", "2023-02-17 19:37:57.358368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:37:57.359685"], ["updated_at", "2023-02-17 19:37:57.359685"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:37:57.361249"], ["updated_at", "2023-02-17 19:37:57.361249"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:37:57.362605"], ["updated_at", "2023-02-17 19:37:57.362605"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:37:57.364087"], ["updated_at", "2023-02-17 19:37:57.364087"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:37:57.365538"], ["updated_at", "2023-02-17 19:37:57.365538"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:37:57.367312"], ["updated_at", "2023-02-17 19:37:57.367312"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:37:57.369271"], ["updated_at", "2023-02-17 19:37:57.369271"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:37:57.371322"], ["updated_at", "2023-02-17 19:37:57.371322"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:37:57.373056"], ["updated_at", "2023-02-17 19:37:57.373056"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:37:57.374692"], ["updated_at", "2023-02-17 19:37:57.374692"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:37:57.376230"], ["updated_at", "2023-02-17 19:37:57.376230"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:37:57.378144"], ["updated_at", "2023-02-17 19:37:57.378144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:37:57.379690"], ["updated_at", "2023-02-17 19:37:57.379690"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:37:57.381498"], ["updated_at", "2023-02-17 19:37:57.381498"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:37:57.383083"], ["updated_at", "2023-02-17 19:37:57.383083"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:37:57.384967"], ["updated_at", "2023-02-17 19:37:57.384967"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:37:57.386690"], ["updated_at", "2023-02-17 19:37:57.386690"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:37:57.388491"], ["updated_at", "2023-02-17 19:37:57.388491"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:37:57.390426"], ["updated_at", "2023-02-17 19:37:57.390426"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:37:57.392649"], ["updated_at", "2023-02-17 19:37:57.392649"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:37:57.394760"], ["updated_at", "2023-02-17 19:37:57.394760"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:37:57.396652"], ["updated_at", "2023-02-17 19:37:57.396652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:37:57.398271"], ["updated_at", "2023-02-17 19:37:57.398271"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:37:57.399929"], ["updated_at", "2023-02-17 19:37:57.399929"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:37:57.401914"], ["updated_at", "2023-02-17 19:37:57.401914"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:37:57.403906"], ["updated_at", "2023-02-17 19:37:57.403906"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:37:57.405615"], ["updated_at", "2023-02-17 19:37:57.405615"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:37:57.407407"], ["updated_at", "2023-02-17 19:37:57.407407"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:57.423728"], ["updated_at", "2023-02-17 19:37:57.423728"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:57.425482"], ["updated_at", "2023-02-17 19:37:57.425482"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:57.426842"], ["updated_at", "2023-02-17 19:37:57.426842"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.428344"], ["updated_at", "2023-02-17 19:37:57.428344"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.429512"], ["updated_at", "2023-02-17 19:37:57.429512"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.431712"], ["updated_at", "2023-02-17 19:37:57.431712"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.434384"], ["updated_at", "2023-02-17 19:37:57.434384"]]
QuestionOption Create (0.3ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.435866"], ["updated_at", "2023-02-17 19:37:57.435866"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:57.437268"], ["updated_at", "2023-02-17 19:37:57.437268"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.438910"], ["updated_at", "2023-02-17 19:37:57.438910"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.440616"], ["updated_at", "2023-02-17 19:37:57.440616"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.441991"], ["updated_at", "2023-02-17 19:37:57.441991"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.443238"], ["updated_at", "2023-02-17 19:37:57.443238"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.444490"], ["updated_at", "2023-02-17 19:37:57.444490"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.445765"], ["updated_at", "2023-02-17 19:37:57.445765"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.447191"], ["updated_at", "2023-02-17 19:37:57.447191"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.448363"], ["updated_at", "2023-02-17 19:37:57.448363"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.450807"], ["updated_at", "2023-02-17 19:37:57.450807"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.451999"], ["updated_at", "2023-02-17 19:37:57.451999"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.453219"], ["updated_at", "2023-02-17 19:37:57.453219"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.454413"], ["updated_at", "2023-02-17 19:37:57.454413"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:37:57.469913"], ["updated_at", "2023-02-17 19:37:57.469913"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:37:57.471485"], ["updated_at", "2023-02-17 19:37:57.471485"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:37:57.473280"], ["updated_at", "2023-02-17 19:37:57.473280"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:57.475866"], ["updated_at", "2023-02-17 19:37:57.475866"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:57.477023"], ["updated_at", "2023-02-17 19:37:57.477023"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:57.478053"], ["updated_at", "2023-02-17 19:37:57.478053"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:57.479093"], ["updated_at", "2023-02-17 19:37:57.479093"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:37:57.480107"], ["updated_at", "2023-02-17 19:37:57.480107"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:37:57.481277"], ["updated_at", "2023-02-17 19:37:57.481277"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.482514"], ["updated_at", "2023-02-17 19:37:57.482514"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.483542"], ["updated_at", "2023-02-17 19:37:57.483542"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.484859"], ["updated_at", "2023-02-17 19:37:57.484859"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.485988"], ["updated_at", "2023-02-17 19:37:57.485988"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.487035"], ["updated_at", "2023-02-17 19:37:57.487035"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.488139"], ["updated_at", "2023-02-17 19:37:57.488139"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.489318"], ["updated_at", "2023-02-17 19:37:57.489318"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.491106"], ["updated_at", "2023-02-17 19:37:57.491106"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.492611"], ["updated_at", "2023-02-17 19:37:57.492611"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.495031"], ["updated_at", "2023-02-17 19:37:57.495031"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.496323"], ["updated_at", "2023-02-17 19:37:57.496323"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:37:57.497735"], ["updated_at", "2023-02-17 19:37:57.497735"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.525892"], ["updated_at", "2023-02-17 19:37:57.525892"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.527327"], ["updated_at", "2023-02-17 19:37:57.527327"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.529737"], ["updated_at", "2023-02-17 19:37:57.529737"]]
QuestionAnswer Create (0.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.530946"], ["updated_at", "2023-02-17 19:37:57.530946"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.532242"], ["updated_at", "2023-02-17 19:37:57.532242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.533584"], ["updated_at", "2023-02-17 19:37:57.533584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.535046"], ["updated_at", "2023-02-17 19:37:57.535046"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.536259"], ["updated_at", "2023-02-17 19:37:57.536259"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.537403"], ["updated_at", "2023-02-17 19:37:57.537403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.538718"], ["updated_at", "2023-02-17 19:37:57.538718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.540335"], ["updated_at", "2023-02-17 19:37:57.540335"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.541525"], ["updated_at", "2023-02-17 19:37:57.541525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.542745"], ["updated_at", "2023-02-17 19:37:57.542745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.544986"], ["updated_at", "2023-02-17 19:37:57.544986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.546254"], ["updated_at", "2023-02-17 19:37:57.546254"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:37:57.547486"], ["updated_at", "2023-02-17 19:37:57.547486"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.573439"], ["updated_at", "2023-02-17 19:37:57.573439"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.574976"], ["updated_at", "2023-02-17 19:37:57.574976"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.576266"], ["updated_at", "2023-02-17 19:37:57.576266"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.577364"], ["updated_at", "2023-02-17 19:37:57.577364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.579621"], ["updated_at", "2023-02-17 19:37:57.579621"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.580973"], ["updated_at", "2023-02-17 19:37:57.580973"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.582100"], ["updated_at", "2023-02-17 19:37:57.582100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.583252"], ["updated_at", "2023-02-17 19:37:57.583252"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.584435"], ["updated_at", "2023-02-17 19:37:57.584435"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.585764"], ["updated_at", "2023-02-17 19:37:57.585764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.586891"], ["updated_at", "2023-02-17 19:37:57.586891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.587966"], ["updated_at", "2023-02-17 19:37:57.587966"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.588948"], ["updated_at", "2023-02-17 19:37:57.588948"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.590665"], ["updated_at", "2023-02-17 19:37:57.590665"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.591880"], ["updated_at", "2023-02-17 19:37:57.591880"]]
LikertScaleAnswer Create (0.9ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:37:57.593070"], ["updated_at", "2023-02-17 19:37:57.593070"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.619824"], ["updated_at", "2023-02-17 19:37:57.619824"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.621185"], ["updated_at", "2023-02-17 19:37:57.621185"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.622983"], ["updated_at", "2023-02-17 19:37:57.622983"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.624336"], ["updated_at", "2023-02-17 19:37:57.624336"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.625676"], ["updated_at", "2023-02-17 19:37:57.625676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.626912"], ["updated_at", "2023-02-17 19:37:57.626912"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.628960"], ["updated_at", "2023-02-17 19:37:57.628960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.630332"], ["updated_at", "2023-02-17 19:37:57.630332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.631637"], ["updated_at", "2023-02-17 19:37:57.631637"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.632768"], ["updated_at", "2023-02-17 19:37:57.632768"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.633867"], ["updated_at", "2023-02-17 19:37:57.633867"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.634977"], ["updated_at", "2023-02-17 19:37:57.634977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.635899"], ["updated_at", "2023-02-17 19:37:57.635899"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.637006"], ["updated_at", "2023-02-17 19:37:57.637006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.638144"], ["updated_at", "2023-02-17 19:37:57.638144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:37:57.639075"], ["updated_at", "2023-02-17 19:37:57.639075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.662760"], ["updated_at", "2023-02-17 19:37:57.662760"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.664236"], ["updated_at", "2023-02-17 19:37:57.664236"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.665310"], ["updated_at", "2023-02-17 19:37:57.665310"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.666532"], ["updated_at", "2023-02-17 19:37:57.666532"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.667830"], ["updated_at", "2023-02-17 19:37:57.667830"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.669005"], ["updated_at", "2023-02-17 19:37:57.669005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.670290"], ["updated_at", "2023-02-17 19:37:57.670290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.671284"], ["updated_at", "2023-02-17 19:37:57.671284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.672521"], ["updated_at", "2023-02-17 19:37:57.672521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.673640"], ["updated_at", "2023-02-17 19:37:57.673640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.674789"], ["updated_at", "2023-02-17 19:37:57.674789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.675945"], ["updated_at", "2023-02-17 19:37:57.675945"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.676987"], ["updated_at", "2023-02-17 19:37:57.676987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.678321"], ["updated_at", "2023-02-17 19:37:57.678321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.679338"], ["updated_at", "2023-02-17 19:37:57.679338"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:37:57.680545"], ["updated_at", "2023-02-17 19:37:57.680545"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.3ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.703740"], ["updated_at", "2023-02-17 19:37:57.703740"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.705142"], ["updated_at", "2023-02-17 19:37:57.705142"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.706410"], ["updated_at", "2023-02-17 19:37:57.706410"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.707503"], ["updated_at", "2023-02-17 19:37:57.707503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.708803"], ["updated_at", "2023-02-17 19:37:57.708803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.710020"], ["updated_at", "2023-02-17 19:37:57.710020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.711188"], ["updated_at", "2023-02-17 19:37:57.711188"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.712117"], ["updated_at", "2023-02-17 19:37:57.712117"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.713318"], ["updated_at", "2023-02-17 19:37:57.713318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.714316"], ["updated_at", "2023-02-17 19:37:57.714316"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.715500"], ["updated_at", "2023-02-17 19:37:57.715500"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.717202"], ["updated_at", "2023-02-17 19:37:57.717202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.718498"], ["updated_at", "2023-02-17 19:37:57.718498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.719450"], ["updated_at", "2023-02-17 19:37:57.719450"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.720617"], ["updated_at", "2023-02-17 19:37:57.720617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:37:57.721632"], ["updated_at", "2023-02-17 19:37:57.721632"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:37:57.742144"], ["updated_at", "2023-02-17 19:37:57.742144"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:37:57.743283"], ["updated_at", "2023-02-17 19:37:57.743283"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:37:57.744358"], ["updated_at", "2023-02-17 19:37:57.744358"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:37:57.745338"], ["updated_at", "2023-02-17 19:37:57.745338"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.746330"], ["updated_at", "2023-02-17 19:37:57.746330"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.747550"], ["updated_at", "2023-02-17 19:37:57.747550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.748527"], ["updated_at", "2023-02-17 19:37:57.748527"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.749507"], ["updated_at", "2023-02-17 19:37:57.749507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.750466"], ["updated_at", "2023-02-17 19:37:57.750466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.751426"], ["updated_at", "2023-02-17 19:37:57.751426"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.752349"], ["updated_at", "2023-02-17 19:37:57.752349"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.753294"], ["updated_at", "2023-02-17 19:37:57.753294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.754290"], ["updated_at", "2023-02-17 19:37:57.754290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.755274"], ["updated_at", "2023-02-17 19:37:57.755274"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.756303"], ["updated_at", "2023-02-17 19:37:57.756303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:37:57.757296"], ["updated_at", "2023-02-17 19:37:57.757296"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:37:57 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:37:57 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:37:57 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:37:59.869426"], ["updated_at", "2023-02-17 19:37:59.869426"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:37:59.884430"], ["updated_at", "2023-02-17 19:37:59.884430"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:37:59.891287"], ["updated_at", "2023-02-17 19:37:59.891287"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:37:59.915875"], ["updated_at", "2023-02-17 19:37:59.915875"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:37:59.923765"], ["updated_at", "2023-02-17 19:37:59.923765"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:37:59.927567"], ["updated_at", "2023-02-17 19:37:59.927567"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:37:59.930153"], ["updated_at", "2023-02-17 19:37:59.930153"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 72ms (Views: 0.2ms | ActiveRecord: 5.6ms | Allocations: 28608)

Member Load (0.2ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:37:59.948949"], ["updated_at", "2023-02-17 19:37:59.948949"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 12ms (Views: 7.5ms | ActiveRecord: 1.0ms | Allocations: 4604)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000556d8c216318>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.4ms | Allocations: 658)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 24ms (Views: 0.3ms | ActiveRecord: 0.6ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:00.040341"], ["updated_at", "2023-02-17 19:38:00.040341"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:00.042252"], ["updated_at", "2023-02-17 19:38:00.042252"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:00.046096"], ["updated_at", "2023-02-17 19:38:00.046096"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:00.047503"], ["updated_at", "2023-02-17 19:38:00.047503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:00.050720"], ["updated_at", "2023-02-17 19:38:00.050720"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:00.052425"], ["updated_at", "2023-02-17 19:38:00.052425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:00.054928"], ["updated_at", "2023-02-17 19:38:00.054928"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:00.056866"], ["updated_at", "2023-02-17 19:38:00.056866"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:00.058782"], ["updated_at", "2023-02-17 19:38:00.058782"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:00.060318"], ["updated_at", "2023-02-17 19:38:00.060318"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:00.062022"], ["updated_at", "2023-02-17 19:38:00.062022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:00.063487"], ["updated_at", "2023-02-17 19:38:00.063487"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:00.065151"], ["updated_at", "2023-02-17 19:38:00.065151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:00.066707"], ["updated_at", "2023-02-17 19:38:00.066707"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:00.068608"], ["updated_at", "2023-02-17 19:38:00.068608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:00.070206"], ["updated_at", "2023-02-17 19:38:00.070206"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:00.071905"], ["updated_at", "2023-02-17 19:38:00.071905"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:00.073547"], ["updated_at", "2023-02-17 19:38:00.073547"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:00.075342"], ["updated_at", "2023-02-17 19:38:00.075342"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:00.076811"], ["updated_at", "2023-02-17 19:38:00.076811"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:00.078508"], ["updated_at", "2023-02-17 19:38:00.078508"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:00.080358"], ["updated_at", "2023-02-17 19:38:00.080358"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:00.082148"], ["updated_at", "2023-02-17 19:38:00.082148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:00.083615"], ["updated_at", "2023-02-17 19:38:00.083615"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:00.085035"], ["updated_at", "2023-02-17 19:38:00.085035"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:00.086408"], ["updated_at", "2023-02-17 19:38:00.086408"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:00.088215"], ["updated_at", "2023-02-17 19:38:00.088215"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:00.089674"], ["updated_at", "2023-02-17 19:38:00.089674"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:00.091303"], ["updated_at", "2023-02-17 19:38:00.091303"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:00.092792"], ["updated_at", "2023-02-17 19:38:00.092792"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:00.094408"], ["updated_at", "2023-02-17 19:38:00.094408"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:00.095846"], ["updated_at", "2023-02-17 19:38:00.095846"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:00.097591"], ["updated_at", "2023-02-17 19:38:00.097591"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:00.099166"], ["updated_at", "2023-02-17 19:38:00.099166"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:00.100965"], ["updated_at", "2023-02-17 19:38:00.100965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:00.109886"], ["updated_at", "2023-02-17 19:38:00.109886"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:00.111614"], ["updated_at", "2023-02-17 19:38:00.111614"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.0ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:00.113134"], ["updated_at", "2023-02-17 19:38:00.113134"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:00.115979"], ["updated_at", "2023-02-17 19:38:00.115979"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:00.125190"], ["updated_at", "2023-02-17 19:38:00.125190"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:00.127222"], ["updated_at", "2023-02-17 19:38:00.127222"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:00.129083"], ["updated_at", "2023-02-17 19:38:00.129083"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:00.131191"], ["updated_at", "2023-02-17 19:38:00.131191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:00.132691"], ["updated_at", "2023-02-17 19:38:00.132691"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:00.134400"], ["updated_at", "2023-02-17 19:38:00.134400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:00.135779"], ["updated_at", "2023-02-17 19:38:00.135779"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (3.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:00.137340"], ["updated_at", "2023-02-17 19:38:00.137340"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:00.142155"], ["updated_at", "2023-02-17 19:38:00.142155"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:00.143910"], ["updated_at", "2023-02-17 19:38:00.143910"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:00.145489"], ["updated_at", "2023-02-17 19:38:00.145489"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:00.147253"], ["updated_at", "2023-02-17 19:38:00.147253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:00.148705"], ["updated_at", "2023-02-17 19:38:00.148705"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:00.150535"], ["updated_at", "2023-02-17 19:38:00.150535"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:00.152693"], ["updated_at", "2023-02-17 19:38:00.152693"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:00.154518"], ["updated_at", "2023-02-17 19:38:00.154518"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:00.156020"], ["updated_at", "2023-02-17 19:38:00.156020"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:00.158474"], ["updated_at", "2023-02-17 19:38:00.158474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:00.159984"], ["updated_at", "2023-02-17 19:38:00.159984"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:00.162474"], ["updated_at", "2023-02-17 19:38:00.162474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:00.163898"], ["updated_at", "2023-02-17 19:38:00.163898"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:00.165627"], ["updated_at", "2023-02-17 19:38:00.165627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:00.167121"], ["updated_at", "2023-02-17 19:38:00.167121"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:00.168769"], ["updated_at", "2023-02-17 19:38:00.168769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:00.170227"], ["updated_at", "2023-02-17 19:38:00.170227"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:00.171948"], ["updated_at", "2023-02-17 19:38:00.171948"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:00.174105"], ["updated_at", "2023-02-17 19:38:00.174105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:00.175867"], ["updated_at", "2023-02-17 19:38:00.175867"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:00.177397"], ["updated_at", "2023-02-17 19:38:00.177397"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:00.179142"], ["updated_at", "2023-02-17 19:38:00.179142"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:00.180612"], ["updated_at", "2023-02-17 19:38:00.180612"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:00.182307"], ["updated_at", "2023-02-17 19:38:00.182307"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:00.184600"], ["updated_at", "2023-02-17 19:38:00.184600"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:00.186344"], ["updated_at", "2023-02-17 19:38:00.186344"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:00.187865"], ["updated_at", "2023-02-17 19:38:00.187865"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:00.189861"], ["updated_at", "2023-02-17 19:38:00.189861"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:00.191419"], ["updated_at", "2023-02-17 19:38:00.191419"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:00.193060"], ["updated_at", "2023-02-17 19:38:00.193060"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:00.194574"], ["updated_at", "2023-02-17 19:38:00.194574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:00.196296"], ["updated_at", "2023-02-17 19:38:00.196296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:00.197784"], ["updated_at", "2023-02-17 19:38:00.197784"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:00.199471"], ["updated_at", "2023-02-17 19:38:00.199471"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:00.200934"], ["updated_at", "2023-02-17 19:38:00.200934"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:00.202592"], ["updated_at", "2023-02-17 19:38:00.202592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:00.204105"], ["updated_at", "2023-02-17 19:38:00.204105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:00.205754"], ["updated_at", "2023-02-17 19:38:00.205754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:00.207324"], ["updated_at", "2023-02-17 19:38:00.207324"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:00.208971"], ["updated_at", "2023-02-17 19:38:00.208971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:00.210401"], ["updated_at", "2023-02-17 19:38:00.210401"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:00.212127"], ["updated_at", "2023-02-17 19:38:00.212127"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:00.213595"], ["updated_at", "2023-02-17 19:38:00.213595"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:00.215256"], ["updated_at", "2023-02-17 19:38:00.215256"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:00.216766"], ["updated_at", "2023-02-17 19:38:00.216766"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:00.218463"], ["updated_at", "2023-02-17 19:38:00.218463"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:00.220037"], ["updated_at", "2023-02-17 19:38:00.220037"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:00.221733"], ["updated_at", "2023-02-17 19:38:00.221733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:00.223099"], ["updated_at", "2023-02-17 19:38:00.223099"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:00.224714"], ["updated_at", "2023-02-17 19:38:00.224714"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:00.226450"], ["updated_at", "2023-02-17 19:38:00.226450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:00.230853"], ["updated_at", "2023-02-17 19:38:00.230853"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:00.232403"], ["updated_at", "2023-02-17 19:38:00.232403"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:00.233734"], ["updated_at", "2023-02-17 19:38:00.233734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:00.264938"], ["updated_at", "2023-02-17 19:38:00.264938"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:00.266689"], ["updated_at", "2023-02-17 19:38:00.266689"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:00.267970"], ["updated_at", "2023-02-17 19:38:00.267970"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.269097"], ["updated_at", "2023-02-17 19:38:00.269097"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.270159"], ["updated_at", "2023-02-17 19:38:00.270159"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.271101"], ["updated_at", "2023-02-17 19:38:00.271101"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.272048"], ["updated_at", "2023-02-17 19:38:00.272048"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.273064"], ["updated_at", "2023-02-17 19:38:00.273064"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:00.274330"], ["updated_at", "2023-02-17 19:38:00.274330"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.275517"], ["updated_at", "2023-02-17 19:38:00.275517"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.276671"], ["updated_at", "2023-02-17 19:38:00.276671"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.277703"], ["updated_at", "2023-02-17 19:38:00.277703"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.278719"], ["updated_at", "2023-02-17 19:38:00.278719"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.279709"], ["updated_at", "2023-02-17 19:38:00.279709"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.280807"], ["updated_at", "2023-02-17 19:38:00.280807"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.281874"], ["updated_at", "2023-02-17 19:38:00.281874"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.282879"], ["updated_at", "2023-02-17 19:38:00.282879"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.283815"], ["updated_at", "2023-02-17 19:38:00.283815"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.284768"], ["updated_at", "2023-02-17 19:38:00.284768"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.285705"], ["updated_at", "2023-02-17 19:38:00.285705"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.286636"], ["updated_at", "2023-02-17 19:38:00.286636"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:00.300561"], ["updated_at", "2023-02-17 19:38:00.300561"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:00.301958"], ["updated_at", "2023-02-17 19:38:00.301958"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:00.303168"], ["updated_at", "2023-02-17 19:38:00.303168"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:00.304268"], ["updated_at", "2023-02-17 19:38:00.304268"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:00.305250"], ["updated_at", "2023-02-17 19:38:00.305250"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:00.306141"], ["updated_at", "2023-02-17 19:38:00.306141"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:00.307254"], ["updated_at", "2023-02-17 19:38:00.307254"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:00.308189"], ["updated_at", "2023-02-17 19:38:00.308189"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:00.309242"], ["updated_at", "2023-02-17 19:38:00.309242"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.310385"], ["updated_at", "2023-02-17 19:38:00.310385"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.311465"], ["updated_at", "2023-02-17 19:38:00.311465"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.312430"], ["updated_at", "2023-02-17 19:38:00.312430"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.313480"], ["updated_at", "2023-02-17 19:38:00.313480"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.314446"], ["updated_at", "2023-02-17 19:38:00.314446"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.315425"], ["updated_at", "2023-02-17 19:38:00.315425"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.316279"], ["updated_at", "2023-02-17 19:38:00.316279"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.317277"], ["updated_at", "2023-02-17 19:38:00.317277"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.318241"], ["updated_at", "2023-02-17 19:38:00.318241"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.319246"], ["updated_at", "2023-02-17 19:38:00.319246"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.320135"], ["updated_at", "2023-02-17 19:38:00.320135"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.321111"], ["updated_at", "2023-02-17 19:38:00.321111"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.357108"], ["updated_at", "2023-02-17 19:38:00.357108"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.358302"], ["updated_at", "2023-02-17 19:38:00.358302"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.359205"], ["updated_at", "2023-02-17 19:38:00.359205"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.360002"], ["updated_at", "2023-02-17 19:38:00.360002"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.361121"], ["updated_at", "2023-02-17 19:38:00.361121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.362162"], ["updated_at", "2023-02-17 19:38:00.362162"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.362957"], ["updated_at", "2023-02-17 19:38:00.362957"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.364077"], ["updated_at", "2023-02-17 19:38:00.364077"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.365364"], ["updated_at", "2023-02-17 19:38:00.365364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.366440"], ["updated_at", "2023-02-17 19:38:00.366440"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.367598"], ["updated_at", "2023-02-17 19:38:00.367598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.368991"], ["updated_at", "2023-02-17 19:38:00.368991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.370272"], ["updated_at", "2023-02-17 19:38:00.370272"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.371235"], ["updated_at", "2023-02-17 19:38:00.371235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.372102"], ["updated_at", "2023-02-17 19:38:00.372102"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.372894"], ["updated_at", "2023-02-17 19:38:00.372894"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.393312"], ["updated_at", "2023-02-17 19:38:00.393312"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.395527"], ["updated_at", "2023-02-17 19:38:00.395527"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.396660"], ["updated_at", "2023-02-17 19:38:00.396660"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.397679"], ["updated_at", "2023-02-17 19:38:00.397679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.398907"], ["updated_at", "2023-02-17 19:38:00.398907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.399978"], ["updated_at", "2023-02-17 19:38:00.399978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.400984"], ["updated_at", "2023-02-17 19:38:00.400984"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.401979"], ["updated_at", "2023-02-17 19:38:00.401979"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.403073"], ["updated_at", "2023-02-17 19:38:00.403073"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.404268"], ["updated_at", "2023-02-17 19:38:00.404268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.405240"], ["updated_at", "2023-02-17 19:38:00.405240"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.406266"], ["updated_at", "2023-02-17 19:38:00.406266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.407204"], ["updated_at", "2023-02-17 19:38:00.407204"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.408028"], ["updated_at", "2023-02-17 19:38:00.408028"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.408797"], ["updated_at", "2023-02-17 19:38:00.408797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.409537"], ["updated_at", "2023-02-17 19:38:00.409537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.427790"], ["updated_at", "2023-02-17 19:38:00.427790"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.428769"], ["updated_at", "2023-02-17 19:38:00.428769"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.429558"], ["updated_at", "2023-02-17 19:38:00.429558"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.430246"], ["updated_at", "2023-02-17 19:38:00.430246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.431255"], ["updated_at", "2023-02-17 19:38:00.431255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.432069"], ["updated_at", "2023-02-17 19:38:00.432069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.432795"], ["updated_at", "2023-02-17 19:38:00.432795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.433702"], ["updated_at", "2023-02-17 19:38:00.433702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.434865"], ["updated_at", "2023-02-17 19:38:00.434865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.435709"], ["updated_at", "2023-02-17 19:38:00.435709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.436416"], ["updated_at", "2023-02-17 19:38:00.436416"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.437133"], ["updated_at", "2023-02-17 19:38:00.437133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.437934"], ["updated_at", "2023-02-17 19:38:00.437934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.438947"], ["updated_at", "2023-02-17 19:38:00.438947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.439690"], ["updated_at", "2023-02-17 19:38:00.439690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.440477"], ["updated_at", "2023-02-17 19:38:00.440477"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
 (1.3ms)  SELECT sqlite_version(*)
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.457591"], ["updated_at", "2023-02-17 19:38:00.457591"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.458586"], ["updated_at", "2023-02-17 19:38:00.458586"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.459383"], ["updated_at", "2023-02-17 19:38:00.459383"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.460087"], ["updated_at", "2023-02-17 19:38:00.460087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.461048"], ["updated_at", "2023-02-17 19:38:00.461048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.461938"], ["updated_at", "2023-02-17 19:38:00.461938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.462720"], ["updated_at", "2023-02-17 19:38:00.462720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.463494"], ["updated_at", "2023-02-17 19:38:00.463494"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.464701"], ["updated_at", "2023-02-17 19:38:00.464701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.465562"], ["updated_at", "2023-02-17 19:38:00.465562"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.466301"], ["updated_at", "2023-02-17 19:38:00.466301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.466990"], ["updated_at", "2023-02-17 19:38:00.466990"]]
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.467681"], ["updated_at", "2023-02-17 19:38:00.467681"]]
 (0.1ms)  SELECT sqlite_version(*)
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.468538"], ["updated_at", "2023-02-17 19:38:00.468538"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.469395"], ["updated_at", "2023-02-17 19:38:00.469395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.470113"], ["updated_at", "2023-02-17 19:38:00.470113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.487974"], ["updated_at", "2023-02-17 19:38:00.487974"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.488938"], ["updated_at", "2023-02-17 19:38:00.488938"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.490141"], ["updated_at", "2023-02-17 19:38:00.490141"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.491258"], ["updated_at", "2023-02-17 19:38:00.491258"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.492338"], ["updated_at", "2023-02-17 19:38:00.492338"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.493497"], ["updated_at", "2023-02-17 19:38:00.493497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.494511"], ["updated_at", "2023-02-17 19:38:00.494511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.495286"], ["updated_at", "2023-02-17 19:38:00.495286"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.495993"], ["updated_at", "2023-02-17 19:38:00.495993"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.496832"], ["updated_at", "2023-02-17 19:38:00.496832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.497742"], ["updated_at", "2023-02-17 19:38:00.497742"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.498541"], ["updated_at", "2023-02-17 19:38:00.498541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.499585"], ["updated_at", "2023-02-17 19:38:00.499585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.500427"], ["updated_at", "2023-02-17 19:38:00.500427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.501294"], ["updated_at", "2023-02-17 19:38:00.501294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.501990"], ["updated_at", "2023-02-17 19:38:00.501990"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.520740"], ["updated_at", "2023-02-17 19:38:00.520740"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.522242"], ["updated_at", "2023-02-17 19:38:00.522242"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.523353"], ["updated_at", "2023-02-17 19:38:00.523353"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.524565"], ["updated_at", "2023-02-17 19:38:00.524565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.525828"], ["updated_at", "2023-02-17 19:38:00.525828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.526689"], ["updated_at", "2023-02-17 19:38:00.526689"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.527392"], ["updated_at", "2023-02-17 19:38:00.527392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.528085"], ["updated_at", "2023-02-17 19:38:00.528085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.528798"], ["updated_at", "2023-02-17 19:38:00.528798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.529789"], ["updated_at", "2023-02-17 19:38:00.529789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.530549"], ["updated_at", "2023-02-17 19:38:00.530549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.531235"], ["updated_at", "2023-02-17 19:38:00.531235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.531966"], ["updated_at", "2023-02-17 19:38:00.531966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.533042"], ["updated_at", "2023-02-17 19:38:00.533042"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.534122"], ["updated_at", "2023-02-17 19:38:00.534122"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:00.534945"], ["updated_at", "2023-02-17 19:38:00.534945"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:38:00 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.3ms | Allocations: 3126)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:00.560471"], ["updated_at", "2023-02-17 19:38:00.560471"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:00.561934"], ["updated_at", "2023-02-17 19:38:00.561934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:00.565022"], ["updated_at", "2023-02-17 19:38:00.565022"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:00.566525"], ["updated_at", "2023-02-17 19:38:00.566525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:00.569523"], ["updated_at", "2023-02-17 19:38:00.569523"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:00.570954"], ["updated_at", "2023-02-17 19:38:00.570954"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:00.573505"], ["updated_at", "2023-02-17 19:38:00.573505"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:00.575520"], ["updated_at", "2023-02-17 19:38:00.575520"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:00.577429"], ["updated_at", "2023-02-17 19:38:00.577429"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:00.578764"], ["updated_at", "2023-02-17 19:38:00.578764"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:00.580383"], ["updated_at", "2023-02-17 19:38:00.580383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:00.581779"], ["updated_at", "2023-02-17 19:38:00.581779"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:00.583701"], ["updated_at", "2023-02-17 19:38:00.583701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:00.585300"], ["updated_at", "2023-02-17 19:38:00.585300"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:00.586737"], ["updated_at", "2023-02-17 19:38:00.586737"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:00.588140"], ["updated_at", "2023-02-17 19:38:00.588140"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:00.589742"], ["updated_at", "2023-02-17 19:38:00.589742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:00.591342"], ["updated_at", "2023-02-17 19:38:00.591342"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:00.593083"], ["updated_at", "2023-02-17 19:38:00.593083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:00.594585"], ["updated_at", "2023-02-17 19:38:00.594585"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:00.596237"], ["updated_at", "2023-02-17 19:38:00.596237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:00.597535"], ["updated_at", "2023-02-17 19:38:00.597535"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:00.599076"], ["updated_at", "2023-02-17 19:38:00.599076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:00.600659"], ["updated_at", "2023-02-17 19:38:00.600659"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:00.602066"], ["updated_at", "2023-02-17 19:38:00.602066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:00.603667"], ["updated_at", "2023-02-17 19:38:00.603667"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:00.605406"], ["updated_at", "2023-02-17 19:38:00.605406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:00.606727"], ["updated_at", "2023-02-17 19:38:00.606727"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:00.608595"], ["updated_at", "2023-02-17 19:38:00.608595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:00.610027"], ["updated_at", "2023-02-17 19:38:00.610027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:00.611709"], ["updated_at", "2023-02-17 19:38:00.611709"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:00.612929"], ["updated_at", "2023-02-17 19:38:00.612929"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:00.614887"], ["updated_at", "2023-02-17 19:38:00.614887"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:00.616478"], ["updated_at", "2023-02-17 19:38:00.616478"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:00.618194"], ["updated_at", "2023-02-17 19:38:00.618194"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:00.619549"], ["updated_at", "2023-02-17 19:38:00.619549"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:00.621076"], ["updated_at", "2023-02-17 19:38:00.621076"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:00.622855"], ["updated_at", "2023-02-17 19:38:00.622855"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:00.624751"], ["updated_at", "2023-02-17 19:38:00.624751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:00.626443"], ["updated_at", "2023-02-17 19:38:00.626443"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:00.627876"], ["updated_at", "2023-02-17 19:38:00.627876"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:00.629168"], ["updated_at", "2023-02-17 19:38:00.629168"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:00.630616"], ["updated_at", "2023-02-17 19:38:00.630616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:00.632073"], ["updated_at", "2023-02-17 19:38:00.632073"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:00.634148"], ["updated_at", "2023-02-17 19:38:00.634148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:00.635598"], ["updated_at", "2023-02-17 19:38:00.635598"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:00.637169"], ["updated_at", "2023-02-17 19:38:00.637169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:00.638414"], ["updated_at", "2023-02-17 19:38:00.638414"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:00.639821"], ["updated_at", "2023-02-17 19:38:00.639821"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:00.641639"], ["updated_at", "2023-02-17 19:38:00.641639"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:00.643294"], ["updated_at", "2023-02-17 19:38:00.643294"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:00.645103"], ["updated_at", "2023-02-17 19:38:00.645103"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:00.646560"], ["updated_at", "2023-02-17 19:38:00.646560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:00.647854"], ["updated_at", "2023-02-17 19:38:00.647854"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:00.649803"], ["updated_at", "2023-02-17 19:38:00.649803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:00.651059"], ["updated_at", "2023-02-17 19:38:00.651059"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:00.652571"], ["updated_at", "2023-02-17 19:38:00.652571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:00.653928"], ["updated_at", "2023-02-17 19:38:00.653928"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:00.655623"], ["updated_at", "2023-02-17 19:38:00.655623"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:00.657022"], ["updated_at", "2023-02-17 19:38:00.657022"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:00.658916"], ["updated_at", "2023-02-17 19:38:00.658916"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:00.660367"], ["updated_at", "2023-02-17 19:38:00.660367"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:00.661794"], ["updated_at", "2023-02-17 19:38:00.661794"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:00.663488"], ["updated_at", "2023-02-17 19:38:00.663488"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:00.665317"], ["updated_at", "2023-02-17 19:38:00.665317"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:00.666996"], ["updated_at", "2023-02-17 19:38:00.666996"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:00.668473"], ["updated_at", "2023-02-17 19:38:00.668473"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:00.669693"], ["updated_at", "2023-02-17 19:38:00.669693"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:00.671397"], ["updated_at", "2023-02-17 19:38:00.671397"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:00.672684"], ["updated_at", "2023-02-17 19:38:00.672684"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:00.674781"], ["updated_at", "2023-02-17 19:38:00.674781"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:00.676526"], ["updated_at", "2023-02-17 19:38:00.676526"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:00.678360"], ["updated_at", "2023-02-17 19:38:00.678360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:00.679595"], ["updated_at", "2023-02-17 19:38:00.679595"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:00.681117"], ["updated_at", "2023-02-17 19:38:00.681117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:00.682708"], ["updated_at", "2023-02-17 19:38:00.682708"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:00.684449"], ["updated_at", "2023-02-17 19:38:00.684449"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:00.685864"], ["updated_at", "2023-02-17 19:38:00.685864"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:00.687272"], ["updated_at", "2023-02-17 19:38:00.687272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:00.688565"], ["updated_at", "2023-02-17 19:38:00.688565"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:00.689993"], ["updated_at", "2023-02-17 19:38:00.689993"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:00.691432"], ["updated_at", "2023-02-17 19:38:00.691432"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:00.693144"], ["updated_at", "2023-02-17 19:38:00.693144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:00.694848"], ["updated_at", "2023-02-17 19:38:00.694848"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:00.696670"], ["updated_at", "2023-02-17 19:38:00.696670"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:00.698282"], ["updated_at", "2023-02-17 19:38:00.698282"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:00.700221"], ["updated_at", "2023-02-17 19:38:00.700221"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:00.701766"], ["updated_at", "2023-02-17 19:38:00.701766"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:00.703771"], ["updated_at", "2023-02-17 19:38:00.703771"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:00.705556"], ["updated_at", "2023-02-17 19:38:00.705556"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:00.707248"], ["updated_at", "2023-02-17 19:38:00.707248"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:00.708671"], ["updated_at", "2023-02-17 19:38:00.708671"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:00.710194"], ["updated_at", "2023-02-17 19:38:00.710194"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:00.711563"], ["updated_at", "2023-02-17 19:38:00.711563"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:00.712975"], ["updated_at", "2023-02-17 19:38:00.712975"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:00.714176"], ["updated_at", "2023-02-17 19:38:00.714176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:00.715819"], ["updated_at", "2023-02-17 19:38:00.715819"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.5ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:00.717267"], ["updated_at", "2023-02-17 19:38:00.717267"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:00.719610"], ["updated_at", "2023-02-17 19:38:00.719610"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:00.721360"], ["updated_at", "2023-02-17 19:38:00.721360"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:00.723349"], ["updated_at", "2023-02-17 19:38:00.723349"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:00.740187"], ["updated_at", "2023-02-17 19:38:00.740187"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:00.741758"], ["updated_at", "2023-02-17 19:38:00.741758"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:00.743119"], ["updated_at", "2023-02-17 19:38:00.743119"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.744369"], ["updated_at", "2023-02-17 19:38:00.744369"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.745408"], ["updated_at", "2023-02-17 19:38:00.745408"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.746132"], ["updated_at", "2023-02-17 19:38:00.746132"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.746942"], ["updated_at", "2023-02-17 19:38:00.746942"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.747734"], ["updated_at", "2023-02-17 19:38:00.747734"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:00.748482"], ["updated_at", "2023-02-17 19:38:00.748482"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.749349"], ["updated_at", "2023-02-17 19:38:00.749349"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.750246"], ["updated_at", "2023-02-17 19:38:00.750246"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:00.749476"], ["updated_at", "2023-02-17 19:38:00.749476"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.751255"], ["updated_at", "2023-02-17 19:38:00.751255"]]

Completed 500 Internal Server Error in 17ms (ActiveRecord: 1.6ms | Allocations: 6170)

LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.752235"], ["updated_at", "2023-02-17 19:38:00.752235"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.753513"], ["updated_at", "2023-02-17 19:38:00.753513"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.754715"], ["updated_at", "2023-02-17 19:38:00.754715"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.755552"], ["updated_at", "2023-02-17 19:38:00.755552"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.756292"], ["updated_at", "2023-02-17 19:38:00.756292"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.757251"], ["updated_at", "2023-02-17 19:38:00.757251"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.758641"], ["updated_at", "2023-02-17 19:38:00.758641"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.759776"], ["updated_at", "2023-02-17 19:38:00.759776"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.760862"], ["updated_at", "2023-02-17 19:38:00.760862"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:00.774734"], ["updated_at", "2023-02-17 19:38:00.774734"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:00.776450"], ["updated_at", "2023-02-17 19:38:00.776450"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:00.777726"], ["updated_at", "2023-02-17 19:38:00.777726"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:00.778683"], ["updated_at", "2023-02-17 19:38:00.778683"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:00.779443"], ["updated_at", "2023-02-17 19:38:00.779443"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:00.780318"], ["updated_at", "2023-02-17 19:38:00.780318"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:00.781156"], ["updated_at", "2023-02-17 19:38:00.781156"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:00.782051"], ["updated_at", "2023-02-17 19:38:00.782051"]]
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:00.782865"], ["updated_at", "2023-02-17 19:38:00.782865"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.784287"], ["updated_at", "2023-02-17 19:38:00.784287"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.785291"], ["updated_at", "2023-02-17 19:38:00.785291"]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:38:00.784618"], ["updated_at", "2023-02-17 19:38:00.784618"], ["role_id", 1]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 17ms (ActiveRecord: 1.0ms | Allocations: 5711)

LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.786071"], ["updated_at", "2023-02-17 19:38:00.786071"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.786840"], ["updated_at", "2023-02-17 19:38:00.786840"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.787694"], ["updated_at", "2023-02-17 19:38:00.787694"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.788433"], ["updated_at", "2023-02-17 19:38:00.788433"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.789197"], ["updated_at", "2023-02-17 19:38:00.789197"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.789983"], ["updated_at", "2023-02-17 19:38:00.789983"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.790806"], ["updated_at", "2023-02-17 19:38:00.790806"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.791922"], ["updated_at", "2023-02-17 19:38:00.791922"]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00007f9bad789f88>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.793207"], ["updated_at", "2023-02-17 19:38:00.793207"]]

Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:00.794392"], ["updated_at", "2023-02-17 19:38:00.794392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Parameters: {"id"=>"1"}
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]

Completed 404 Not Found in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 149)

LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.816204"], ["updated_at", "2023-02-17 19:38:00.816204"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.817238"], ["updated_at", "2023-02-17 19:38:00.817238"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.818251"], ["updated_at", "2023-02-17 19:38:00.818251"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.819066"], ["updated_at", "2023-02-17 19:38:00.819066"]]

Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.4ms | Allocations: 3026)

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.819932"], ["updated_at", "2023-02-17 19:38:00.819932"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.820826"], ["updated_at", "2023-02-17 19:38:00.820826"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.821819"], ["updated_at", "2023-02-17 19:38:00.821819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.822677"], ["updated_at", "2023-02-17 19:38:00.822677"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.823694"], ["updated_at", "2023-02-17 19:38:00.823694"]]
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.1ms | Allocations: 511)

LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.824752"], ["updated_at", "2023-02-17 19:38:00.824752"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.826055"], ["updated_at", "2023-02-17 19:38:00.826055"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.827082"], ["updated_at", "2023-02-17 19:38:00.827082"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.827825"], ["updated_at", "2023-02-17 19:38:00.827825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.828516"], ["updated_at", "2023-02-17 19:38:00.828516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.829471"], ["updated_at", "2023-02-17 19:38:00.829471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:00.830275"], ["updated_at", "2023-02-17 19:38:00.830275"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 6053)

LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.847975"], ["updated_at", "2023-02-17 19:38:00.847975"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.848973"], ["updated_at", "2023-02-17 19:38:00.848973"]]
TRANSACTION (0.1ms)  rollback transaction
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.849730"], ["updated_at", "2023-02-17 19:38:00.849730"]]
TRANSACTION (0.0ms)  begin transaction
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.850431"], ["updated_at", "2023-02-17 19:38:00.850431"]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.851304"], ["updated_at", "2023-02-17 19:38:00.851304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.852294"], ["updated_at", "2023-02-17 19:38:00.852294"]]
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.853064"], ["updated_at", "2023-02-17 19:38:00.853064"]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.854138"], ["updated_at", "2023-02-17 19:38:00.854138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.855156"], ["updated_at", "2023-02-17 19:38:00.855156"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.856001"], ["updated_at", "2023-02-17 19:38:00.856001"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.856801"], ["updated_at", "2023-02-17 19:38:00.856801"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.857587"], ["updated_at", "2023-02-17 19:38:00.857587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.858301"], ["updated_at", "2023-02-17 19:38:00.858301"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.859173"], ["updated_at", "2023-02-17 19:38:00.859173"]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.860049"], ["updated_at", "2023-02-17 19:38:00.860049"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:00.860793"], ["updated_at", "2023-02-17 19:38:00.860793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:00.860882"], ["updated_at", "2023-02-17 19:38:00.860882"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:00.865683"], ["updated_at", "2023-02-17 19:38:00.865683"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:00.872100"], ["updated_at", "2023-02-17 19:38:00.872100"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:00.878405"], ["updated_at", "2023-02-17 19:38:00.878405"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:00.884540"], ["updated_at", "2023-02-17 19:38:00.884540"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.3ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:00.890802"], ["updated_at", "2023-02-17 19:38:00.890802"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:00.897302"], ["updated_at", "2023-02-17 19:38:00.897302"]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.897492"], ["updated_at", "2023-02-17 19:38:00.897492"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.898535"], ["updated_at", "2023-02-17 19:38:00.898535"]]
TRANSACTION (0.1ms)  begin transaction
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.899613"], ["updated_at", "2023-02-17 19:38:00.899613"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.900633"], ["updated_at", "2023-02-17 19:38:00.900633"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.901819"], ["updated_at", "2023-02-17 19:38:00.901819"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.903144"], ["updated_at", "2023-02-17 19:38:00.903144"]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:00.903174"], ["updated_at", "2023-02-17 19:38:00.903174"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.904287"], ["updated_at", "2023-02-17 19:38:00.904287"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.905371"], ["updated_at", "2023-02-17 19:38:00.905371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.906209"], ["updated_at", "2023-02-17 19:38:00.906209"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.907264"], ["updated_at", "2023-02-17 19:38:00.907264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.908382"], ["updated_at", "2023-02-17 19:38:00.908382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.909411"], ["updated_at", "2023-02-17 19:38:00.909411"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.910224"], ["updated_at", "2023-02-17 19:38:00.910224"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.911246"], ["updated_at", "2023-02-17 19:38:00.911246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.912134"], ["updated_at", "2023-02-17 19:38:00.912134"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:00.912877"], ["updated_at", "2023-02-17 19:38:00.912877"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:38:00 -0300

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 232)

LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.932127"], ["updated_at", "2023-02-17 19:38:00.932127"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.933108"], ["updated_at", "2023-02-17 19:38:00.933108"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.934085"], ["updated_at", "2023-02-17 19:38:00.934085"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.935246"], ["updated_at", "2023-02-17 19:38:00.935246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.936204"], ["updated_at", "2023-02-17 19:38:00.936204"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.936962"], ["updated_at", "2023-02-17 19:38:00.936962"]]

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:38:00 -0300

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.937760"], ["updated_at", "2023-02-17 19:38:00.937760"]]

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.938453"], ["updated_at", "2023-02-17 19:38:00.938453"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.939452"], ["updated_at", "2023-02-17 19:38:00.939452"]]

Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.1ms | Allocations: 180)

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.940380"], ["updated_at", "2023-02-17 19:38:00.940380"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.941473"], ["updated_at", "2023-02-17 19:38:00.941473"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.942697"], ["updated_at", "2023-02-17 19:38:00.942697"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.943732"], ["updated_at", "2023-02-17 19:38:00.943732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.944959"], ["updated_at", "2023-02-17 19:38:00.944959"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.945865"], ["updated_at", "2023-02-17 19:38:00.945865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:00.946812"], ["updated_at", "2023-02-17 19:38:00.946812"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:00.965433"], ["updated_at", "2023-02-17 19:38:00.965433"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:00.966433"], ["updated_at", "2023-02-17 19:38:00.966433"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:00.967201"], ["updated_at", "2023-02-17 19:38:00.967201"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:00.969174"], ["updated_at", "2023-02-17 19:38:00.969174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.970664"], ["updated_at", "2023-02-17 19:38:00.970664"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.971522"], ["updated_at", "2023-02-17 19:38:00.971522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.972238"], ["updated_at", "2023-02-17 19:38:00.972238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.973071"], ["updated_at", "2023-02-17 19:38:00.973071"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.974077"], ["updated_at", "2023-02-17 19:38:00.974077"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.975205"], ["updated_at", "2023-02-17 19:38:00.975205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.976285"], ["updated_at", "2023-02-17 19:38:00.976285"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.977942"], ["updated_at", "2023-02-17 19:38:00.977942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.979611"], ["updated_at", "2023-02-17 19:38:00.979611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.980713"], ["updated_at", "2023-02-17 19:38:00.980713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.981682"], ["updated_at", "2023-02-17 19:38:00.981682"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:00.983257"], ["updated_at", "2023-02-17 19:38:00.983257"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.009214"], ["updated_at", "2023-02-17 19:38:01.009214"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.010267"], ["updated_at", "2023-02-17 19:38:01.010267"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.011166"], ["updated_at", "2023-02-17 19:38:01.011166"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.011924"], ["updated_at", "2023-02-17 19:38:01.011924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.012663"], ["updated_at", "2023-02-17 19:38:01.012663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.013692"], ["updated_at", "2023-02-17 19:38:01.013692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.014646"], ["updated_at", "2023-02-17 19:38:01.014646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.015468"], ["updated_at", "2023-02-17 19:38:01.015468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.016155"], ["updated_at", "2023-02-17 19:38:01.016155"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.016938"], ["updated_at", "2023-02-17 19:38:01.016938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.017672"], ["updated_at", "2023-02-17 19:38:01.017672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.018345"], ["updated_at", "2023-02-17 19:38:01.018345"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.019038"], ["updated_at", "2023-02-17 19:38:01.019038"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.019886"], ["updated_at", "2023-02-17 19:38:01.019886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.020839"], ["updated_at", "2023-02-17 19:38:01.020839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.021729"], ["updated_at", "2023-02-17 19:38:01.021729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:38:01 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:01.031332"], ["updated_at", "2023-02-17 19:38:01.031332"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:01.032854"], ["updated_at", "2023-02-17 19:38:01.032854"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:01.036431"], ["updated_at", "2023-02-17 19:38:01.036431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:01.037647"], ["updated_at", "2023-02-17 19:38:01.037647"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:01.040486"], ["updated_at", "2023-02-17 19:38:01.040486"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:01.041684"], ["updated_at", "2023-02-17 19:38:01.041684"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:01.043858"], ["updated_at", "2023-02-17 19:38:01.043858"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:01.045472"], ["updated_at", "2023-02-17 19:38:01.045472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:01.047150"], ["updated_at", "2023-02-17 19:38:01.047150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:01.048515"], ["updated_at", "2023-02-17 19:38:01.048515"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:01.049942"], ["updated_at", "2023-02-17 19:38:01.049942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:01.051374"], ["updated_at", "2023-02-17 19:38:01.051374"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:01.052852"], ["updated_at", "2023-02-17 19:38:01.052852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:01.054067"], ["updated_at", "2023-02-17 19:38:01.054067"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:01.055995"], ["updated_at", "2023-02-17 19:38:01.055995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:01.057393"], ["updated_at", "2023-02-17 19:38:01.057393"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:01.059268"], ["updated_at", "2023-02-17 19:38:01.059268"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:01.060590"], ["updated_at", "2023-02-17 19:38:01.060590"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:01.061938"], ["updated_at", "2023-02-17 19:38:01.061938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:01.063481"], ["updated_at", "2023-02-17 19:38:01.063481"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:01.065201"], ["updated_at", "2023-02-17 19:38:01.065201"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:01.066857"], ["updated_at", "2023-02-17 19:38:01.066857"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:01.068314"], ["updated_at", "2023-02-17 19:38:01.068314"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:01.069513"], ["updated_at", "2023-02-17 19:38:01.069513"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:01.071164"], ["updated_at", "2023-02-17 19:38:01.071164"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:01.073241"], ["updated_at", "2023-02-17 19:38:01.073241"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:01.075350"], ["updated_at", "2023-02-17 19:38:01.075350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:01.077248"], ["updated_at", "2023-02-17 19:38:01.077248"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:01.079046"], ["updated_at", "2023-02-17 19:38:01.079046"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:01.080992"], ["updated_at", "2023-02-17 19:38:01.080992"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:01.082518"], ["updated_at", "2023-02-17 19:38:01.082518"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:01.083843"], ["updated_at", "2023-02-17 19:38:01.083843"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:01.085700"], ["updated_at", "2023-02-17 19:38:01.085700"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:01.086950"], ["updated_at", "2023-02-17 19:38:01.086950"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:01.088457"], ["updated_at", "2023-02-17 19:38:01.088457"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:01.089646"], ["updated_at", "2023-02-17 19:38:01.089646"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:01.091210"], ["updated_at", "2023-02-17 19:38:01.091210"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:01.092600"], ["updated_at", "2023-02-17 19:38:01.092600"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:01.094070"], ["updated_at", "2023-02-17 19:38:01.094070"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:01.095822"], ["updated_at", "2023-02-17 19:38:01.095822"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:01.097540"], ["updated_at", "2023-02-17 19:38:01.097540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:01.098910"], ["updated_at", "2023-02-17 19:38:01.098910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:01.100433"], ["updated_at", "2023-02-17 19:38:01.100433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:01.101631"], ["updated_at", "2023-02-17 19:38:01.101631"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:01.103087"], ["updated_at", "2023-02-17 19:38:01.103087"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:01.104298"], ["updated_at", "2023-02-17 19:38:01.104298"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:01.105881"], ["updated_at", "2023-02-17 19:38:01.105881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:01.107372"], ["updated_at", "2023-02-17 19:38:01.107372"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:01.108763"], ["updated_at", "2023-02-17 19:38:01.108763"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:01.110050"], ["updated_at", "2023-02-17 19:38:01.110050"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:01.111445"], ["updated_at", "2023-02-17 19:38:01.111445"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:01.112584"], ["updated_at", "2023-02-17 19:38:01.112584"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:01.114077"], ["updated_at", "2023-02-17 19:38:01.114077"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:01.115727"], ["updated_at", "2023-02-17 19:38:01.115727"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:01.117252"], ["updated_at", "2023-02-17 19:38:01.117252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:01.118609"], ["updated_at", "2023-02-17 19:38:01.118609"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:01.119965"], ["updated_at", "2023-02-17 19:38:01.119965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:01.121126"], ["updated_at", "2023-02-17 19:38:01.121126"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:01.122804"], ["updated_at", "2023-02-17 19:38:01.122804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:01.124086"], ["updated_at", "2023-02-17 19:38:01.124086"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:01.126050"], ["updated_at", "2023-02-17 19:38:01.126050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:01.127441"], ["updated_at", "2023-02-17 19:38:01.127441"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:01.129158"], ["updated_at", "2023-02-17 19:38:01.129158"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:01.131233"], ["updated_at", "2023-02-17 19:38:01.131233"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:01.133068"], ["updated_at", "2023-02-17 19:38:01.133068"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:01.134513"], ["updated_at", "2023-02-17 19:38:01.134513"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:01.136189"], ["updated_at", "2023-02-17 19:38:01.136189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:01.137461"], ["updated_at", "2023-02-17 19:38:01.137461"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:01.139039"], ["updated_at", "2023-02-17 19:38:01.139039"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:01.140333"], ["updated_at", "2023-02-17 19:38:01.140333"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:01.142036"], ["updated_at", "2023-02-17 19:38:01.142036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:01.143669"], ["updated_at", "2023-02-17 19:38:01.143669"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:01.145485"], ["updated_at", "2023-02-17 19:38:01.145485"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:01.147061"], ["updated_at", "2023-02-17 19:38:01.147061"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:01.148581"], ["updated_at", "2023-02-17 19:38:01.148581"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:01.150186"], ["updated_at", "2023-02-17 19:38:01.150186"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:01.151894"], ["updated_at", "2023-02-17 19:38:01.151894"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:01.153190"], ["updated_at", "2023-02-17 19:38:01.153190"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:01.154902"], ["updated_at", "2023-02-17 19:38:01.154902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:01.156510"], ["updated_at", "2023-02-17 19:38:01.156510"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:01.158681"], ["updated_at", "2023-02-17 19:38:01.158681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:01.160089"], ["updated_at", "2023-02-17 19:38:01.160089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:01.161705"], ["updated_at", "2023-02-17 19:38:01.161705"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:01.162982"], ["updated_at", "2023-02-17 19:38:01.162982"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:01.164357"], ["updated_at", "2023-02-17 19:38:01.164357"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:01.165977"], ["updated_at", "2023-02-17 19:38:01.165977"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:01.167766"], ["updated_at", "2023-02-17 19:38:01.167766"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:01.169208"], ["updated_at", "2023-02-17 19:38:01.169208"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:01.170742"], ["updated_at", "2023-02-17 19:38:01.170742"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:01.171987"], ["updated_at", "2023-02-17 19:38:01.171987"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:01.173794"], ["updated_at", "2023-02-17 19:38:01.173794"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:01.175711"], ["updated_at", "2023-02-17 19:38:01.175711"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:01.177553"], ["updated_at", "2023-02-17 19:38:01.177553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:01.178861"], ["updated_at", "2023-02-17 19:38:01.178861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:01.180510"], ["updated_at", "2023-02-17 19:38:01.180510"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.3ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:01.181747"], ["updated_at", "2023-02-17 19:38:01.181747"]]
TRANSACTION (0.4ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:01.184596"], ["updated_at", "2023-02-17 19:38:01.184596"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:01.186948"], ["updated_at", "2023-02-17 19:38:01.186948"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:01.189368"], ["updated_at", "2023-02-17 19:38:01.189368"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:01.190993"], ["updated_at", "2023-02-17 19:38:01.190993"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.3ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:01.192242"], ["updated_at", "2023-02-17 19:38:01.192242"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:01.206863"], ["updated_at", "2023-02-17 19:38:01.206863"], ["role_id", 2]]
SurveyQuestion Create (1.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:01.209556"], ["updated_at", "2023-02-17 19:38:01.209556"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:01.212012"], ["updated_at", "2023-02-17 19:38:01.212012"]]
QuestionOption Create (1.0ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.213225"], ["updated_at", "2023-02-17 19:38:01.213225"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.215249"], ["updated_at", "2023-02-17 19:38:01.215249"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.216473"], ["updated_at", "2023-02-17 19:38:01.216473"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.217447"], ["updated_at", "2023-02-17 19:38:01.217447"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.218337"], ["updated_at", "2023-02-17 19:38:01.218337"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:01.219275"], ["updated_at", "2023-02-17 19:38:01.219275"]]
LikertScaleQuestion Create (0.9ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.220428"], ["updated_at", "2023-02-17 19:38:01.220428"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.222289"], ["updated_at", "2023-02-17 19:38:01.222289"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.223287"], ["updated_at", "2023-02-17 19:38:01.223287"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.224680"], ["updated_at", "2023-02-17 19:38:01.224680"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.226066"], ["updated_at", "2023-02-17 19:38:01.226066"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.227150"], ["updated_at", "2023-02-17 19:38:01.227150"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.228337"], ["updated_at", "2023-02-17 19:38:01.228337"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.229410"], ["updated_at", "2023-02-17 19:38:01.229410"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.230409"], ["updated_at", "2023-02-17 19:38:01.230409"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.231621"], ["updated_at", "2023-02-17 19:38:01.231621"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.233011"], ["updated_at", "2023-02-17 19:38:01.233011"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.234122"], ["updated_at", "2023-02-17 19:38:01.234122"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:01.248607"], ["updated_at", "2023-02-17 19:38:01.248607"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:01.250068"], ["updated_at", "2023-02-17 19:38:01.250068"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:01.251210"], ["updated_at", "2023-02-17 19:38:01.251210"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:01.252671"], ["updated_at", "2023-02-17 19:38:01.252671"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:01.254094"], ["updated_at", "2023-02-17 19:38:01.254094"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:01.255035"], ["updated_at", "2023-02-17 19:38:01.255035"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:01.256026"], ["updated_at", "2023-02-17 19:38:01.256026"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:01.257029"], ["updated_at", "2023-02-17 19:38:01.257029"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:01.258405"], ["updated_at", "2023-02-17 19:38:01.258405"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.259662"], ["updated_at", "2023-02-17 19:38:01.259662"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.260699"], ["updated_at", "2023-02-17 19:38:01.260699"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.261773"], ["updated_at", "2023-02-17 19:38:01.261773"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.262987"], ["updated_at", "2023-02-17 19:38:01.262987"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.264127"], ["updated_at", "2023-02-17 19:38:01.264127"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.265117"], ["updated_at", "2023-02-17 19:38:01.265117"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.266041"], ["updated_at", "2023-02-17 19:38:01.266041"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.266993"], ["updated_at", "2023-02-17 19:38:01.266993"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.267998"], ["updated_at", "2023-02-17 19:38:01.267998"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.268927"], ["updated_at", "2023-02-17 19:38:01.268927"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.269842"], ["updated_at", "2023-02-17 19:38:01.269842"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.270752"], ["updated_at", "2023-02-17 19:38:01.270752"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.7ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.294176"], ["updated_at", "2023-02-17 19:38:01.294176"]]
QuestionAnswer Create (1.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.296892"], ["updated_at", "2023-02-17 19:38:01.296892"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.299090"], ["updated_at", "2023-02-17 19:38:01.299090"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.300398"], ["updated_at", "2023-02-17 19:38:01.300398"]]
LikertScaleAnswer Create (1.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.301540"], ["updated_at", "2023-02-17 19:38:01.301540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.304003"], ["updated_at", "2023-02-17 19:38:01.304003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.305287"], ["updated_at", "2023-02-17 19:38:01.305287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.306312"], ["updated_at", "2023-02-17 19:38:01.306312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.307509"], ["updated_at", "2023-02-17 19:38:01.307509"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.308589"], ["updated_at", "2023-02-17 19:38:01.308589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.309612"], ["updated_at", "2023-02-17 19:38:01.309612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.310740"], ["updated_at", "2023-02-17 19:38:01.310740"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.311699"], ["updated_at", "2023-02-17 19:38:01.311699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.312598"], ["updated_at", "2023-02-17 19:38:01.312598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.313460"], ["updated_at", "2023-02-17 19:38:01.313460"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.314354"], ["updated_at", "2023-02-17 19:38:01.314354"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.333429"], ["updated_at", "2023-02-17 19:38:01.333429"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.334648"], ["updated_at", "2023-02-17 19:38:01.334648"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.335464"], ["updated_at", "2023-02-17 19:38:01.335464"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.336184"], ["updated_at", "2023-02-17 19:38:01.336184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.337240"], ["updated_at", "2023-02-17 19:38:01.337240"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.338028"], ["updated_at", "2023-02-17 19:38:01.338028"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.338722"], ["updated_at", "2023-02-17 19:38:01.338722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.339418"], ["updated_at", "2023-02-17 19:38:01.339418"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.340083"], ["updated_at", "2023-02-17 19:38:01.340083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.340898"], ["updated_at", "2023-02-17 19:38:01.340898"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.341640"], ["updated_at", "2023-02-17 19:38:01.341640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.342507"], ["updated_at", "2023-02-17 19:38:01.342507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.343294"], ["updated_at", "2023-02-17 19:38:01.343294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.344141"], ["updated_at", "2023-02-17 19:38:01.344141"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.344963"], ["updated_at", "2023-02-17 19:38:01.344963"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.345686"], ["updated_at", "2023-02-17 19:38:01.345686"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.362269"], ["updated_at", "2023-02-17 19:38:01.362269"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.363562"], ["updated_at", "2023-02-17 19:38:01.363562"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.364354"], ["updated_at", "2023-02-17 19:38:01.364354"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.365060"], ["updated_at", "2023-02-17 19:38:01.365060"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.365791"], ["updated_at", "2023-02-17 19:38:01.365791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.366595"], ["updated_at", "2023-02-17 19:38:01.366595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.367477"], ["updated_at", "2023-02-17 19:38:01.367477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.368192"], ["updated_at", "2023-02-17 19:38:01.368192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.368889"], ["updated_at", "2023-02-17 19:38:01.368889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.369599"], ["updated_at", "2023-02-17 19:38:01.369599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.370274"], ["updated_at", "2023-02-17 19:38:01.370274"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.371118"], ["updated_at", "2023-02-17 19:38:01.371118"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.371826"], ["updated_at", "2023-02-17 19:38:01.371826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.372682"], ["updated_at", "2023-02-17 19:38:01.372682"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.373483"], ["updated_at", "2023-02-17 19:38:01.373483"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.374301"], ["updated_at", "2023-02-17 19:38:01.374301"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.391497"], ["updated_at", "2023-02-17 19:38:01.391497"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.392855"], ["updated_at", "2023-02-17 19:38:01.392855"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.393960"], ["updated_at", "2023-02-17 19:38:01.393960"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.394712"], ["updated_at", "2023-02-17 19:38:01.394712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.395469"], ["updated_at", "2023-02-17 19:38:01.395469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.396362"], ["updated_at", "2023-02-17 19:38:01.396362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.397308"], ["updated_at", "2023-02-17 19:38:01.397308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.398027"], ["updated_at", "2023-02-17 19:38:01.398027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.398720"], ["updated_at", "2023-02-17 19:38:01.398720"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.399409"], ["updated_at", "2023-02-17 19:38:01.399409"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.400225"], ["updated_at", "2023-02-17 19:38:01.400225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.401012"], ["updated_at", "2023-02-17 19:38:01.401012"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.401748"], ["updated_at", "2023-02-17 19:38:01.401748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.402582"], ["updated_at", "2023-02-17 19:38:01.402582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.403393"], ["updated_at", "2023-02-17 19:38:01.403393"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.404318"], ["updated_at", "2023-02-17 19:38:01.404318"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.421745"], ["updated_at", "2023-02-17 19:38:01.421745"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.423132"], ["updated_at", "2023-02-17 19:38:01.423132"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.424266"], ["updated_at", "2023-02-17 19:38:01.424266"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.425129"], ["updated_at", "2023-02-17 19:38:01.425129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.425985"], ["updated_at", "2023-02-17 19:38:01.425985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.426955"], ["updated_at", "2023-02-17 19:38:01.426955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.427742"], ["updated_at", "2023-02-17 19:38:01.427742"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.428452"], ["updated_at", "2023-02-17 19:38:01.428452"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.429222"], ["updated_at", "2023-02-17 19:38:01.429222"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.429933"], ["updated_at", "2023-02-17 19:38:01.429933"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.430764"], ["updated_at", "2023-02-17 19:38:01.430764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.431456"], ["updated_at", "2023-02-17 19:38:01.431456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.432262"], ["updated_at", "2023-02-17 19:38:01.432262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.433181"], ["updated_at", "2023-02-17 19:38:01.433181"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.434302"], ["updated_at", "2023-02-17 19:38:01.434302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.435630"], ["updated_at", "2023-02-17 19:38:01.435630"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.453309"], ["updated_at", "2023-02-17 19:38:01.453309"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.454310"], ["updated_at", "2023-02-17 19:38:01.454310"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.455053"], ["updated_at", "2023-02-17 19:38:01.455053"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.455758"], ["updated_at", "2023-02-17 19:38:01.455758"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.456623"], ["updated_at", "2023-02-17 19:38:01.456623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.457619"], ["updated_at", "2023-02-17 19:38:01.457619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.458421"], ["updated_at", "2023-02-17 19:38:01.458421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.459159"], ["updated_at", "2023-02-17 19:38:01.459159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.459851"], ["updated_at", "2023-02-17 19:38:01.459851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.460705"], ["updated_at", "2023-02-17 19:38:01.460705"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.461464"], ["updated_at", "2023-02-17 19:38:01.461464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.462151"], ["updated_at", "2023-02-17 19:38:01.462151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.462900"], ["updated_at", "2023-02-17 19:38:01.462900"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.463600"], ["updated_at", "2023-02-17 19:38:01.463600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.464435"], ["updated_at", "2023-02-17 19:38:01.464435"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.465226"], ["updated_at", "2023-02-17 19:38:01.465226"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:38:01 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 16ms (Views: 11.3ms | ActiveRecord: 0.5ms | Allocations: 9578)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:01.489803"], ["updated_at", "2023-02-17 19:38:01.489803"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:01.491428"], ["updated_at", "2023-02-17 19:38:01.491428"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:01.494538"], ["updated_at", "2023-02-17 19:38:01.494538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:01.495747"], ["updated_at", "2023-02-17 19:38:01.495747"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:01.498528"], ["updated_at", "2023-02-17 19:38:01.498528"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:01.499694"], ["updated_at", "2023-02-17 19:38:01.499694"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:01.501896"], ["updated_at", "2023-02-17 19:38:01.501896"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:01.503418"], ["updated_at", "2023-02-17 19:38:01.503418"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:01.504952"], ["updated_at", "2023-02-17 19:38:01.504952"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:01.506363"], ["updated_at", "2023-02-17 19:38:01.506363"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:01.507737"], ["updated_at", "2023-02-17 19:38:01.507737"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:01.509115"], ["updated_at", "2023-02-17 19:38:01.509115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:01.510661"], ["updated_at", "2023-02-17 19:38:01.510661"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:01.511855"], ["updated_at", "2023-02-17 19:38:01.511855"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:01.513462"], ["updated_at", "2023-02-17 19:38:01.513462"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:01.514726"], ["updated_at", "2023-02-17 19:38:01.514726"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:01.516080"], ["updated_at", "2023-02-17 19:38:01.516080"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:01.517580"], ["updated_at", "2023-02-17 19:38:01.517580"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:01.518974"], ["updated_at", "2023-02-17 19:38:01.518974"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:01.520203"], ["updated_at", "2023-02-17 19:38:01.520203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:01.521652"], ["updated_at", "2023-02-17 19:38:01.521652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:01.522957"], ["updated_at", "2023-02-17 19:38:01.522957"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:01.524551"], ["updated_at", "2023-02-17 19:38:01.524551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:01.525856"], ["updated_at", "2023-02-17 19:38:01.525856"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:01.527268"], ["updated_at", "2023-02-17 19:38:01.527268"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:01.528557"], ["updated_at", "2023-02-17 19:38:01.528557"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:01.529933"], ["updated_at", "2023-02-17 19:38:01.529933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:01.531026"], ["updated_at", "2023-02-17 19:38:01.531026"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:01.532643"], ["updated_at", "2023-02-17 19:38:01.532643"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:01.534314"], ["updated_at", "2023-02-17 19:38:01.534314"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:01.535946"], ["updated_at", "2023-02-17 19:38:01.535946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:01.537762"], ["updated_at", "2023-02-17 19:38:01.537762"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:01.539223"], ["updated_at", "2023-02-17 19:38:01.539223"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:01.540694"], ["updated_at", "2023-02-17 19:38:01.540694"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:01.542173"], ["updated_at", "2023-02-17 19:38:01.542173"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:01.543487"], ["updated_at", "2023-02-17 19:38:01.543487"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:01.544952"], ["updated_at", "2023-02-17 19:38:01.544952"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:01.546130"], ["updated_at", "2023-02-17 19:38:01.546130"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:01.547645"], ["updated_at", "2023-02-17 19:38:01.547645"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:01.548934"], ["updated_at", "2023-02-17 19:38:01.548934"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:01.550295"], ["updated_at", "2023-02-17 19:38:01.550295"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:01.551550"], ["updated_at", "2023-02-17 19:38:01.551550"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:01.552967"], ["updated_at", "2023-02-17 19:38:01.552967"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:01.554207"], ["updated_at", "2023-02-17 19:38:01.554207"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:01.555801"], ["updated_at", "2023-02-17 19:38:01.555801"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:01.557002"], ["updated_at", "2023-02-17 19:38:01.557002"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:01.558360"], ["updated_at", "2023-02-17 19:38:01.558360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:01.559695"], ["updated_at", "2023-02-17 19:38:01.559695"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:01.561036"], ["updated_at", "2023-02-17 19:38:01.561036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:01.562267"], ["updated_at", "2023-02-17 19:38:01.562267"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:01.563892"], ["updated_at", "2023-02-17 19:38:01.563892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:01.565082"], ["updated_at", "2023-02-17 19:38:01.565082"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:01.566529"], ["updated_at", "2023-02-17 19:38:01.566529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:01.567695"], ["updated_at", "2023-02-17 19:38:01.567695"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:01.569050"], ["updated_at", "2023-02-17 19:38:01.569050"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:01.570452"], ["updated_at", "2023-02-17 19:38:01.570452"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:01.571897"], ["updated_at", "2023-02-17 19:38:01.571897"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:01.573129"], ["updated_at", "2023-02-17 19:38:01.573129"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:01.574694"], ["updated_at", "2023-02-17 19:38:01.574694"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:01.575875"], ["updated_at", "2023-02-17 19:38:01.575875"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:01.577198"], ["updated_at", "2023-02-17 19:38:01.577198"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:01.578659"], ["updated_at", "2023-02-17 19:38:01.578659"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:01.580070"], ["updated_at", "2023-02-17 19:38:01.580070"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:01.581324"], ["updated_at", "2023-02-17 19:38:01.581324"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:01.582759"], ["updated_at", "2023-02-17 19:38:01.582759"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:01.583967"], ["updated_at", "2023-02-17 19:38:01.583967"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:01.585491"], ["updated_at", "2023-02-17 19:38:01.585491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:01.586726"], ["updated_at", "2023-02-17 19:38:01.586726"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:01.588046"], ["updated_at", "2023-02-17 19:38:01.588046"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:01.589330"], ["updated_at", "2023-02-17 19:38:01.589330"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:01.590714"], ["updated_at", "2023-02-17 19:38:01.590714"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:01.591872"], ["updated_at", "2023-02-17 19:38:01.591872"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:01.593527"], ["updated_at", "2023-02-17 19:38:01.593527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:01.594758"], ["updated_at", "2023-02-17 19:38:01.594758"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:01.596210"], ["updated_at", "2023-02-17 19:38:01.596210"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:01.597551"], ["updated_at", "2023-02-17 19:38:01.597551"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:01.598946"], ["updated_at", "2023-02-17 19:38:01.598946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:01.600273"], ["updated_at", "2023-02-17 19:38:01.600273"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:01.601812"], ["updated_at", "2023-02-17 19:38:01.601812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:01.603048"], ["updated_at", "2023-02-17 19:38:01.603048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:01.604591"], ["updated_at", "2023-02-17 19:38:01.604591"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:01.605813"], ["updated_at", "2023-02-17 19:38:01.605813"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:01.607172"], ["updated_at", "2023-02-17 19:38:01.607172"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:01.608626"], ["updated_at", "2023-02-17 19:38:01.608626"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:01.610076"], ["updated_at", "2023-02-17 19:38:01.610076"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:01.611327"], ["updated_at", "2023-02-17 19:38:01.611327"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:01.612735"], ["updated_at", "2023-02-17 19:38:01.612735"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:01.613987"], ["updated_at", "2023-02-17 19:38:01.613987"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:01.615514"], ["updated_at", "2023-02-17 19:38:01.615514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:01.616784"], ["updated_at", "2023-02-17 19:38:01.616784"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:01.618167"], ["updated_at", "2023-02-17 19:38:01.618167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:01.619441"], ["updated_at", "2023-02-17 19:38:01.619441"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:01.620842"], ["updated_at", "2023-02-17 19:38:01.620842"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:01.622080"], ["updated_at", "2023-02-17 19:38:01.622080"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:01.623788"], ["updated_at", "2023-02-17 19:38:01.623788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:01.624949"], ["updated_at", "2023-02-17 19:38:01.624949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:01.626227"], ["updated_at", "2023-02-17 19:38:01.626227"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:01.627856"], ["updated_at", "2023-02-17 19:38:01.627856"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:01.629402"], ["updated_at", "2023-02-17 19:38:01.629402"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:01.631001"], ["updated_at", "2023-02-17 19:38:01.631001"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:01.632179"], ["updated_at", "2023-02-17 19:38:01.632179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:01.645603"], ["updated_at", "2023-02-17 19:38:01.645603"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:01.647038"], ["updated_at", "2023-02-17 19:38:01.647038"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:01.648151"], ["updated_at", "2023-02-17 19:38:01.648151"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.649277"], ["updated_at", "2023-02-17 19:38:01.649277"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.650246"], ["updated_at", "2023-02-17 19:38:01.650246"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.651020"], ["updated_at", "2023-02-17 19:38:01.651020"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.651740"], ["updated_at", "2023-02-17 19:38:01.651740"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.652510"], ["updated_at", "2023-02-17 19:38:01.652510"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:01.653691"], ["updated_at", "2023-02-17 19:38:01.653691"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.654724"], ["updated_at", "2023-02-17 19:38:01.654724"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.655684"], ["updated_at", "2023-02-17 19:38:01.655684"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.656680"], ["updated_at", "2023-02-17 19:38:01.656680"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.657597"], ["updated_at", "2023-02-17 19:38:01.657597"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.658484"], ["updated_at", "2023-02-17 19:38:01.658484"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.659309"], ["updated_at", "2023-02-17 19:38:01.659309"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.660250"], ["updated_at", "2023-02-17 19:38:01.660250"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.661286"], ["updated_at", "2023-02-17 19:38:01.661286"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.662166"], ["updated_at", "2023-02-17 19:38:01.662166"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.663025"], ["updated_at", "2023-02-17 19:38:01.663025"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.664010"], ["updated_at", "2023-02-17 19:38:01.664010"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.664954"], ["updated_at", "2023-02-17 19:38:01.664954"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:01.677612"], ["updated_at", "2023-02-17 19:38:01.677612"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:01.679048"], ["updated_at", "2023-02-17 19:38:01.679048"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:01.680153"], ["updated_at", "2023-02-17 19:38:01.680153"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:01.681167"], ["updated_at", "2023-02-17 19:38:01.681167"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:01.682076"], ["updated_at", "2023-02-17 19:38:01.682076"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:01.683035"], ["updated_at", "2023-02-17 19:38:01.683035"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:01.684008"], ["updated_at", "2023-02-17 19:38:01.684008"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:01.684874"], ["updated_at", "2023-02-17 19:38:01.684874"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:01.685983"], ["updated_at", "2023-02-17 19:38:01.685983"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.687039"], ["updated_at", "2023-02-17 19:38:01.687039"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.688041"], ["updated_at", "2023-02-17 19:38:01.688041"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.689178"], ["updated_at", "2023-02-17 19:38:01.689178"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.690822"], ["updated_at", "2023-02-17 19:38:01.690822"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.692370"], ["updated_at", "2023-02-17 19:38:01.692370"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.694335"], ["updated_at", "2023-02-17 19:38:01.694335"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.696164"], ["updated_at", "2023-02-17 19:38:01.696164"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.697149"], ["updated_at", "2023-02-17 19:38:01.697149"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.698291"], ["updated_at", "2023-02-17 19:38:01.698291"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.700514"], ["updated_at", "2023-02-17 19:38:01.700514"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.701755"], ["updated_at", "2023-02-17 19:38:01.701755"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:01.702790"], ["updated_at", "2023-02-17 19:38:01.702790"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.728162"], ["updated_at", "2023-02-17 19:38:01.728162"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.729733"], ["updated_at", "2023-02-17 19:38:01.729733"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.730767"], ["updated_at", "2023-02-17 19:38:01.730767"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.731663"], ["updated_at", "2023-02-17 19:38:01.731663"]]
LikertScaleAnswer Create (0.8ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.732709"], ["updated_at", "2023-02-17 19:38:01.732709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.734411"], ["updated_at", "2023-02-17 19:38:01.734411"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.735625"], ["updated_at", "2023-02-17 19:38:01.735625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.736521"], ["updated_at", "2023-02-17 19:38:01.736521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.737789"], ["updated_at", "2023-02-17 19:38:01.737789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.738732"], ["updated_at", "2023-02-17 19:38:01.738732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.739516"], ["updated_at", "2023-02-17 19:38:01.739516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.740689"], ["updated_at", "2023-02-17 19:38:01.740689"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.742074"], ["updated_at", "2023-02-17 19:38:01.742074"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.743225"], ["updated_at", "2023-02-17 19:38:01.743225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.744247"], ["updated_at", "2023-02-17 19:38:01.744247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:01.745297"], ["updated_at", "2023-02-17 19:38:01.745297"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.768086"], ["updated_at", "2023-02-17 19:38:01.768086"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.769264"], ["updated_at", "2023-02-17 19:38:01.769264"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.770317"], ["updated_at", "2023-02-17 19:38:01.770317"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.771558"], ["updated_at", "2023-02-17 19:38:01.771558"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.772690"], ["updated_at", "2023-02-17 19:38:01.772690"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.773836"], ["updated_at", "2023-02-17 19:38:01.773836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.775759"], ["updated_at", "2023-02-17 19:38:01.775759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.776838"], ["updated_at", "2023-02-17 19:38:01.776838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.777942"], ["updated_at", "2023-02-17 19:38:01.777942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.779145"], ["updated_at", "2023-02-17 19:38:01.779145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.780275"], ["updated_at", "2023-02-17 19:38:01.780275"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.781137"], ["updated_at", "2023-02-17 19:38:01.781137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.782117"], ["updated_at", "2023-02-17 19:38:01.782117"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.782975"], ["updated_at", "2023-02-17 19:38:01.782975"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.784009"], ["updated_at", "2023-02-17 19:38:01.784009"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:01.785057"], ["updated_at", "2023-02-17 19:38:01.785057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.812392"], ["updated_at", "2023-02-17 19:38:01.812392"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.813803"], ["updated_at", "2023-02-17 19:38:01.813803"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.814998"], ["updated_at", "2023-02-17 19:38:01.814998"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.816352"], ["updated_at", "2023-02-17 19:38:01.816352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.817537"], ["updated_at", "2023-02-17 19:38:01.817537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.818561"], ["updated_at", "2023-02-17 19:38:01.818561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.819461"], ["updated_at", "2023-02-17 19:38:01.819461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.820380"], ["updated_at", "2023-02-17 19:38:01.820380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.821310"], ["updated_at", "2023-02-17 19:38:01.821310"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.822140"], ["updated_at", "2023-02-17 19:38:01.822140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.823074"], ["updated_at", "2023-02-17 19:38:01.823074"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.824169"], ["updated_at", "2023-02-17 19:38:01.824169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.825069"], ["updated_at", "2023-02-17 19:38:01.825069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.825959"], ["updated_at", "2023-02-17 19:38:01.825959"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.826964"], ["updated_at", "2023-02-17 19:38:01.826964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:01.828288"], ["updated_at", "2023-02-17 19:38:01.828288"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.848255"], ["updated_at", "2023-02-17 19:38:01.848255"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.849272"], ["updated_at", "2023-02-17 19:38:01.849272"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.850058"], ["updated_at", "2023-02-17 19:38:01.850058"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.850802"], ["updated_at", "2023-02-17 19:38:01.850802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.851585"], ["updated_at", "2023-02-17 19:38:01.851585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.852337"], ["updated_at", "2023-02-17 19:38:01.852337"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.853083"], ["updated_at", "2023-02-17 19:38:01.853083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.853897"], ["updated_at", "2023-02-17 19:38:01.853897"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.854671"], ["updated_at", "2023-02-17 19:38:01.854671"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.855482"], ["updated_at", "2023-02-17 19:38:01.855482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.856284"], ["updated_at", "2023-02-17 19:38:01.856284"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.857101"], ["updated_at", "2023-02-17 19:38:01.857101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.858885"], ["updated_at", "2023-02-17 19:38:01.858885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.859849"], ["updated_at", "2023-02-17 19:38:01.859849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.860927"], ["updated_at", "2023-02-17 19:38:01.860927"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:01.861706"], ["updated_at", "2023-02-17 19:38:01.861706"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.880585"], ["updated_at", "2023-02-17 19:38:01.880585"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.881656"], ["updated_at", "2023-02-17 19:38:01.881656"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.883037"], ["updated_at", "2023-02-17 19:38:01.883037"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.884009"], ["updated_at", "2023-02-17 19:38:01.884009"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.884938"], ["updated_at", "2023-02-17 19:38:01.884938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.885803"], ["updated_at", "2023-02-17 19:38:01.885803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.886565"], ["updated_at", "2023-02-17 19:38:01.886565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.887328"], ["updated_at", "2023-02-17 19:38:01.887328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.888088"], ["updated_at", "2023-02-17 19:38:01.888088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.888779"], ["updated_at", "2023-02-17 19:38:01.888779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.889560"], ["updated_at", "2023-02-17 19:38:01.889560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.890614"], ["updated_at", "2023-02-17 19:38:01.890614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.891463"], ["updated_at", "2023-02-17 19:38:01.891463"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.892196"], ["updated_at", "2023-02-17 19:38:01.892196"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.892878"], ["updated_at", "2023-02-17 19:38:01.892878"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:01.893750"], ["updated_at", "2023-02-17 19:38:01.893750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:01.914805"], ["updated_at", "2023-02-17 19:38:01.914805"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:01.915831"], ["updated_at", "2023-02-17 19:38:01.915831"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:01.916681"], ["updated_at", "2023-02-17 19:38:01.916681"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:01.917423"], ["updated_at", "2023-02-17 19:38:01.917423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.918221"], ["updated_at", "2023-02-17 19:38:01.918221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.918967"], ["updated_at", "2023-02-17 19:38:01.918967"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.919711"], ["updated_at", "2023-02-17 19:38:01.919711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.920534"], ["updated_at", "2023-02-17 19:38:01.920534"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.921317"], ["updated_at", "2023-02-17 19:38:01.921317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.922028"], ["updated_at", "2023-02-17 19:38:01.922028"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.922847"], ["updated_at", "2023-02-17 19:38:01.922847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.923993"], ["updated_at", "2023-02-17 19:38:01.923993"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.925149"], ["updated_at", "2023-02-17 19:38:01.925149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.926159"], ["updated_at", "2023-02-17 19:38:01.926159"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.927367"], ["updated_at", "2023-02-17 19:38:01.927367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:01.928425"], ["updated_at", "2023-02-17 19:38:01.928425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:38:01 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:01.948555"], ["updated_at", "2023-02-17 19:38:01.948555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:01.950028"], ["updated_at", "2023-02-17 19:38:01.950028"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:01.952854"], ["updated_at", "2023-02-17 19:38:01.952854"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:01.954122"], ["updated_at", "2023-02-17 19:38:01.954122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:01.957193"], ["updated_at", "2023-02-17 19:38:01.957193"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:01.958760"], ["updated_at", "2023-02-17 19:38:01.958760"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:01.961648"], ["updated_at", "2023-02-17 19:38:01.961648"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:01.963344"], ["updated_at", "2023-02-17 19:38:01.963344"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:01.965160"], ["updated_at", "2023-02-17 19:38:01.965160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:01.966585"], ["updated_at", "2023-02-17 19:38:01.966585"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:01.968051"], ["updated_at", "2023-02-17 19:38:01.968051"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:01.969249"], ["updated_at", "2023-02-17 19:38:01.969249"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:01.970755"], ["updated_at", "2023-02-17 19:38:01.970755"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:01.972005"], ["updated_at", "2023-02-17 19:38:01.972005"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:01.973481"], ["updated_at", "2023-02-17 19:38:01.973481"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:01.975120"], ["updated_at", "2023-02-17 19:38:01.975120"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:01.976770"], ["updated_at", "2023-02-17 19:38:01.976770"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:01.978120"], ["updated_at", "2023-02-17 19:38:01.978120"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:01.979494"], ["updated_at", "2023-02-17 19:38:01.979494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:01.980648"], ["updated_at", "2023-02-17 19:38:01.980648"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:01.982165"], ["updated_at", "2023-02-17 19:38:01.982165"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:01.983433"], ["updated_at", "2023-02-17 19:38:01.983433"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:01.985117"], ["updated_at", "2023-02-17 19:38:01.985117"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:01.986346"], ["updated_at", "2023-02-17 19:38:01.986346"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:01.987775"], ["updated_at", "2023-02-17 19:38:01.987775"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:01.989007"], ["updated_at", "2023-02-17 19:38:01.989007"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:01.990670"], ["updated_at", "2023-02-17 19:38:01.990670"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:01.991973"], ["updated_at", "2023-02-17 19:38:01.991973"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:01.993494"], ["updated_at", "2023-02-17 19:38:01.993494"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:01.994937"], ["updated_at", "2023-02-17 19:38:01.994937"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:01.996476"], ["updated_at", "2023-02-17 19:38:01.996476"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:01.997768"], ["updated_at", "2023-02-17 19:38:01.997768"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:01.999197"], ["updated_at", "2023-02-17 19:38:01.999197"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:02.000750"], ["updated_at", "2023-02-17 19:38:02.000750"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:02.002683"], ["updated_at", "2023-02-17 19:38:02.002683"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:02.004390"], ["updated_at", "2023-02-17 19:38:02.004390"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:02.006120"], ["updated_at", "2023-02-17 19:38:02.006120"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:02.007697"], ["updated_at", "2023-02-17 19:38:02.007697"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:02.009585"], ["updated_at", "2023-02-17 19:38:02.009585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:02.011280"], ["updated_at", "2023-02-17 19:38:02.011280"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:02.013353"], ["updated_at", "2023-02-17 19:38:02.013353"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:02.014774"], ["updated_at", "2023-02-17 19:38:02.014774"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:02.016272"], ["updated_at", "2023-02-17 19:38:02.016272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.017460"], ["updated_at", "2023-02-17 19:38:02.017460"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:02.018880"], ["updated_at", "2023-02-17 19:38:02.018880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:02.020090"], ["updated_at", "2023-02-17 19:38:02.020090"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:02.021589"], ["updated_at", "2023-02-17 19:38:02.021589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:02.022780"], ["updated_at", "2023-02-17 19:38:02.022780"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:02.024461"], ["updated_at", "2023-02-17 19:38:02.024461"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:02.026338"], ["updated_at", "2023-02-17 19:38:02.026338"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:02.028037"], ["updated_at", "2023-02-17 19:38:02.028037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:02.029268"], ["updated_at", "2023-02-17 19:38:02.029268"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:02.030654"], ["updated_at", "2023-02-17 19:38:02.030654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:02.031842"], ["updated_at", "2023-02-17 19:38:02.031842"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:02.033244"], ["updated_at", "2023-02-17 19:38:02.033244"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:02.034479"], ["updated_at", "2023-02-17 19:38:02.034479"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:02.035977"], ["updated_at", "2023-02-17 19:38:02.035977"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:02.037188"], ["updated_at", "2023-02-17 19:38:02.037188"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:02.038660"], ["updated_at", "2023-02-17 19:38:02.038660"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:02.039969"], ["updated_at", "2023-02-17 19:38:02.039969"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:02.041836"], ["updated_at", "2023-02-17 19:38:02.041836"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:02.043461"], ["updated_at", "2023-02-17 19:38:02.043461"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:02.045238"], ["updated_at", "2023-02-17 19:38:02.045238"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.046542"], ["updated_at", "2023-02-17 19:38:02.046542"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:02.047949"], ["updated_at", "2023-02-17 19:38:02.047949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:02.049142"], ["updated_at", "2023-02-17 19:38:02.049142"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:02.050530"], ["updated_at", "2023-02-17 19:38:02.050530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:02.051763"], ["updated_at", "2023-02-17 19:38:02.051763"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:02.053256"], ["updated_at", "2023-02-17 19:38:02.053256"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.054434"], ["updated_at", "2023-02-17 19:38:02.054434"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:02.055999"], ["updated_at", "2023-02-17 19:38:02.055999"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:02.057575"], ["updated_at", "2023-02-17 19:38:02.057575"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:02.059535"], ["updated_at", "2023-02-17 19:38:02.059535"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:02.060959"], ["updated_at", "2023-02-17 19:38:02.060959"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:02.062333"], ["updated_at", "2023-02-17 19:38:02.062333"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:02.063630"], ["updated_at", "2023-02-17 19:38:02.063630"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:02.065089"], ["updated_at", "2023-02-17 19:38:02.065089"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:02.066353"], ["updated_at", "2023-02-17 19:38:02.066353"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:02.067777"], ["updated_at", "2023-02-17 19:38:02.067777"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:02.068972"], ["updated_at", "2023-02-17 19:38:02.068972"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:02.070390"], ["updated_at", "2023-02-17 19:38:02.070390"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.071772"], ["updated_at", "2023-02-17 19:38:02.071772"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:02.073174"], ["updated_at", "2023-02-17 19:38:02.073174"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:02.074746"], ["updated_at", "2023-02-17 19:38:02.074746"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:02.076714"], ["updated_at", "2023-02-17 19:38:02.076714"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:02.078132"], ["updated_at", "2023-02-17 19:38:02.078132"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:02.079535"], ["updated_at", "2023-02-17 19:38:02.079535"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:02.080681"], ["updated_at", "2023-02-17 19:38:02.080681"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:02.082143"], ["updated_at", "2023-02-17 19:38:02.082143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:02.083362"], ["updated_at", "2023-02-17 19:38:02.083362"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:02.084718"], ["updated_at", "2023-02-17 19:38:02.084718"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:02.086081"], ["updated_at", "2023-02-17 19:38:02.086081"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:02.087514"], ["updated_at", "2023-02-17 19:38:02.087514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:02.088717"], ["updated_at", "2023-02-17 19:38:02.088717"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:02.090277"], ["updated_at", "2023-02-17 19:38:02.090277"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:02.091776"], ["updated_at", "2023-02-17 19:38:02.091776"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:02.093540"], ["updated_at", "2023-02-17 19:38:02.093540"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:02.095135"], ["updated_at", "2023-02-17 19:38:02.095135"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:02.096748"], ["updated_at", "2023-02-17 19:38:02.096748"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:02.098347"], ["updated_at", "2023-02-17 19:38:02.098347"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:02.099460"], ["updated_at", "2023-02-17 19:38:02.099460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:02.111305"], ["updated_at", "2023-02-17 19:38:02.111305"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:02.112628"], ["updated_at", "2023-02-17 19:38:02.112628"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:02.113624"], ["updated_at", "2023-02-17 19:38:02.113624"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.114625"], ["updated_at", "2023-02-17 19:38:02.114625"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.115805"], ["updated_at", "2023-02-17 19:38:02.115805"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.116919"], ["updated_at", "2023-02-17 19:38:02.116919"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.117732"], ["updated_at", "2023-02-17 19:38:02.117732"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.118466"], ["updated_at", "2023-02-17 19:38:02.118466"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:02.119315"], ["updated_at", "2023-02-17 19:38:02.119315"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.120204"], ["updated_at", "2023-02-17 19:38:02.120204"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.121152"], ["updated_at", "2023-02-17 19:38:02.121152"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.121930"], ["updated_at", "2023-02-17 19:38:02.121930"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.122691"], ["updated_at", "2023-02-17 19:38:02.122691"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.123492"], ["updated_at", "2023-02-17 19:38:02.123492"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.124711"], ["updated_at", "2023-02-17 19:38:02.124711"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.125798"], ["updated_at", "2023-02-17 19:38:02.125798"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.126744"], ["updated_at", "2023-02-17 19:38:02.126744"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.127544"], ["updated_at", "2023-02-17 19:38:02.127544"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.128302"], ["updated_at", "2023-02-17 19:38:02.128302"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.129059"], ["updated_at", "2023-02-17 19:38:02.129059"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.129808"], ["updated_at", "2023-02-17 19:38:02.129808"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:02.142153"], ["updated_at", "2023-02-17 19:38:02.142153"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:02.143439"], ["updated_at", "2023-02-17 19:38:02.143439"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:02.144389"], ["updated_at", "2023-02-17 19:38:02.144389"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.145372"], ["updated_at", "2023-02-17 19:38:02.145372"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.146428"], ["updated_at", "2023-02-17 19:38:02.146428"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.147630"], ["updated_at", "2023-02-17 19:38:02.147630"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.148522"], ["updated_at", "2023-02-17 19:38:02.148522"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.149275"], ["updated_at", "2023-02-17 19:38:02.149275"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:02.150100"], ["updated_at", "2023-02-17 19:38:02.150100"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.150994"], ["updated_at", "2023-02-17 19:38:02.150994"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.152024"], ["updated_at", "2023-02-17 19:38:02.152024"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.152937"], ["updated_at", "2023-02-17 19:38:02.152937"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.153819"], ["updated_at", "2023-02-17 19:38:02.153819"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.154636"], ["updated_at", "2023-02-17 19:38:02.154636"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.155715"], ["updated_at", "2023-02-17 19:38:02.155715"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.156894"], ["updated_at", "2023-02-17 19:38:02.156894"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.157943"], ["updated_at", "2023-02-17 19:38:02.157943"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.158959"], ["updated_at", "2023-02-17 19:38:02.158959"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.160043"], ["updated_at", "2023-02-17 19:38:02.160043"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.161322"], ["updated_at", "2023-02-17 19:38:02.161322"]]
LikertScaleQuestion Create (0.3ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.162201"], ["updated_at", "2023-02-17 19:38:02.162201"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.7ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.185047"], ["updated_at", "2023-02-17 19:38:02.185047"]]
QuestionAnswer Create (1.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.188059"], ["updated_at", "2023-02-17 19:38:02.188059"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.190466"], ["updated_at", "2023-02-17 19:38:02.190466"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.191812"], ["updated_at", "2023-02-17 19:38:02.191812"]]
LikertScaleAnswer Create (1.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.193104"], ["updated_at", "2023-02-17 19:38:02.193104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.195467"], ["updated_at", "2023-02-17 19:38:02.195467"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.196781"], ["updated_at", "2023-02-17 19:38:02.196781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.198054"], ["updated_at", "2023-02-17 19:38:02.198054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.199296"], ["updated_at", "2023-02-17 19:38:02.199296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.200395"], ["updated_at", "2023-02-17 19:38:02.200395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.201469"], ["updated_at", "2023-02-17 19:38:02.201469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.202491"], ["updated_at", "2023-02-17 19:38:02.202491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.203523"], ["updated_at", "2023-02-17 19:38:02.203523"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.205090"], ["updated_at", "2023-02-17 19:38:02.205090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.206621"], ["updated_at", "2023-02-17 19:38:02.206621"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.207884"], ["updated_at", "2023-02-17 19:38:02.207884"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.239004"], ["updated_at", "2023-02-17 19:38:02.239004"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.240145"], ["updated_at", "2023-02-17 19:38:02.240145"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.241565"], ["updated_at", "2023-02-17 19:38:02.241565"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.242953"], ["updated_at", "2023-02-17 19:38:02.242953"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.244013"], ["updated_at", "2023-02-17 19:38:02.244013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.245215"], ["updated_at", "2023-02-17 19:38:02.245215"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.246465"], ["updated_at", "2023-02-17 19:38:02.246465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.248133"], ["updated_at", "2023-02-17 19:38:02.248133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.249263"], ["updated_at", "2023-02-17 19:38:02.249263"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.250228"], ["updated_at", "2023-02-17 19:38:02.250228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.251148"], ["updated_at", "2023-02-17 19:38:02.251148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.253678"], ["updated_at", "2023-02-17 19:38:02.253678"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.255050"], ["updated_at", "2023-02-17 19:38:02.255050"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.256052"], ["updated_at", "2023-02-17 19:38:02.256052"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.257107"], ["updated_at", "2023-02-17 19:38:02.257107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.258349"], ["updated_at", "2023-02-17 19:38:02.258349"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.280589"], ["updated_at", "2023-02-17 19:38:02.280589"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.282033"], ["updated_at", "2023-02-17 19:38:02.282033"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.283208"], ["updated_at", "2023-02-17 19:38:02.283208"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.284433"], ["updated_at", "2023-02-17 19:38:02.284433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.285499"], ["updated_at", "2023-02-17 19:38:02.285499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.286457"], ["updated_at", "2023-02-17 19:38:02.286457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.287402"], ["updated_at", "2023-02-17 19:38:02.287402"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.288381"], ["updated_at", "2023-02-17 19:38:02.288381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.289309"], ["updated_at", "2023-02-17 19:38:02.289309"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.290262"], ["updated_at", "2023-02-17 19:38:02.290262"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.291572"], ["updated_at", "2023-02-17 19:38:02.291572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.292919"], ["updated_at", "2023-02-17 19:38:02.292919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.293987"], ["updated_at", "2023-02-17 19:38:02.293987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.295100"], ["updated_at", "2023-02-17 19:38:02.295100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.296159"], ["updated_at", "2023-02-17 19:38:02.296159"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.297133"], ["updated_at", "2023-02-17 19:38:02.297133"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.319346"], ["updated_at", "2023-02-17 19:38:02.319346"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.320461"], ["updated_at", "2023-02-17 19:38:02.320461"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.321761"], ["updated_at", "2023-02-17 19:38:02.321761"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.322765"], ["updated_at", "2023-02-17 19:38:02.322765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.323835"], ["updated_at", "2023-02-17 19:38:02.323835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.325184"], ["updated_at", "2023-02-17 19:38:02.325184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.326340"], ["updated_at", "2023-02-17 19:38:02.326340"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.327312"], ["updated_at", "2023-02-17 19:38:02.327312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.328246"], ["updated_at", "2023-02-17 19:38:02.328246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.329194"], ["updated_at", "2023-02-17 19:38:02.329194"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.330127"], ["updated_at", "2023-02-17 19:38:02.330127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.331079"], ["updated_at", "2023-02-17 19:38:02.331079"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.332190"], ["updated_at", "2023-02-17 19:38:02.332190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.333302"], ["updated_at", "2023-02-17 19:38:02.333302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.334276"], ["updated_at", "2023-02-17 19:38:02.334276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.335201"], ["updated_at", "2023-02-17 19:38:02.335201"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.355681"], ["updated_at", "2023-02-17 19:38:02.355681"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.356809"], ["updated_at", "2023-02-17 19:38:02.356809"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.358074"], ["updated_at", "2023-02-17 19:38:02.358074"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.359117"], ["updated_at", "2023-02-17 19:38:02.359117"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.360036"], ["updated_at", "2023-02-17 19:38:02.360036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.360987"], ["updated_at", "2023-02-17 19:38:02.360987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.361934"], ["updated_at", "2023-02-17 19:38:02.361934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.362809"], ["updated_at", "2023-02-17 19:38:02.362809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.363757"], ["updated_at", "2023-02-17 19:38:02.363757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.364693"], ["updated_at", "2023-02-17 19:38:02.364693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.365538"], ["updated_at", "2023-02-17 19:38:02.365538"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.366362"], ["updated_at", "2023-02-17 19:38:02.366362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.367174"], ["updated_at", "2023-02-17 19:38:02.367174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.367982"], ["updated_at", "2023-02-17 19:38:02.367982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.369068"], ["updated_at", "2023-02-17 19:38:02.369068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.370139"], ["updated_at", "2023-02-17 19:38:02.370139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.386137"], ["updated_at", "2023-02-17 19:38:02.386137"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.387166"], ["updated_at", "2023-02-17 19:38:02.387166"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.387927"], ["updated_at", "2023-02-17 19:38:02.387927"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.388639"], ["updated_at", "2023-02-17 19:38:02.388639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.389415"], ["updated_at", "2023-02-17 19:38:02.389415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.390190"], ["updated_at", "2023-02-17 19:38:02.390190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.390947"], ["updated_at", "2023-02-17 19:38:02.390947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.391765"], ["updated_at", "2023-02-17 19:38:02.391765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.392498"], ["updated_at", "2023-02-17 19:38:02.392498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.393218"], ["updated_at", "2023-02-17 19:38:02.393218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.393922"], ["updated_at", "2023-02-17 19:38:02.393922"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.394667"], ["updated_at", "2023-02-17 19:38:02.394667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.395363"], ["updated_at", "2023-02-17 19:38:02.395363"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.396040"], ["updated_at", "2023-02-17 19:38:02.396040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.396702"], ["updated_at", "2023-02-17 19:38:02.396702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.397414"], ["updated_at", "2023-02-17 19:38:02.397414"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:38:02 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:02.406254"], ["updated_at", "2023-02-17 19:38:02.406254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:02.407697"], ["updated_at", "2023-02-17 19:38:02.407697"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:02.410562"], ["updated_at", "2023-02-17 19:38:02.410562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:02.411814"], ["updated_at", "2023-02-17 19:38:02.411814"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:02.414551"], ["updated_at", "2023-02-17 19:38:02.414551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:02.415694"], ["updated_at", "2023-02-17 19:38:02.415694"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:02.417866"], ["updated_at", "2023-02-17 19:38:02.417866"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:02.419280"], ["updated_at", "2023-02-17 19:38:02.419280"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:02.420857"], ["updated_at", "2023-02-17 19:38:02.420857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:02.422387"], ["updated_at", "2023-02-17 19:38:02.422387"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:02.423813"], ["updated_at", "2023-02-17 19:38:02.423813"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:02.425110"], ["updated_at", "2023-02-17 19:38:02.425110"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:02.426474"], ["updated_at", "2023-02-17 19:38:02.426474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:02.427613"], ["updated_at", "2023-02-17 19:38:02.427613"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:02.429040"], ["updated_at", "2023-02-17 19:38:02.429040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:02.430220"], ["updated_at", "2023-02-17 19:38:02.430220"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:02.431536"], ["updated_at", "2023-02-17 19:38:02.431536"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:02.432893"], ["updated_at", "2023-02-17 19:38:02.432893"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:02.434273"], ["updated_at", "2023-02-17 19:38:02.434273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:02.435433"], ["updated_at", "2023-02-17 19:38:02.435433"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:02.436803"], ["updated_at", "2023-02-17 19:38:02.436803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:02.438088"], ["updated_at", "2023-02-17 19:38:02.438088"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:02.439489"], ["updated_at", "2023-02-17 19:38:02.439489"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:02.440715"], ["updated_at", "2023-02-17 19:38:02.440715"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:02.442180"], ["updated_at", "2023-02-17 19:38:02.442180"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:02.443424"], ["updated_at", "2023-02-17 19:38:02.443424"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:02.444991"], ["updated_at", "2023-02-17 19:38:02.444991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:02.446213"], ["updated_at", "2023-02-17 19:38:02.446213"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:02.447648"], ["updated_at", "2023-02-17 19:38:02.447648"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:02.448825"], ["updated_at", "2023-02-17 19:38:02.448825"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:02.450251"], ["updated_at", "2023-02-17 19:38:02.450251"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:02.451691"], ["updated_at", "2023-02-17 19:38:02.451691"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:02.453209"], ["updated_at", "2023-02-17 19:38:02.453209"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:02.454479"], ["updated_at", "2023-02-17 19:38:02.454479"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:02.455894"], ["updated_at", "2023-02-17 19:38:02.455894"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:02.457056"], ["updated_at", "2023-02-17 19:38:02.457056"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:02.458443"], ["updated_at", "2023-02-17 19:38:02.458443"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:02.459613"], ["updated_at", "2023-02-17 19:38:02.459613"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:02.460943"], ["updated_at", "2023-02-17 19:38:02.460943"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:02.462296"], ["updated_at", "2023-02-17 19:38:02.462296"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:02.463755"], ["updated_at", "2023-02-17 19:38:02.463755"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:02.464938"], ["updated_at", "2023-02-17 19:38:02.464938"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:02.466328"], ["updated_at", "2023-02-17 19:38:02.466328"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.467500"], ["updated_at", "2023-02-17 19:38:02.467500"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:02.468816"], ["updated_at", "2023-02-17 19:38:02.468816"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:02.470124"], ["updated_at", "2023-02-17 19:38:02.470124"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:02.471516"], ["updated_at", "2023-02-17 19:38:02.471516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:02.472856"], ["updated_at", "2023-02-17 19:38:02.472856"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:02.474298"], ["updated_at", "2023-02-17 19:38:02.474298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:02.475472"], ["updated_at", "2023-02-17 19:38:02.475472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:02.476870"], ["updated_at", "2023-02-17 19:38:02.476870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:02.478140"], ["updated_at", "2023-02-17 19:38:02.478140"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:02.479504"], ["updated_at", "2023-02-17 19:38:02.479504"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:02.480646"], ["updated_at", "2023-02-17 19:38:02.480646"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:02.482166"], ["updated_at", "2023-02-17 19:38:02.482166"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:02.483489"], ["updated_at", "2023-02-17 19:38:02.483489"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:02.485006"], ["updated_at", "2023-02-17 19:38:02.485006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:02.486220"], ["updated_at", "2023-02-17 19:38:02.486220"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:02.487552"], ["updated_at", "2023-02-17 19:38:02.487552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:02.488745"], ["updated_at", "2023-02-17 19:38:02.488745"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:02.490099"], ["updated_at", "2023-02-17 19:38:02.490099"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:02.491289"], ["updated_at", "2023-02-17 19:38:02.491289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:02.492837"], ["updated_at", "2023-02-17 19:38:02.492837"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.494066"], ["updated_at", "2023-02-17 19:38:02.494066"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:02.495582"], ["updated_at", "2023-02-17 19:38:02.495582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:02.496796"], ["updated_at", "2023-02-17 19:38:02.496796"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:02.498139"], ["updated_at", "2023-02-17 19:38:02.498139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:02.499409"], ["updated_at", "2023-02-17 19:38:02.499409"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:02.500803"], ["updated_at", "2023-02-17 19:38:02.500803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.502180"], ["updated_at", "2023-02-17 19:38:02.502180"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:02.504060"], ["updated_at", "2023-02-17 19:38:02.504060"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:02.505850"], ["updated_at", "2023-02-17 19:38:02.505850"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:02.507718"], ["updated_at", "2023-02-17 19:38:02.507718"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:02.509263"], ["updated_at", "2023-02-17 19:38:02.509263"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:02.510691"], ["updated_at", "2023-02-17 19:38:02.510691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:02.511870"], ["updated_at", "2023-02-17 19:38:02.511870"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:02.513421"], ["updated_at", "2023-02-17 19:38:02.513421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:02.514699"], ["updated_at", "2023-02-17 19:38:02.514699"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:02.516057"], ["updated_at", "2023-02-17 19:38:02.516057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:02.517239"], ["updated_at", "2023-02-17 19:38:02.517239"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:02.518663"], ["updated_at", "2023-02-17 19:38:02.518663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.519827"], ["updated_at", "2023-02-17 19:38:02.519827"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:02.521203"], ["updated_at", "2023-02-17 19:38:02.521203"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:02.522605"], ["updated_at", "2023-02-17 19:38:02.522605"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:02.524198"], ["updated_at", "2023-02-17 19:38:02.524198"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:02.525734"], ["updated_at", "2023-02-17 19:38:02.525734"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:02.527132"], ["updated_at", "2023-02-17 19:38:02.527132"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:02.528270"], ["updated_at", "2023-02-17 19:38:02.528270"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:02.529674"], ["updated_at", "2023-02-17 19:38:02.529674"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:02.530853"], ["updated_at", "2023-02-17 19:38:02.530853"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:02.532256"], ["updated_at", "2023-02-17 19:38:02.532256"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:02.533527"], ["updated_at", "2023-02-17 19:38:02.533527"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:02.534877"], ["updated_at", "2023-02-17 19:38:02.534877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:02.536016"], ["updated_at", "2023-02-17 19:38:02.536016"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:02.537433"], ["updated_at", "2023-02-17 19:38:02.537433"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:02.538502"], ["updated_at", "2023-02-17 19:38:02.538502"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:02.539685"], ["updated_at", "2023-02-17 19:38:02.539685"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:02.541254"], ["updated_at", "2023-02-17 19:38:02.541254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:02.542807"], ["updated_at", "2023-02-17 19:38:02.542807"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:02.544006"], ["updated_at", "2023-02-17 19:38:02.544006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:02.545081"], ["updated_at", "2023-02-17 19:38:02.545081"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:02.556380"], ["updated_at", "2023-02-17 19:38:02.556380"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:02.557702"], ["updated_at", "2023-02-17 19:38:02.557702"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:02.558684"], ["updated_at", "2023-02-17 19:38:02.558684"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.559584"], ["updated_at", "2023-02-17 19:38:02.559584"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.560388"], ["updated_at", "2023-02-17 19:38:02.560388"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.561086"], ["updated_at", "2023-02-17 19:38:02.561086"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.561749"], ["updated_at", "2023-02-17 19:38:02.561749"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.562543"], ["updated_at", "2023-02-17 19:38:02.562543"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:02.563343"], ["updated_at", "2023-02-17 19:38:02.563343"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.564184"], ["updated_at", "2023-02-17 19:38:02.564184"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.565015"], ["updated_at", "2023-02-17 19:38:02.565015"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.565751"], ["updated_at", "2023-02-17 19:38:02.565751"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.566484"], ["updated_at", "2023-02-17 19:38:02.566484"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.567236"], ["updated_at", "2023-02-17 19:38:02.567236"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.567985"], ["updated_at", "2023-02-17 19:38:02.567985"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.568692"], ["updated_at", "2023-02-17 19:38:02.568692"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.569422"], ["updated_at", "2023-02-17 19:38:02.569422"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.570147"], ["updated_at", "2023-02-17 19:38:02.570147"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.570885"], ["updated_at", "2023-02-17 19:38:02.570885"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.571599"], ["updated_at", "2023-02-17 19:38:02.571599"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.572405"], ["updated_at", "2023-02-17 19:38:02.572405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:02.583867"], ["updated_at", "2023-02-17 19:38:02.583867"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:02.585073"], ["updated_at", "2023-02-17 19:38:02.585073"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:02.585975"], ["updated_at", "2023-02-17 19:38:02.585975"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.586815"], ["updated_at", "2023-02-17 19:38:02.586815"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.587537"], ["updated_at", "2023-02-17 19:38:02.587537"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.588191"], ["updated_at", "2023-02-17 19:38:02.588191"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.588867"], ["updated_at", "2023-02-17 19:38:02.588867"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.589557"], ["updated_at", "2023-02-17 19:38:02.589557"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:02.590303"], ["updated_at", "2023-02-17 19:38:02.590303"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.591259"], ["updated_at", "2023-02-17 19:38:02.591259"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.592061"], ["updated_at", "2023-02-17 19:38:02.592061"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.592930"], ["updated_at", "2023-02-17 19:38:02.592930"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.593676"], ["updated_at", "2023-02-17 19:38:02.593676"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.594412"], ["updated_at", "2023-02-17 19:38:02.594412"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.595116"], ["updated_at", "2023-02-17 19:38:02.595116"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.595831"], ["updated_at", "2023-02-17 19:38:02.595831"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.596561"], ["updated_at", "2023-02-17 19:38:02.596561"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.597304"], ["updated_at", "2023-02-17 19:38:02.597304"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.598052"], ["updated_at", "2023-02-17 19:38:02.598052"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.598789"], ["updated_at", "2023-02-17 19:38:02.598789"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.599494"], ["updated_at", "2023-02-17 19:38:02.599494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.615434"], ["updated_at", "2023-02-17 19:38:02.615434"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.616496"], ["updated_at", "2023-02-17 19:38:02.616496"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.617314"], ["updated_at", "2023-02-17 19:38:02.617314"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.618004"], ["updated_at", "2023-02-17 19:38:02.618004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.618771"], ["updated_at", "2023-02-17 19:38:02.618771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.619555"], ["updated_at", "2023-02-17 19:38:02.619555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.620256"], ["updated_at", "2023-02-17 19:38:02.620256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.621036"], ["updated_at", "2023-02-17 19:38:02.621036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.621774"], ["updated_at", "2023-02-17 19:38:02.621774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.622537"], ["updated_at", "2023-02-17 19:38:02.622537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.623332"], ["updated_at", "2023-02-17 19:38:02.623332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.624271"], ["updated_at", "2023-02-17 19:38:02.624271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.625016"], ["updated_at", "2023-02-17 19:38:02.625016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.625697"], ["updated_at", "2023-02-17 19:38:02.625697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.626403"], ["updated_at", "2023-02-17 19:38:02.626403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.627096"], ["updated_at", "2023-02-17 19:38:02.627096"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.644909"], ["updated_at", "2023-02-17 19:38:02.644909"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.646077"], ["updated_at", "2023-02-17 19:38:02.646077"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.647132"], ["updated_at", "2023-02-17 19:38:02.647132"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.648087"], ["updated_at", "2023-02-17 19:38:02.648087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.648896"], ["updated_at", "2023-02-17 19:38:02.648896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.649663"], ["updated_at", "2023-02-17 19:38:02.649663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.650378"], ["updated_at", "2023-02-17 19:38:02.650378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.651048"], ["updated_at", "2023-02-17 19:38:02.651048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.651816"], ["updated_at", "2023-02-17 19:38:02.651816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.652543"], ["updated_at", "2023-02-17 19:38:02.652543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.653334"], ["updated_at", "2023-02-17 19:38:02.653334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.654080"], ["updated_at", "2023-02-17 19:38:02.654080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.654791"], ["updated_at", "2023-02-17 19:38:02.654791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.655459"], ["updated_at", "2023-02-17 19:38:02.655459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.656153"], ["updated_at", "2023-02-17 19:38:02.656153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:02.657086"], ["updated_at", "2023-02-17 19:38:02.657086"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.672811"], ["updated_at", "2023-02-17 19:38:02.672811"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.673845"], ["updated_at", "2023-02-17 19:38:02.673845"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.674842"], ["updated_at", "2023-02-17 19:38:02.674842"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.675600"], ["updated_at", "2023-02-17 19:38:02.675600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.676354"], ["updated_at", "2023-02-17 19:38:02.676354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.677078"], ["updated_at", "2023-02-17 19:38:02.677078"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.677776"], ["updated_at", "2023-02-17 19:38:02.677776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.678622"], ["updated_at", "2023-02-17 19:38:02.678622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.679629"], ["updated_at", "2023-02-17 19:38:02.679629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.680382"], ["updated_at", "2023-02-17 19:38:02.680382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.681110"], ["updated_at", "2023-02-17 19:38:02.681110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.681882"], ["updated_at", "2023-02-17 19:38:02.681882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.682623"], ["updated_at", "2023-02-17 19:38:02.682623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.683330"], ["updated_at", "2023-02-17 19:38:02.683330"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.684016"], ["updated_at", "2023-02-17 19:38:02.684016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:02.684706"], ["updated_at", "2023-02-17 19:38:02.684706"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.701161"], ["updated_at", "2023-02-17 19:38:02.701161"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.702231"], ["updated_at", "2023-02-17 19:38:02.702231"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.703304"], ["updated_at", "2023-02-17 19:38:02.703304"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.704085"], ["updated_at", "2023-02-17 19:38:02.704085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.704857"], ["updated_at", "2023-02-17 19:38:02.704857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.705578"], ["updated_at", "2023-02-17 19:38:02.705578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.706273"], ["updated_at", "2023-02-17 19:38:02.706273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.707011"], ["updated_at", "2023-02-17 19:38:02.707011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.708031"], ["updated_at", "2023-02-17 19:38:02.708031"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.708816"], ["updated_at", "2023-02-17 19:38:02.708816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.709524"], ["updated_at", "2023-02-17 19:38:02.709524"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.710209"], ["updated_at", "2023-02-17 19:38:02.710209"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.711051"], ["updated_at", "2023-02-17 19:38:02.711051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.712111"], ["updated_at", "2023-02-17 19:38:02.712111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.713231"], ["updated_at", "2023-02-17 19:38:02.713231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:02.714075"], ["updated_at", "2023-02-17 19:38:02.714075"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.731485"], ["updated_at", "2023-02-17 19:38:02.731485"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.732672"], ["updated_at", "2023-02-17 19:38:02.732672"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.733753"], ["updated_at", "2023-02-17 19:38:02.733753"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.734504"], ["updated_at", "2023-02-17 19:38:02.734504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.735256"], ["updated_at", "2023-02-17 19:38:02.735256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.735986"], ["updated_at", "2023-02-17 19:38:02.735986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.736688"], ["updated_at", "2023-02-17 19:38:02.736688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.737385"], ["updated_at", "2023-02-17 19:38:02.737385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.738075"], ["updated_at", "2023-02-17 19:38:02.738075"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.738761"], ["updated_at", "2023-02-17 19:38:02.738761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.739451"], ["updated_at", "2023-02-17 19:38:02.739451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.740131"], ["updated_at", "2023-02-17 19:38:02.740131"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.741057"], ["updated_at", "2023-02-17 19:38:02.741057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.741890"], ["updated_at", "2023-02-17 19:38:02.741890"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.742996"], ["updated_at", "2023-02-17 19:38:02.742996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:02.743886"], ["updated_at", "2023-02-17 19:38:02.743886"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.760377"], ["updated_at", "2023-02-17 19:38:02.760377"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.761494"], ["updated_at", "2023-02-17 19:38:02.761494"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.762478"], ["updated_at", "2023-02-17 19:38:02.762478"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.763525"], ["updated_at", "2023-02-17 19:38:02.763525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.764352"], ["updated_at", "2023-02-17 19:38:02.764352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.765074"], ["updated_at", "2023-02-17 19:38:02.765074"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.765766"], ["updated_at", "2023-02-17 19:38:02.765766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.766471"], ["updated_at", "2023-02-17 19:38:02.766471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.767151"], ["updated_at", "2023-02-17 19:38:02.767151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.767812"], ["updated_at", "2023-02-17 19:38:02.767812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.768491"], ["updated_at", "2023-02-17 19:38:02.768491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.769186"], ["updated_at", "2023-02-17 19:38:02.769186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.769894"], ["updated_at", "2023-02-17 19:38:02.769894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.770601"], ["updated_at", "2023-02-17 19:38:02.770601"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.771296"], ["updated_at", "2023-02-17 19:38:02.771296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:02.771967"], ["updated_at", "2023-02-17 19:38:02.771967"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:38:02 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:02.781459"], ["updated_at", "2023-02-17 19:38:02.781459"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:02.783003"], ["updated_at", "2023-02-17 19:38:02.783003"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:02.785892"], ["updated_at", "2023-02-17 19:38:02.785892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:02.787072"], ["updated_at", "2023-02-17 19:38:02.787072"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:02.789689"], ["updated_at", "2023-02-17 19:38:02.789689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:02.791110"], ["updated_at", "2023-02-17 19:38:02.791110"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:02.793351"], ["updated_at", "2023-02-17 19:38:02.793351"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:02.794790"], ["updated_at", "2023-02-17 19:38:02.794790"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:02.796669"], ["updated_at", "2023-02-17 19:38:02.796669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:02.798043"], ["updated_at", "2023-02-17 19:38:02.798043"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:02.799471"], ["updated_at", "2023-02-17 19:38:02.799471"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:02.801206"], ["updated_at", "2023-02-17 19:38:02.801206"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:02.802915"], ["updated_at", "2023-02-17 19:38:02.802915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:02.804249"], ["updated_at", "2023-02-17 19:38:02.804249"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:02.805791"], ["updated_at", "2023-02-17 19:38:02.805791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:02.807027"], ["updated_at", "2023-02-17 19:38:02.807027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:02.808695"], ["updated_at", "2023-02-17 19:38:02.808695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:02.809933"], ["updated_at", "2023-02-17 19:38:02.809933"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:02.811349"], ["updated_at", "2023-02-17 19:38:02.811349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:02.812944"], ["updated_at", "2023-02-17 19:38:02.812944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:02.814406"], ["updated_at", "2023-02-17 19:38:02.814406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:02.815613"], ["updated_at", "2023-02-17 19:38:02.815613"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:02.816957"], ["updated_at", "2023-02-17 19:38:02.816957"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:02.818147"], ["updated_at", "2023-02-17 19:38:02.818147"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:02.819531"], ["updated_at", "2023-02-17 19:38:02.819531"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:02.820773"], ["updated_at", "2023-02-17 19:38:02.820773"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:02.822184"], ["updated_at", "2023-02-17 19:38:02.822184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:02.823501"], ["updated_at", "2023-02-17 19:38:02.823501"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:02.825015"], ["updated_at", "2023-02-17 19:38:02.825015"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:02.826242"], ["updated_at", "2023-02-17 19:38:02.826242"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:02.827628"], ["updated_at", "2023-02-17 19:38:02.827628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:02.828814"], ["updated_at", "2023-02-17 19:38:02.828814"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:02.830211"], ["updated_at", "2023-02-17 19:38:02.830211"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:02.831362"], ["updated_at", "2023-02-17 19:38:02.831362"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:02.832819"], ["updated_at", "2023-02-17 19:38:02.832819"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:02.834061"], ["updated_at", "2023-02-17 19:38:02.834061"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:02.835428"], ["updated_at", "2023-02-17 19:38:02.835428"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:02.836574"], ["updated_at", "2023-02-17 19:38:02.836574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:02.837984"], ["updated_at", "2023-02-17 19:38:02.837984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:02.839175"], ["updated_at", "2023-02-17 19:38:02.839175"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:02.840583"], ["updated_at", "2023-02-17 19:38:02.840583"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:02.841911"], ["updated_at", "2023-02-17 19:38:02.841911"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:02.843395"], ["updated_at", "2023-02-17 19:38:02.843395"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.844592"], ["updated_at", "2023-02-17 19:38:02.844592"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:02.845971"], ["updated_at", "2023-02-17 19:38:02.845971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:02.847140"], ["updated_at", "2023-02-17 19:38:02.847140"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:02.848470"], ["updated_at", "2023-02-17 19:38:02.848470"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:02.849668"], ["updated_at", "2023-02-17 19:38:02.849668"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:02.851055"], ["updated_at", "2023-02-17 19:38:02.851055"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:02.852237"], ["updated_at", "2023-02-17 19:38:02.852237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:02.853735"], ["updated_at", "2023-02-17 19:38:02.853735"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:02.855043"], ["updated_at", "2023-02-17 19:38:02.855043"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:02.856597"], ["updated_at", "2023-02-17 19:38:02.856597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:02.857925"], ["updated_at", "2023-02-17 19:38:02.857925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:02.859384"], ["updated_at", "2023-02-17 19:38:02.859384"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:02.860557"], ["updated_at", "2023-02-17 19:38:02.860557"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:02.861917"], ["updated_at", "2023-02-17 19:38:02.861917"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:02.863213"], ["updated_at", "2023-02-17 19:38:02.863213"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:02.864579"], ["updated_at", "2023-02-17 19:38:02.864579"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:02.865741"], ["updated_at", "2023-02-17 19:38:02.865741"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:02.867111"], ["updated_at", "2023-02-17 19:38:02.867111"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:02.868270"], ["updated_at", "2023-02-17 19:38:02.868270"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:02.869621"], ["updated_at", "2023-02-17 19:38:02.869621"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.870795"], ["updated_at", "2023-02-17 19:38:02.870795"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:02.872146"], ["updated_at", "2023-02-17 19:38:02.872146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:02.873439"], ["updated_at", "2023-02-17 19:38:02.873439"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:02.874972"], ["updated_at", "2023-02-17 19:38:02.874972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:02.876175"], ["updated_at", "2023-02-17 19:38:02.876175"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:02.877539"], ["updated_at", "2023-02-17 19:38:02.877539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.878721"], ["updated_at", "2023-02-17 19:38:02.878721"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:02.880062"], ["updated_at", "2023-02-17 19:38:02.880062"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:02.881244"], ["updated_at", "2023-02-17 19:38:02.881244"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:02.882686"], ["updated_at", "2023-02-17 19:38:02.882686"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:02.883920"], ["updated_at", "2023-02-17 19:38:02.883920"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:02.885302"], ["updated_at", "2023-02-17 19:38:02.885302"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:02.886486"], ["updated_at", "2023-02-17 19:38:02.886486"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:02.887816"], ["updated_at", "2023-02-17 19:38:02.887816"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:02.889013"], ["updated_at", "2023-02-17 19:38:02.889013"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:02.890397"], ["updated_at", "2023-02-17 19:38:02.890397"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:02.891675"], ["updated_at", "2023-02-17 19:38:02.891675"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:02.893290"], ["updated_at", "2023-02-17 19:38:02.893290"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:02.894515"], ["updated_at", "2023-02-17 19:38:02.894515"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:02.895920"], ["updated_at", "2023-02-17 19:38:02.895920"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:02.897158"], ["updated_at", "2023-02-17 19:38:02.897158"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:02.898519"], ["updated_at", "2023-02-17 19:38:02.898519"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:02.899674"], ["updated_at", "2023-02-17 19:38:02.899674"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:02.901037"], ["updated_at", "2023-02-17 19:38:02.901037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:02.902205"], ["updated_at", "2023-02-17 19:38:02.902205"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:02.903683"], ["updated_at", "2023-02-17 19:38:02.903683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:02.904875"], ["updated_at", "2023-02-17 19:38:02.904875"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:02.906239"], ["updated_at", "2023-02-17 19:38:02.906239"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:02.907540"], ["updated_at", "2023-02-17 19:38:02.907540"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:02.908994"], ["updated_at", "2023-02-17 19:38:02.908994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:02.910167"], ["updated_at", "2023-02-17 19:38:02.910167"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:02.911542"], ["updated_at", "2023-02-17 19:38:02.911542"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:02.912687"], ["updated_at", "2023-02-17 19:38:02.912687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:02.913964"], ["updated_at", "2023-02-17 19:38:02.913964"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:02.915369"], ["updated_at", "2023-02-17 19:38:02.915369"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:02.916804"], ["updated_at", "2023-02-17 19:38:02.916804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:02.917904"], ["updated_at", "2023-02-17 19:38:02.917904"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:02.918899"], ["updated_at", "2023-02-17 19:38:02.918899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:02.930189"], ["updated_at", "2023-02-17 19:38:02.930189"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:02.931466"], ["updated_at", "2023-02-17 19:38:02.931466"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:02.932483"], ["updated_at", "2023-02-17 19:38:02.932483"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.933460"], ["updated_at", "2023-02-17 19:38:02.933460"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.934232"], ["updated_at", "2023-02-17 19:38:02.934232"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.934923"], ["updated_at", "2023-02-17 19:38:02.934923"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.935613"], ["updated_at", "2023-02-17 19:38:02.935613"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.936276"], ["updated_at", "2023-02-17 19:38:02.936276"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:02.937157"], ["updated_at", "2023-02-17 19:38:02.937157"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.938213"], ["updated_at", "2023-02-17 19:38:02.938213"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.939095"], ["updated_at", "2023-02-17 19:38:02.939095"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.939874"], ["updated_at", "2023-02-17 19:38:02.939874"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.940666"], ["updated_at", "2023-02-17 19:38:02.940666"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.941501"], ["updated_at", "2023-02-17 19:38:02.941501"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.942229"], ["updated_at", "2023-02-17 19:38:02.942229"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.943039"], ["updated_at", "2023-02-17 19:38:02.943039"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.943817"], ["updated_at", "2023-02-17 19:38:02.943817"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.944554"], ["updated_at", "2023-02-17 19:38:02.944554"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.945271"], ["updated_at", "2023-02-17 19:38:02.945271"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.945992"], ["updated_at", "2023-02-17 19:38:02.945992"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.946748"], ["updated_at", "2023-02-17 19:38:02.946748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:02.958357"], ["updated_at", "2023-02-17 19:38:02.958357"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:02.959573"], ["updated_at", "2023-02-17 19:38:02.959573"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:02.960501"], ["updated_at", "2023-02-17 19:38:02.960501"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.961390"], ["updated_at", "2023-02-17 19:38:02.961390"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.962130"], ["updated_at", "2023-02-17 19:38:02.962130"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.962877"], ["updated_at", "2023-02-17 19:38:02.962877"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.963601"], ["updated_at", "2023-02-17 19:38:02.963601"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:02.964300"], ["updated_at", "2023-02-17 19:38:02.964300"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:02.965051"], ["updated_at", "2023-02-17 19:38:02.965051"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.965904"], ["updated_at", "2023-02-17 19:38:02.965904"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.966697"], ["updated_at", "2023-02-17 19:38:02.966697"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.967437"], ["updated_at", "2023-02-17 19:38:02.967437"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.968186"], ["updated_at", "2023-02-17 19:38:02.968186"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.968897"], ["updated_at", "2023-02-17 19:38:02.968897"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.969666"], ["updated_at", "2023-02-17 19:38:02.969666"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.970387"], ["updated_at", "2023-02-17 19:38:02.970387"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.971117"], ["updated_at", "2023-02-17 19:38:02.971117"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.971884"], ["updated_at", "2023-02-17 19:38:02.971884"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.972619"], ["updated_at", "2023-02-17 19:38:02.972619"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.973524"], ["updated_at", "2023-02-17 19:38:02.973524"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:02.974346"], ["updated_at", "2023-02-17 19:38:02.974346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:02.990476"], ["updated_at", "2023-02-17 19:38:02.990476"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:02.991587"], ["updated_at", "2023-02-17 19:38:02.991587"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:02.992469"], ["updated_at", "2023-02-17 19:38:02.992469"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:02.993391"], ["updated_at", "2023-02-17 19:38:02.993391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.994409"], ["updated_at", "2023-02-17 19:38:02.994409"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.995294"], ["updated_at", "2023-02-17 19:38:02.995294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.996079"], ["updated_at", "2023-02-17 19:38:02.996079"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.996804"], ["updated_at", "2023-02-17 19:38:02.996804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:02.999846"], ["updated_at", "2023-02-17 19:38:02.999846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.000882"], ["updated_at", "2023-02-17 19:38:03.000882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.001661"], ["updated_at", "2023-02-17 19:38:03.001661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.002371"], ["updated_at", "2023-02-17 19:38:03.002371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.003112"], ["updated_at", "2023-02-17 19:38:03.003112"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.003834"], ["updated_at", "2023-02-17 19:38:03.003834"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.004520"], ["updated_at", "2023-02-17 19:38:03.004520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.005232"], ["updated_at", "2023-02-17 19:38:03.005232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.021386"], ["updated_at", "2023-02-17 19:38:03.021386"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.022349"], ["updated_at", "2023-02-17 19:38:03.022349"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.023193"], ["updated_at", "2023-02-17 19:38:03.023193"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.024034"], ["updated_at", "2023-02-17 19:38:03.024034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.025180"], ["updated_at", "2023-02-17 19:38:03.025180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.026225"], ["updated_at", "2023-02-17 19:38:03.026225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.027269"], ["updated_at", "2023-02-17 19:38:03.027269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.028175"], ["updated_at", "2023-02-17 19:38:03.028175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.028931"], ["updated_at", "2023-02-17 19:38:03.028931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.029631"], ["updated_at", "2023-02-17 19:38:03.029631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.030304"], ["updated_at", "2023-02-17 19:38:03.030304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.030991"], ["updated_at", "2023-02-17 19:38:03.030991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.031695"], ["updated_at", "2023-02-17 19:38:03.031695"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.032404"], ["updated_at", "2023-02-17 19:38:03.032404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.033101"], ["updated_at", "2023-02-17 19:38:03.033101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.033887"], ["updated_at", "2023-02-17 19:38:03.033887"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.052681"], ["updated_at", "2023-02-17 19:38:03.052681"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.053883"], ["updated_at", "2023-02-17 19:38:03.053883"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.054656"], ["updated_at", "2023-02-17 19:38:03.054656"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.055373"], ["updated_at", "2023-02-17 19:38:03.055373"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.056123"], ["updated_at", "2023-02-17 19:38:03.056123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.056828"], ["updated_at", "2023-02-17 19:38:03.056828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.057780"], ["updated_at", "2023-02-17 19:38:03.057780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.058797"], ["updated_at", "2023-02-17 19:38:03.058797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.059849"], ["updated_at", "2023-02-17 19:38:03.059849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.060874"], ["updated_at", "2023-02-17 19:38:03.060874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.061953"], ["updated_at", "2023-02-17 19:38:03.061953"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.062809"], ["updated_at", "2023-02-17 19:38:03.062809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.063614"], ["updated_at", "2023-02-17 19:38:03.063614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.064334"], ["updated_at", "2023-02-17 19:38:03.064334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.065038"], ["updated_at", "2023-02-17 19:38:03.065038"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.065746"], ["updated_at", "2023-02-17 19:38:03.065746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.083142"], ["updated_at", "2023-02-17 19:38:03.083142"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.084402"], ["updated_at", "2023-02-17 19:38:03.084402"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.085434"], ["updated_at", "2023-02-17 19:38:03.085434"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.086453"], ["updated_at", "2023-02-17 19:38:03.086453"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.087549"], ["updated_at", "2023-02-17 19:38:03.087549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.088372"], ["updated_at", "2023-02-17 19:38:03.088372"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.089086"], ["updated_at", "2023-02-17 19:38:03.089086"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.089787"], ["updated_at", "2023-02-17 19:38:03.089787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.090531"], ["updated_at", "2023-02-17 19:38:03.090531"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.091283"], ["updated_at", "2023-02-17 19:38:03.091283"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.091967"], ["updated_at", "2023-02-17 19:38:03.091967"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.092681"], ["updated_at", "2023-02-17 19:38:03.092681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.093470"], ["updated_at", "2023-02-17 19:38:03.093470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.094236"], ["updated_at", "2023-02-17 19:38:03.094236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.094955"], ["updated_at", "2023-02-17 19:38:03.094955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.095655"], ["updated_at", "2023-02-17 19:38:03.095655"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.111820"], ["updated_at", "2023-02-17 19:38:03.111820"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.112771"], ["updated_at", "2023-02-17 19:38:03.112771"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.113642"], ["updated_at", "2023-02-17 19:38:03.113642"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.114422"], ["updated_at", "2023-02-17 19:38:03.114422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.115186"], ["updated_at", "2023-02-17 19:38:03.115186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.115899"], ["updated_at", "2023-02-17 19:38:03.115899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.116600"], ["updated_at", "2023-02-17 19:38:03.116600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.117366"], ["updated_at", "2023-02-17 19:38:03.117366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.118399"], ["updated_at", "2023-02-17 19:38:03.118399"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.119362"], ["updated_at", "2023-02-17 19:38:03.119362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.120111"], ["updated_at", "2023-02-17 19:38:03.120111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.120857"], ["updated_at", "2023-02-17 19:38:03.120857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.121724"], ["updated_at", "2023-02-17 19:38:03.121724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.122741"], ["updated_at", "2023-02-17 19:38:03.122741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.123739"], ["updated_at", "2023-02-17 19:38:03.123739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.124643"], ["updated_at", "2023-02-17 19:38:03.124643"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.141610"], ["updated_at", "2023-02-17 19:38:03.141610"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.142648"], ["updated_at", "2023-02-17 19:38:03.142648"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.143475"], ["updated_at", "2023-02-17 19:38:03.143475"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.144397"], ["updated_at", "2023-02-17 19:38:03.144397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.145384"], ["updated_at", "2023-02-17 19:38:03.145384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.146180"], ["updated_at", "2023-02-17 19:38:03.146180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.146941"], ["updated_at", "2023-02-17 19:38:03.146941"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.147720"], ["updated_at", "2023-02-17 19:38:03.147720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.148470"], ["updated_at", "2023-02-17 19:38:03.148470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.149190"], ["updated_at", "2023-02-17 19:38:03.149190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.149891"], ["updated_at", "2023-02-17 19:38:03.149891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.150634"], ["updated_at", "2023-02-17 19:38:03.150634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.151442"], ["updated_at", "2023-02-17 19:38:03.151442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.152223"], ["updated_at", "2023-02-17 19:38:03.152223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.152935"], ["updated_at", "2023-02-17 19:38:03.152935"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.153624"], ["updated_at", "2023-02-17 19:38:03.153624"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:38:03 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:03.164352"], ["updated_at", "2023-02-17 19:38:03.164352"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:03.165842"], ["updated_at", "2023-02-17 19:38:03.165842"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:03.168764"], ["updated_at", "2023-02-17 19:38:03.168764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:03.169967"], ["updated_at", "2023-02-17 19:38:03.169967"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:03.172729"], ["updated_at", "2023-02-17 19:38:03.172729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:03.174142"], ["updated_at", "2023-02-17 19:38:03.174142"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:03.176644"], ["updated_at", "2023-02-17 19:38:03.176644"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:03.178226"], ["updated_at", "2023-02-17 19:38:03.178226"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:03.180289"], ["updated_at", "2023-02-17 19:38:03.180289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:03.181861"], ["updated_at", "2023-02-17 19:38:03.181861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:03.183311"], ["updated_at", "2023-02-17 19:38:03.183311"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:03.184754"], ["updated_at", "2023-02-17 19:38:03.184754"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:03.186256"], ["updated_at", "2023-02-17 19:38:03.186256"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:03.187619"], ["updated_at", "2023-02-17 19:38:03.187619"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:03.189197"], ["updated_at", "2023-02-17 19:38:03.189197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:03.190597"], ["updated_at", "2023-02-17 19:38:03.190597"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:03.192435"], ["updated_at", "2023-02-17 19:38:03.192435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:03.193882"], ["updated_at", "2023-02-17 19:38:03.193882"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:03.195373"], ["updated_at", "2023-02-17 19:38:03.195373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:03.196701"], ["updated_at", "2023-02-17 19:38:03.196701"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:03.198224"], ["updated_at", "2023-02-17 19:38:03.198224"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:03.199440"], ["updated_at", "2023-02-17 19:38:03.199440"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:03.200973"], ["updated_at", "2023-02-17 19:38:03.200973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:03.202247"], ["updated_at", "2023-02-17 19:38:03.202247"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:03.203641"], ["updated_at", "2023-02-17 19:38:03.203641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:03.205176"], ["updated_at", "2023-02-17 19:38:03.205176"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:03.206672"], ["updated_at", "2023-02-17 19:38:03.206672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:03.208091"], ["updated_at", "2023-02-17 19:38:03.208091"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:03.209702"], ["updated_at", "2023-02-17 19:38:03.209702"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:03.211517"], ["updated_at", "2023-02-17 19:38:03.211517"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:03.213514"], ["updated_at", "2023-02-17 19:38:03.213514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:03.215123"], ["updated_at", "2023-02-17 19:38:03.215123"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:03.217019"], ["updated_at", "2023-02-17 19:38:03.217019"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:03.218684"], ["updated_at", "2023-02-17 19:38:03.218684"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:03.220365"], ["updated_at", "2023-02-17 19:38:03.220365"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:03.221945"], ["updated_at", "2023-02-17 19:38:03.221945"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:03.223852"], ["updated_at", "2023-02-17 19:38:03.223852"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:03.226261"], ["updated_at", "2023-02-17 19:38:03.226261"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:03.228748"], ["updated_at", "2023-02-17 19:38:03.228748"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:03.230948"], ["updated_at", "2023-02-17 19:38:03.230948"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:03.233282"], ["updated_at", "2023-02-17 19:38:03.233282"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:03.234944"], ["updated_at", "2023-02-17 19:38:03.234944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:03.236385"], ["updated_at", "2023-02-17 19:38:03.236385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:03.237592"], ["updated_at", "2023-02-17 19:38:03.237592"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:03.239144"], ["updated_at", "2023-02-17 19:38:03.239144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:03.240424"], ["updated_at", "2023-02-17 19:38:03.240424"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:03.242014"], ["updated_at", "2023-02-17 19:38:03.242014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:03.243350"], ["updated_at", "2023-02-17 19:38:03.243350"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:03.245188"], ["updated_at", "2023-02-17 19:38:03.245188"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:03.246580"], ["updated_at", "2023-02-17 19:38:03.246580"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:03.248047"], ["updated_at", "2023-02-17 19:38:03.248047"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:03.249307"], ["updated_at", "2023-02-17 19:38:03.249307"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:03.250791"], ["updated_at", "2023-02-17 19:38:03.250791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:03.252268"], ["updated_at", "2023-02-17 19:38:03.252268"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:03.253935"], ["updated_at", "2023-02-17 19:38:03.253935"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:03.255296"], ["updated_at", "2023-02-17 19:38:03.255296"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:03.256757"], ["updated_at", "2023-02-17 19:38:03.256757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:03.258345"], ["updated_at", "2023-02-17 19:38:03.258345"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:03.260191"], ["updated_at", "2023-02-17 19:38:03.260191"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:03.261835"], ["updated_at", "2023-02-17 19:38:03.261835"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:03.264344"], ["updated_at", "2023-02-17 19:38:03.264344"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:03.266156"], ["updated_at", "2023-02-17 19:38:03.266156"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:03.268386"], ["updated_at", "2023-02-17 19:38:03.268386"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:03.270053"], ["updated_at", "2023-02-17 19:38:03.270053"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:03.271977"], ["updated_at", "2023-02-17 19:38:03.271977"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:03.273638"], ["updated_at", "2023-02-17 19:38:03.273638"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:03.275969"], ["updated_at", "2023-02-17 19:38:03.275969"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:03.278070"], ["updated_at", "2023-02-17 19:38:03.278070"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:03.280031"], ["updated_at", "2023-02-17 19:38:03.280031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:03.281778"], ["updated_at", "2023-02-17 19:38:03.281778"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:03.283598"], ["updated_at", "2023-02-17 19:38:03.283598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:03.285262"], ["updated_at", "2023-02-17 19:38:03.285262"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:03.287056"], ["updated_at", "2023-02-17 19:38:03.287056"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:03.288711"], ["updated_at", "2023-02-17 19:38:03.288711"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:03.290743"], ["updated_at", "2023-02-17 19:38:03.290743"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:03.292976"], ["updated_at", "2023-02-17 19:38:03.292976"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:03.295519"], ["updated_at", "2023-02-17 19:38:03.295519"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:03.297790"], ["updated_at", "2023-02-17 19:38:03.297790"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:03.300151"], ["updated_at", "2023-02-17 19:38:03.300151"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:03.302495"], ["updated_at", "2023-02-17 19:38:03.302495"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:03.304911"], ["updated_at", "2023-02-17 19:38:03.304911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:03.306787"], ["updated_at", "2023-02-17 19:38:03.306787"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:03.308864"], ["updated_at", "2023-02-17 19:38:03.308864"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:03.310579"], ["updated_at", "2023-02-17 19:38:03.310579"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:03.312488"], ["updated_at", "2023-02-17 19:38:03.312488"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:03.314119"], ["updated_at", "2023-02-17 19:38:03.314119"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:03.315910"], ["updated_at", "2023-02-17 19:38:03.315910"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:03.317972"], ["updated_at", "2023-02-17 19:38:03.317972"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:03.320329"], ["updated_at", "2023-02-17 19:38:03.320329"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:03.322103"], ["updated_at", "2023-02-17 19:38:03.322103"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:03.323939"], ["updated_at", "2023-02-17 19:38:03.323939"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:03.326112"], ["updated_at", "2023-02-17 19:38:03.326112"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:03.328502"], ["updated_at", "2023-02-17 19:38:03.328502"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:03.330384"], ["updated_at", "2023-02-17 19:38:03.330384"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:03.332373"], ["updated_at", "2023-02-17 19:38:03.332373"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:03.333978"], ["updated_at", "2023-02-17 19:38:03.333978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:03.335731"], ["updated_at", "2023-02-17 19:38:03.335731"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:03.337514"], ["updated_at", "2023-02-17 19:38:03.337514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.6ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:03.339374"], ["updated_at", "2023-02-17 19:38:03.339374"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:03.341657"], ["updated_at", "2023-02-17 19:38:03.341657"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:03.343615"], ["updated_at", "2023-02-17 19:38:03.343615"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.9ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:03.357525"], ["updated_at", "2023-02-17 19:38:03.357525"], ["role_id", 2]]
SurveyQuestion Create (1.4ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:03.359881"], ["updated_at", "2023-02-17 19:38:03.359881"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:03.362499"], ["updated_at", "2023-02-17 19:38:03.362499"]]
QuestionOption Create (0.9ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.363694"], ["updated_at", "2023-02-17 19:38:03.363694"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.365463"], ["updated_at", "2023-02-17 19:38:03.365463"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.366350"], ["updated_at", "2023-02-17 19:38:03.366350"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.367207"], ["updated_at", "2023-02-17 19:38:03.367207"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.368060"], ["updated_at", "2023-02-17 19:38:03.368060"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:03.369008"], ["updated_at", "2023-02-17 19:38:03.369008"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.369899"], ["updated_at", "2023-02-17 19:38:03.369899"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.370792"], ["updated_at", "2023-02-17 19:38:03.370792"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.371574"], ["updated_at", "2023-02-17 19:38:03.371574"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.372436"], ["updated_at", "2023-02-17 19:38:03.372436"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.373275"], ["updated_at", "2023-02-17 19:38:03.373275"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.374117"], ["updated_at", "2023-02-17 19:38:03.374117"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.374899"], ["updated_at", "2023-02-17 19:38:03.374899"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.375730"], ["updated_at", "2023-02-17 19:38:03.375730"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.376701"], ["updated_at", "2023-02-17 19:38:03.376701"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.377838"], ["updated_at", "2023-02-17 19:38:03.377838"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.378739"], ["updated_at", "2023-02-17 19:38:03.378739"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.379520"], ["updated_at", "2023-02-17 19:38:03.379520"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:03.391173"], ["updated_at", "2023-02-17 19:38:03.391173"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:03.392563"], ["updated_at", "2023-02-17 19:38:03.392563"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:03.393654"], ["updated_at", "2023-02-17 19:38:03.393654"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:03.394864"], ["updated_at", "2023-02-17 19:38:03.394864"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:03.395730"], ["updated_at", "2023-02-17 19:38:03.395730"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:03.396463"], ["updated_at", "2023-02-17 19:38:03.396463"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:03.397197"], ["updated_at", "2023-02-17 19:38:03.397197"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:03.397884"], ["updated_at", "2023-02-17 19:38:03.397884"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:03.398638"], ["updated_at", "2023-02-17 19:38:03.398638"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.399502"], ["updated_at", "2023-02-17 19:38:03.399502"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.400288"], ["updated_at", "2023-02-17 19:38:03.400288"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.401083"], ["updated_at", "2023-02-17 19:38:03.401083"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.401912"], ["updated_at", "2023-02-17 19:38:03.401912"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.402715"], ["updated_at", "2023-02-17 19:38:03.402715"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.403462"], ["updated_at", "2023-02-17 19:38:03.403462"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.404200"], ["updated_at", "2023-02-17 19:38:03.404200"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.404962"], ["updated_at", "2023-02-17 19:38:03.404962"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.405701"], ["updated_at", "2023-02-17 19:38:03.405701"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.406452"], ["updated_at", "2023-02-17 19:38:03.406452"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.407313"], ["updated_at", "2023-02-17 19:38:03.407313"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:03.408359"], ["updated_at", "2023-02-17 19:38:03.408359"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.424760"], ["updated_at", "2023-02-17 19:38:03.424760"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.425819"], ["updated_at", "2023-02-17 19:38:03.425819"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.426644"], ["updated_at", "2023-02-17 19:38:03.426644"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.427390"], ["updated_at", "2023-02-17 19:38:03.427390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.428173"], ["updated_at", "2023-02-17 19:38:03.428173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.428964"], ["updated_at", "2023-02-17 19:38:03.428964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.429739"], ["updated_at", "2023-02-17 19:38:03.429739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.430451"], ["updated_at", "2023-02-17 19:38:03.430451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.431161"], ["updated_at", "2023-02-17 19:38:03.431161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.431863"], ["updated_at", "2023-02-17 19:38:03.431863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.432652"], ["updated_at", "2023-02-17 19:38:03.432652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.433383"], ["updated_at", "2023-02-17 19:38:03.433383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.434072"], ["updated_at", "2023-02-17 19:38:03.434072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.434783"], ["updated_at", "2023-02-17 19:38:03.434783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.435486"], ["updated_at", "2023-02-17 19:38:03.435486"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:03.436175"], ["updated_at", "2023-02-17 19:38:03.436175"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.457914"], ["updated_at", "2023-02-17 19:38:03.457914"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.458874"], ["updated_at", "2023-02-17 19:38:03.458874"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.459619"], ["updated_at", "2023-02-17 19:38:03.459619"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.460324"], ["updated_at", "2023-02-17 19:38:03.460324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.461085"], ["updated_at", "2023-02-17 19:38:03.461085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.461814"], ["updated_at", "2023-02-17 19:38:03.461814"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.462614"], ["updated_at", "2023-02-17 19:38:03.462614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.463337"], ["updated_at", "2023-02-17 19:38:03.463337"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.464127"], ["updated_at", "2023-02-17 19:38:03.464127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.464934"], ["updated_at", "2023-02-17 19:38:03.464934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.465700"], ["updated_at", "2023-02-17 19:38:03.465700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.466408"], ["updated_at", "2023-02-17 19:38:03.466408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.467097"], ["updated_at", "2023-02-17 19:38:03.467097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.467781"], ["updated_at", "2023-02-17 19:38:03.467781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.468471"], ["updated_at", "2023-02-17 19:38:03.468471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:03.469156"], ["updated_at", "2023-02-17 19:38:03.469156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.485003"], ["updated_at", "2023-02-17 19:38:03.485003"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.485971"], ["updated_at", "2023-02-17 19:38:03.485971"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.486750"], ["updated_at", "2023-02-17 19:38:03.486750"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.487507"], ["updated_at", "2023-02-17 19:38:03.487507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.488281"], ["updated_at", "2023-02-17 19:38:03.488281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.488992"], ["updated_at", "2023-02-17 19:38:03.488992"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.489698"], ["updated_at", "2023-02-17 19:38:03.489698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.490417"], ["updated_at", "2023-02-17 19:38:03.490417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.491110"], ["updated_at", "2023-02-17 19:38:03.491110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.491790"], ["updated_at", "2023-02-17 19:38:03.491790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.492529"], ["updated_at", "2023-02-17 19:38:03.492529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.493242"], ["updated_at", "2023-02-17 19:38:03.493242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.493947"], ["updated_at", "2023-02-17 19:38:03.493947"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.494618"], ["updated_at", "2023-02-17 19:38:03.494618"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.495291"], ["updated_at", "2023-02-17 19:38:03.495291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:03.495963"], ["updated_at", "2023-02-17 19:38:03.495963"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.512057"], ["updated_at", "2023-02-17 19:38:03.512057"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.513116"], ["updated_at", "2023-02-17 19:38:03.513116"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.513916"], ["updated_at", "2023-02-17 19:38:03.513916"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.514622"], ["updated_at", "2023-02-17 19:38:03.514622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.515360"], ["updated_at", "2023-02-17 19:38:03.515360"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.516071"], ["updated_at", "2023-02-17 19:38:03.516071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.516771"], ["updated_at", "2023-02-17 19:38:03.516771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.517529"], ["updated_at", "2023-02-17 19:38:03.517529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.518401"], ["updated_at", "2023-02-17 19:38:03.518401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.519165"], ["updated_at", "2023-02-17 19:38:03.519165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.520140"], ["updated_at", "2023-02-17 19:38:03.520140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.522700"], ["updated_at", "2023-02-17 19:38:03.522700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.523765"], ["updated_at", "2023-02-17 19:38:03.523765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.524520"], ["updated_at", "2023-02-17 19:38:03.524520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.525253"], ["updated_at", "2023-02-17 19:38:03.525253"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:03.525995"], ["updated_at", "2023-02-17 19:38:03.525995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.546269"], ["updated_at", "2023-02-17 19:38:03.546269"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.547284"], ["updated_at", "2023-02-17 19:38:03.547284"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.548029"], ["updated_at", "2023-02-17 19:38:03.548029"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.548719"], ["updated_at", "2023-02-17 19:38:03.548719"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.549461"], ["updated_at", "2023-02-17 19:38:03.549461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.550231"], ["updated_at", "2023-02-17 19:38:03.550231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.551023"], ["updated_at", "2023-02-17 19:38:03.551023"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.551802"], ["updated_at", "2023-02-17 19:38:03.551802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.552557"], ["updated_at", "2023-02-17 19:38:03.552557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.553321"], ["updated_at", "2023-02-17 19:38:03.553321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.554121"], ["updated_at", "2023-02-17 19:38:03.554121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.554955"], ["updated_at", "2023-02-17 19:38:03.554955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.555673"], ["updated_at", "2023-02-17 19:38:03.555673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.556367"], ["updated_at", "2023-02-17 19:38:03.556367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.557263"], ["updated_at", "2023-02-17 19:38:03.557263"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:03.558327"], ["updated_at", "2023-02-17 19:38:03.558327"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:03.575347"], ["updated_at", "2023-02-17 19:38:03.575347"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:03.576395"], ["updated_at", "2023-02-17 19:38:03.576395"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:03.577396"], ["updated_at", "2023-02-17 19:38:03.577396"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:03.578154"], ["updated_at", "2023-02-17 19:38:03.578154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.578902"], ["updated_at", "2023-02-17 19:38:03.578902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.579662"], ["updated_at", "2023-02-17 19:38:03.579662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.580399"], ["updated_at", "2023-02-17 19:38:03.580399"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.581144"], ["updated_at", "2023-02-17 19:38:03.581144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.581943"], ["updated_at", "2023-02-17 19:38:03.581943"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.582701"], ["updated_at", "2023-02-17 19:38:03.582701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.583422"], ["updated_at", "2023-02-17 19:38:03.583422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.584269"], ["updated_at", "2023-02-17 19:38:03.584269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.585007"], ["updated_at", "2023-02-17 19:38:03.585007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.585684"], ["updated_at", "2023-02-17 19:38:03.585684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.586363"], ["updated_at", "2023-02-17 19:38:03.586363"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:03.587024"], ["updated_at", "2023-02-17 19:38:03.587024"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:38:03 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:38:03 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:38:03 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.4ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.9ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.8ms)  SELECT sqlite_version(*)
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409) Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}

Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:14.736561"], ["updated_at", "2023-02-17 19:38:14.736561"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:14.743955"], ["updated_at", "2023-02-17 19:38:14.743955"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 12ms (ActiveRecord: 1.3ms | Allocations: 6170)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:14.751959"], ["updated_at", "2023-02-17 19:38:14.751959"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:38:14.757972"], ["updated_at", "2023-02-17 19:38:14.757972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:14.767913"], ["updated_at", "2023-02-17 19:38:14.767913"], ["role_id", 34]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:38:14.768199"], ["updated_at", "2023-02-17 19:38:14.768199"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.9ms | Allocations: 5710)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00007ff099b79620>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:14.775024"], ["updated_at", "2023-02-17 19:38:14.775024"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:38:14.778536"], ["updated_at", "2023-02-17 19:38:14.778536"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:14.780966"], ["updated_at", "2023-02-17 19:38:14.780966"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 56ms (Views: 0.2ms | ActiveRecord: 5.1ms | Allocations: 28615)

TRANSACTION (0.1ms)  begin transaction
Member Load (0.2ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.4ms | Allocations: 3025) Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:38:14.798753"], ["updated_at", "2023-02-17 19:38:14.798753"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 12ms (Views: 6.9ms | ActiveRecord: 1.1ms | Allocations: 4604)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000056330403ff88>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

TRANSACTION (0.1ms)  rollback transaction
Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.3ms | Allocations: 658)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction

Completed 200 OK in 13ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 6053)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:14.849199"], ["updated_at", "2023-02-17 19:38:14.849199"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:14.856719"], ["updated_at", "2023-02-17 19:38:14.856719"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:14.860833"], ["updated_at", "2023-02-17 19:38:14.860833"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:14.860899"], ["updated_at", "2023-02-17 19:38:14.860899"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:14.862262"], ["updated_at", "2023-02-17 19:38:14.862262"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:14.866479"], ["updated_at", "2023-02-17 19:38:14.866479"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:14.867541"], ["updated_at", "2023-02-17 19:38:14.867541"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:14.868148"], ["updated_at", "2023-02-17 19:38:14.868148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:14.871495"], ["updated_at", "2023-02-17 19:38:14.871495"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:14.872973"], ["updated_at", "2023-02-17 19:38:14.872973"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:14.874068"], ["updated_at", "2023-02-17 19:38:14.874068"], ["role_id", 34]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:14.878784"], ["updated_at", "2023-02-17 19:38:14.878784"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:14.880686"], ["updated_at", "2023-02-17 19:38:14.880686"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:14.882583"], ["updated_at", "2023-02-17 19:38:14.882583"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:14.884688"], ["updated_at", "2023-02-17 19:38:14.884688"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:14.885188"], ["updated_at", "2023-02-17 19:38:14.885188"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:14.886369"], ["updated_at", "2023-02-17 19:38:14.886369"], ["role_id", 34]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:14.888360"], ["updated_at", "2023-02-17 19:38:14.888360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:14.889922"], ["updated_at", "2023-02-17 19:38:14.889922"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:14.890915"], ["updated_at", "2023-02-17 19:38:14.890915"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:14.891669"], ["updated_at", "2023-02-17 19:38:14.891669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:14.893697"], ["updated_at", "2023-02-17 19:38:14.893697"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:14.895895"], ["updated_at", "2023-02-17 19:38:14.895895"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:14.896450"], ["updated_at", "2023-02-17 19:38:14.896450"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:14.897856"], ["updated_at", "2023-02-17 19:38:14.897856"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:14.899588"], ["updated_at", "2023-02-17 19:38:14.899588"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:14.901490"], ["updated_at", "2023-02-17 19:38:14.901490"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:14.902938"], ["updated_at", "2023-02-17 19:38:14.902938"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:14.903393"], ["updated_at", "2023-02-17 19:38:14.903393"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:14.905120"], ["updated_at", "2023-02-17 19:38:14.905120"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:14.906930"], ["updated_at", "2023-02-17 19:38:14.906930"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:14.908669"], ["updated_at", "2023-02-17 19:38:14.908669"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:14.910623"], ["updated_at", "2023-02-17 19:38:14.910623"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:14.912070"], ["updated_at", "2023-02-17 19:38:14.912070"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:38:14 -0300

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:14.914613"], ["updated_at", "2023-02-17 19:38:14.914613"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:14.916223"], ["updated_at", "2023-02-17 19:38:14.916223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:14.918142"], ["updated_at", "2023-02-17 19:38:14.918142"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:14.919449"], ["updated_at", "2023-02-17 19:38:14.919449"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:14.920999"], ["updated_at", "2023-02-17 19:38:14.920999"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:14.922595"], ["updated_at", "2023-02-17 19:38:14.922595"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.2ms | Allocations: 232)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:14.924667"], ["updated_at", "2023-02-17 19:38:14.924667"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:14.926466"], ["updated_at", "2023-02-17 19:38:14.926466"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:14.928290"], ["updated_at", "2023-02-17 19:38:14.928290"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:14.930216"], ["updated_at", "2023-02-17 19:38:14.930216"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:14.932390"], ["updated_at", "2023-02-17 19:38:14.932390"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:38:14 -0300

TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:14.934792"], ["updated_at", "2023-02-17 19:38:14.934792"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 180)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:14.936597"], ["updated_at", "2023-02-17 19:38:14.936597"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:14.938503"], ["updated_at", "2023-02-17 19:38:14.938503"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:14.940419"], ["updated_at", "2023-02-17 19:38:14.940419"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:14.942398"], ["updated_at", "2023-02-17 19:38:14.942398"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:14.944414"], ["updated_at", "2023-02-17 19:38:14.944414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:14.945912"], ["updated_at", "2023-02-17 19:38:14.945912"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:14.947843"], ["updated_at", "2023-02-17 19:38:14.947843"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:14.949452"], ["updated_at", "2023-02-17 19:38:14.949452"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:14.951159"], ["updated_at", "2023-02-17 19:38:14.951159"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:14.952516"], ["updated_at", "2023-02-17 19:38:14.952516"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:14.954988"], ["updated_at", "2023-02-17 19:38:14.954988"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:14.956937"], ["updated_at", "2023-02-17 19:38:14.956937"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:14.958750"], ["updated_at", "2023-02-17 19:38:14.958750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:14.960662"], ["updated_at", "2023-02-17 19:38:14.960662"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:14.962881"], ["updated_at", "2023-02-17 19:38:14.962881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:14.965042"], ["updated_at", "2023-02-17 19:38:14.965042"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:14.966928"], ["updated_at", "2023-02-17 19:38:14.966928"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:14.968871"], ["updated_at", "2023-02-17 19:38:14.968871"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:14.971120"], ["updated_at", "2023-02-17 19:38:14.971120"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:14.973503"], ["updated_at", "2023-02-17 19:38:14.973503"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:14.976685"], ["updated_at", "2023-02-17 19:38:14.976685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:14.978719"], ["updated_at", "2023-02-17 19:38:14.978719"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:14.980762"], ["updated_at", "2023-02-17 19:38:14.980762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:14.982514"], ["updated_at", "2023-02-17 19:38:14.982514"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:14.985208"], ["updated_at", "2023-02-17 19:38:14.985208"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:14.986681"], ["updated_at", "2023-02-17 19:38:14.986681"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:14.988441"], ["updated_at", "2023-02-17 19:38:14.988441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:14.990015"], ["updated_at", "2023-02-17 19:38:14.990015"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:14.991734"], ["updated_at", "2023-02-17 19:38:14.991734"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:14.994440"], ["updated_at", "2023-02-17 19:38:14.994440"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:14.996529"], ["updated_at", "2023-02-17 19:38:14.996529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:14.998268"], ["updated_at", "2023-02-17 19:38:14.998268"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:15.001146"], ["updated_at", "2023-02-17 19:38:15.001146"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:15.002805"], ["updated_at", "2023-02-17 19:38:15.002805"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:15.005039"], ["updated_at", "2023-02-17 19:38:15.005039"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:15.006876"], ["updated_at", "2023-02-17 19:38:15.006876"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:15.009584"], ["updated_at", "2023-02-17 19:38:15.009584"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:15.010995"], ["updated_at", "2023-02-17 19:38:15.010995"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:15.012733"], ["updated_at", "2023-02-17 19:38:15.012733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:15.015167"], ["updated_at", "2023-02-17 19:38:15.015167"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:15.016895"], ["updated_at", "2023-02-17 19:38:15.016895"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:15.018613"], ["updated_at", "2023-02-17 19:38:15.018613"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:15.020489"], ["updated_at", "2023-02-17 19:38:15.020489"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:15.022180"], ["updated_at", "2023-02-17 19:38:15.022180"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:15.023945"], ["updated_at", "2023-02-17 19:38:15.023945"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:15.025750"], ["updated_at", "2023-02-17 19:38:15.025750"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:15.027568"], ["updated_at", "2023-02-17 19:38:15.027568"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:15.029114"], ["updated_at", "2023-02-17 19:38:15.029114"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:15.031098"], ["updated_at", "2023-02-17 19:38:15.031098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:15.032553"], ["updated_at", "2023-02-17 19:38:15.032553"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:15.034974"], ["updated_at", "2023-02-17 19:38:15.034974"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:15.036593"], ["updated_at", "2023-02-17 19:38:15.036593"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:15.038478"], ["updated_at", "2023-02-17 19:38:15.038478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:15.040005"], ["updated_at", "2023-02-17 19:38:15.040005"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:15.041690"], ["updated_at", "2023-02-17 19:38:15.041690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:15.043656"], ["updated_at", "2023-02-17 19:38:15.043656"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:15.045430"], ["updated_at", "2023-02-17 19:38:15.045430"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:15.047055"], ["updated_at", "2023-02-17 19:38:15.047055"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:15.048584"], ["updated_at", "2023-02-17 19:38:15.048584"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:15.050475"], ["updated_at", "2023-02-17 19:38:15.050475"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:15.055558"], ["updated_at", "2023-02-17 19:38:15.055558"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:15.057238"], ["updated_at", "2023-02-17 19:38:15.057238"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:15.059518"], ["updated_at", "2023-02-17 19:38:15.059518"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:15.091450"], ["updated_at", "2023-02-17 19:38:15.091450"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:15.093171"], ["updated_at", "2023-02-17 19:38:15.093171"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:15.094339"], ["updated_at", "2023-02-17 19:38:15.094339"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.095306"], ["updated_at", "2023-02-17 19:38:15.095306"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.096157"], ["updated_at", "2023-02-17 19:38:15.096157"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.096969"], ["updated_at", "2023-02-17 19:38:15.096969"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.097698"], ["updated_at", "2023-02-17 19:38:15.097698"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.098414"], ["updated_at", "2023-02-17 19:38:15.098414"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:15.099173"], ["updated_at", "2023-02-17 19:38:15.099173"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.100063"], ["updated_at", "2023-02-17 19:38:15.100063"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.101016"], ["updated_at", "2023-02-17 19:38:15.101016"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.101814"], ["updated_at", "2023-02-17 19:38:15.101814"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.102600"], ["updated_at", "2023-02-17 19:38:15.102600"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.103464"], ["updated_at", "2023-02-17 19:38:15.103464"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.104190"], ["updated_at", "2023-02-17 19:38:15.104190"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.105030"], ["updated_at", "2023-02-17 19:38:15.105030"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.105806"], ["updated_at", "2023-02-17 19:38:15.105806"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.106624"], ["updated_at", "2023-02-17 19:38:15.106624"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.107667"], ["updated_at", "2023-02-17 19:38:15.107667"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.108680"], ["updated_at", "2023-02-17 19:38:15.108680"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.109587"], ["updated_at", "2023-02-17 19:38:15.109587"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:15.121424"], ["updated_at", "2023-02-17 19:38:15.121424"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:15.122685"], ["updated_at", "2023-02-17 19:38:15.122685"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:15.123798"], ["updated_at", "2023-02-17 19:38:15.123798"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.124726"], ["updated_at", "2023-02-17 19:38:15.124726"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.125631"], ["updated_at", "2023-02-17 19:38:15.125631"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.126419"], ["updated_at", "2023-02-17 19:38:15.126419"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.127363"], ["updated_at", "2023-02-17 19:38:15.127363"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.128210"], ["updated_at", "2023-02-17 19:38:15.128210"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:15.129062"], ["updated_at", "2023-02-17 19:38:15.129062"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.129995"], ["updated_at", "2023-02-17 19:38:15.129995"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.130832"], ["updated_at", "2023-02-17 19:38:15.130832"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.131578"], ["updated_at", "2023-02-17 19:38:15.131578"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.132380"], ["updated_at", "2023-02-17 19:38:15.132380"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.133203"], ["updated_at", "2023-02-17 19:38:15.133203"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.134073"], ["updated_at", "2023-02-17 19:38:15.134073"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.134937"], ["updated_at", "2023-02-17 19:38:15.134937"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.135753"], ["updated_at", "2023-02-17 19:38:15.135753"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.136529"], ["updated_at", "2023-02-17 19:38:15.136529"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.137281"], ["updated_at", "2023-02-17 19:38:15.137281"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.138068"], ["updated_at", "2023-02-17 19:38:15.138068"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.138870"], ["updated_at", "2023-02-17 19:38:15.138870"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.172108"], ["updated_at", "2023-02-17 19:38:15.172108"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.173342"], ["updated_at", "2023-02-17 19:38:15.173342"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.174437"], ["updated_at", "2023-02-17 19:38:15.174437"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.175252"], ["updated_at", "2023-02-17 19:38:15.175252"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.176207"], ["updated_at", "2023-02-17 19:38:15.176207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.177313"], ["updated_at", "2023-02-17 19:38:15.177313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.178165"], ["updated_at", "2023-02-17 19:38:15.178165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.178914"], ["updated_at", "2023-02-17 19:38:15.178914"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.179668"], ["updated_at", "2023-02-17 19:38:15.179668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.180455"], ["updated_at", "2023-02-17 19:38:15.180455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.181179"], ["updated_at", "2023-02-17 19:38:15.181179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.181898"], ["updated_at", "2023-02-17 19:38:15.181898"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.182619"], ["updated_at", "2023-02-17 19:38:15.182619"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.183425"], ["updated_at", "2023-02-17 19:38:15.183425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.184193"], ["updated_at", "2023-02-17 19:38:15.184193"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.184940"], ["updated_at", "2023-02-17 19:38:15.184940"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.202356"], ["updated_at", "2023-02-17 19:38:15.202356"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.203408"], ["updated_at", "2023-02-17 19:38:15.203408"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.204201"], ["updated_at", "2023-02-17 19:38:15.204201"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.205029"], ["updated_at", "2023-02-17 19:38:15.205029"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.205838"], ["updated_at", "2023-02-17 19:38:15.205838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.206583"], ["updated_at", "2023-02-17 19:38:15.206583"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.207575"], ["updated_at", "2023-02-17 19:38:15.207575"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.208363"], ["updated_at", "2023-02-17 19:38:15.208363"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.209146"], ["updated_at", "2023-02-17 19:38:15.209146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.209983"], ["updated_at", "2023-02-17 19:38:15.209983"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.210788"], ["updated_at", "2023-02-17 19:38:15.210788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.211565"], ["updated_at", "2023-02-17 19:38:15.211565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.212282"], ["updated_at", "2023-02-17 19:38:15.212282"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.213042"], ["updated_at", "2023-02-17 19:38:15.213042"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.213915"], ["updated_at", "2023-02-17 19:38:15.213915"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.214727"], ["updated_at", "2023-02-17 19:38:15.214727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.231099"], ["updated_at", "2023-02-17 19:38:15.231099"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.232048"], ["updated_at", "2023-02-17 19:38:15.232048"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.232790"], ["updated_at", "2023-02-17 19:38:15.232790"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.233627"], ["updated_at", "2023-02-17 19:38:15.233627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.234505"], ["updated_at", "2023-02-17 19:38:15.234505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.235290"], ["updated_at", "2023-02-17 19:38:15.235290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.236033"], ["updated_at", "2023-02-17 19:38:15.236033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.236738"], ["updated_at", "2023-02-17 19:38:15.236738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.237446"], ["updated_at", "2023-02-17 19:38:15.237446"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.238220"], ["updated_at", "2023-02-17 19:38:15.238220"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.238939"], ["updated_at", "2023-02-17 19:38:15.238939"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.239690"], ["updated_at", "2023-02-17 19:38:15.239690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.240496"], ["updated_at", "2023-02-17 19:38:15.240496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.241230"], ["updated_at", "2023-02-17 19:38:15.241230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.241964"], ["updated_at", "2023-02-17 19:38:15.241964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.242710"], ["updated_at", "2023-02-17 19:38:15.242710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.261399"], ["updated_at", "2023-02-17 19:38:15.261399"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.262447"], ["updated_at", "2023-02-17 19:38:15.262447"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.263234"], ["updated_at", "2023-02-17 19:38:15.263234"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.264003"], ["updated_at", "2023-02-17 19:38:15.264003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.264825"], ["updated_at", "2023-02-17 19:38:15.264825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.265612"], ["updated_at", "2023-02-17 19:38:15.265612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.266352"], ["updated_at", "2023-02-17 19:38:15.266352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.267128"], ["updated_at", "2023-02-17 19:38:15.267128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.267892"], ["updated_at", "2023-02-17 19:38:15.267892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.268719"], ["updated_at", "2023-02-17 19:38:15.268719"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.269468"], ["updated_at", "2023-02-17 19:38:15.269468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.270153"], ["updated_at", "2023-02-17 19:38:15.270153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.270890"], ["updated_at", "2023-02-17 19:38:15.270890"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.271741"], ["updated_at", "2023-02-17 19:38:15.271741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.272589"], ["updated_at", "2023-02-17 19:38:15.272589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.273467"], ["updated_at", "2023-02-17 19:38:15.273467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.289538"], ["updated_at", "2023-02-17 19:38:15.289538"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.290585"], ["updated_at", "2023-02-17 19:38:15.290585"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.291424"], ["updated_at", "2023-02-17 19:38:15.291424"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.292176"], ["updated_at", "2023-02-17 19:38:15.292176"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.293010"], ["updated_at", "2023-02-17 19:38:15.293010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.293835"], ["updated_at", "2023-02-17 19:38:15.293835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.294552"], ["updated_at", "2023-02-17 19:38:15.294552"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.295265"], ["updated_at", "2023-02-17 19:38:15.295265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.295952"], ["updated_at", "2023-02-17 19:38:15.295952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.296799"], ["updated_at", "2023-02-17 19:38:15.296799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.297837"], ["updated_at", "2023-02-17 19:38:15.297837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.298762"], ["updated_at", "2023-02-17 19:38:15.298762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.299512"], ["updated_at", "2023-02-17 19:38:15.299512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.300252"], ["updated_at", "2023-02-17 19:38:15.300252"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.300956"], ["updated_at", "2023-02-17 19:38:15.300956"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.301774"], ["updated_at", "2023-02-17 19:38:15.301774"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.318272"], ["updated_at", "2023-02-17 19:38:15.318272"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.319318"], ["updated_at", "2023-02-17 19:38:15.319318"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.320107"], ["updated_at", "2023-02-17 19:38:15.320107"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.320821"], ["updated_at", "2023-02-17 19:38:15.320821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.321685"], ["updated_at", "2023-02-17 19:38:15.321685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.322548"], ["updated_at", "2023-02-17 19:38:15.322548"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.323423"], ["updated_at", "2023-02-17 19:38:15.323423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.324603"], ["updated_at", "2023-02-17 19:38:15.324603"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.325692"], ["updated_at", "2023-02-17 19:38:15.325692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.326752"], ["updated_at", "2023-02-17 19:38:15.326752"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.327738"], ["updated_at", "2023-02-17 19:38:15.327738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.328590"], ["updated_at", "2023-02-17 19:38:15.328590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.329611"], ["updated_at", "2023-02-17 19:38:15.329611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.330746"], ["updated_at", "2023-02-17 19:38:15.330746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.331837"], ["updated_at", "2023-02-17 19:38:15.331837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.332705"], ["updated_at", "2023-02-17 19:38:15.332705"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:38:15 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.4ms | Allocations: 3145)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:15.357893"], ["updated_at", "2023-02-17 19:38:15.357893"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:15.359385"], ["updated_at", "2023-02-17 19:38:15.359385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:15.362523"], ["updated_at", "2023-02-17 19:38:15.362523"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:15.363809"], ["updated_at", "2023-02-17 19:38:15.363809"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:15.366935"], ["updated_at", "2023-02-17 19:38:15.366935"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:15.368175"], ["updated_at", "2023-02-17 19:38:15.368175"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:15.370397"], ["updated_at", "2023-02-17 19:38:15.370397"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:15.371951"], ["updated_at", "2023-02-17 19:38:15.371951"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:15.373769"], ["updated_at", "2023-02-17 19:38:15.373769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:15.375164"], ["updated_at", "2023-02-17 19:38:15.375164"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:15.376628"], ["updated_at", "2023-02-17 19:38:15.376628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:15.377932"], ["updated_at", "2023-02-17 19:38:15.377932"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:15.379405"], ["updated_at", "2023-02-17 19:38:15.379405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:15.380699"], ["updated_at", "2023-02-17 19:38:15.380699"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:15.382243"], ["updated_at", "2023-02-17 19:38:15.382243"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:15.383501"], ["updated_at", "2023-02-17 19:38:15.383501"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:15.385209"], ["updated_at", "2023-02-17 19:38:15.385209"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:15.386555"], ["updated_at", "2023-02-17 19:38:15.386555"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:15.388023"], ["updated_at", "2023-02-17 19:38:15.388023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:15.389306"], ["updated_at", "2023-02-17 19:38:15.389306"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:15.390931"], ["updated_at", "2023-02-17 19:38:15.390931"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:15.392220"], ["updated_at", "2023-02-17 19:38:15.392220"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:15.393715"], ["updated_at", "2023-02-17 19:38:15.393715"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:15.395048"], ["updated_at", "2023-02-17 19:38:15.395048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:15.396468"], ["updated_at", "2023-02-17 19:38:15.396468"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:15.397690"], ["updated_at", "2023-02-17 19:38:15.397690"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:15.399224"], ["updated_at", "2023-02-17 19:38:15.399224"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:15.400461"], ["updated_at", "2023-02-17 19:38:15.400461"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:15.402114"], ["updated_at", "2023-02-17 19:38:15.402114"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:15.403480"], ["updated_at", "2023-02-17 19:38:15.403480"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:15.404917"], ["updated_at", "2023-02-17 19:38:15.404917"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:15.406172"], ["updated_at", "2023-02-17 19:38:15.406172"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:15.407771"], ["updated_at", "2023-02-17 19:38:15.407771"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:15.409029"], ["updated_at", "2023-02-17 19:38:15.409029"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:15.410477"], ["updated_at", "2023-02-17 19:38:15.410477"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:15.411905"], ["updated_at", "2023-02-17 19:38:15.411905"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:15.413523"], ["updated_at", "2023-02-17 19:38:15.413523"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:15.414861"], ["updated_at", "2023-02-17 19:38:15.414861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:15.416346"], ["updated_at", "2023-02-17 19:38:15.416346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:15.417610"], ["updated_at", "2023-02-17 19:38:15.417610"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:15.419064"], ["updated_at", "2023-02-17 19:38:15.419064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:15.420345"], ["updated_at", "2023-02-17 19:38:15.420345"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:15.421860"], ["updated_at", "2023-02-17 19:38:15.421860"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:15.423156"], ["updated_at", "2023-02-17 19:38:15.423156"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:15.424682"], ["updated_at", "2023-02-17 19:38:15.424682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:15.425923"], ["updated_at", "2023-02-17 19:38:15.425923"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:15.427354"], ["updated_at", "2023-02-17 19:38:15.427354"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:15.428656"], ["updated_at", "2023-02-17 19:38:15.428656"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:15.430083"], ["updated_at", "2023-02-17 19:38:15.430083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:15.431421"], ["updated_at", "2023-02-17 19:38:15.431421"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:15.432946"], ["updated_at", "2023-02-17 19:38:15.432946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:15.434215"], ["updated_at", "2023-02-17 19:38:15.434215"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:15.435665"], ["updated_at", "2023-02-17 19:38:15.435665"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:15.436957"], ["updated_at", "2023-02-17 19:38:15.436957"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:15.438373"], ["updated_at", "2023-02-17 19:38:15.438373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:15.439723"], ["updated_at", "2023-02-17 19:38:15.439723"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:15.441436"], ["updated_at", "2023-02-17 19:38:15.441436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:15.442722"], ["updated_at", "2023-02-17 19:38:15.442722"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:15.444190"], ["updated_at", "2023-02-17 19:38:15.444190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:15.445480"], ["updated_at", "2023-02-17 19:38:15.445480"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:15.446890"], ["updated_at", "2023-02-17 19:38:15.446890"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:15.448141"], ["updated_at", "2023-02-17 19:38:15.448141"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:15.449608"], ["updated_at", "2023-02-17 19:38:15.449608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:15.450870"], ["updated_at", "2023-02-17 19:38:15.450870"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:15.452411"], ["updated_at", "2023-02-17 19:38:15.452411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:15.453808"], ["updated_at", "2023-02-17 19:38:15.453808"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:15.455276"], ["updated_at", "2023-02-17 19:38:15.455276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:15.456507"], ["updated_at", "2023-02-17 19:38:15.456507"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:15.458262"], ["updated_at", "2023-02-17 19:38:15.458262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:15.459554"], ["updated_at", "2023-02-17 19:38:15.459554"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:15.461088"], ["updated_at", "2023-02-17 19:38:15.461088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:15.462454"], ["updated_at", "2023-02-17 19:38:15.462454"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:15.463940"], ["updated_at", "2023-02-17 19:38:15.463940"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:15.465275"], ["updated_at", "2023-02-17 19:38:15.465275"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:15.466749"], ["updated_at", "2023-02-17 19:38:15.466749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:15.467988"], ["updated_at", "2023-02-17 19:38:15.467988"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:15.469507"], ["updated_at", "2023-02-17 19:38:15.469507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:15.470804"], ["updated_at", "2023-02-17 19:38:15.470804"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:15.472350"], ["updated_at", "2023-02-17 19:38:15.472350"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:15.473851"], ["updated_at", "2023-02-17 19:38:15.473851"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:15.475480"], ["updated_at", "2023-02-17 19:38:15.475480"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:15.476719"], ["updated_at", "2023-02-17 19:38:15.476719"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:15.478212"], ["updated_at", "2023-02-17 19:38:15.478212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:15.479521"], ["updated_at", "2023-02-17 19:38:15.479521"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:15.480944"], ["updated_at", "2023-02-17 19:38:15.480944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:15.482439"], ["updated_at", "2023-02-17 19:38:15.482439"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:15.483995"], ["updated_at", "2023-02-17 19:38:15.483995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:15.485237"], ["updated_at", "2023-02-17 19:38:15.485237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:15.486786"], ["updated_at", "2023-02-17 19:38:15.486786"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:15.488028"], ["updated_at", "2023-02-17 19:38:15.488028"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:15.489464"], ["updated_at", "2023-02-17 19:38:15.489464"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:15.490981"], ["updated_at", "2023-02-17 19:38:15.490981"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:15.492711"], ["updated_at", "2023-02-17 19:38:15.492711"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:15.494028"], ["updated_at", "2023-02-17 19:38:15.494028"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:15.495511"], ["updated_at", "2023-02-17 19:38:15.495511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:15.496617"], ["updated_at", "2023-02-17 19:38:15.496617"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:15.497877"], ["updated_at", "2023-02-17 19:38:15.497877"], ["role_id", 35]]
TRANSACTION (9.5ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:15.509098"], ["updated_at", "2023-02-17 19:38:15.509098"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:15.510769"], ["updated_at", "2023-02-17 19:38:15.510769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:15.512012"], ["updated_at", "2023-02-17 19:38:15.512012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:15.513056"], ["updated_at", "2023-02-17 19:38:15.513056"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:15.524507"], ["updated_at", "2023-02-17 19:38:15.524507"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:15.525876"], ["updated_at", "2023-02-17 19:38:15.525876"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:15.526867"], ["updated_at", "2023-02-17 19:38:15.526867"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.527725"], ["updated_at", "2023-02-17 19:38:15.527725"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.528532"], ["updated_at", "2023-02-17 19:38:15.528532"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.529233"], ["updated_at", "2023-02-17 19:38:15.529233"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.529931"], ["updated_at", "2023-02-17 19:38:15.529931"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.530615"], ["updated_at", "2023-02-17 19:38:15.530615"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:15.531339"], ["updated_at", "2023-02-17 19:38:15.531339"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.532322"], ["updated_at", "2023-02-17 19:38:15.532322"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.533232"], ["updated_at", "2023-02-17 19:38:15.533232"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.533998"], ["updated_at", "2023-02-17 19:38:15.533998"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.534760"], ["updated_at", "2023-02-17 19:38:15.534760"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.535565"], ["updated_at", "2023-02-17 19:38:15.535565"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.536335"], ["updated_at", "2023-02-17 19:38:15.536335"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.537085"], ["updated_at", "2023-02-17 19:38:15.537085"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.537832"], ["updated_at", "2023-02-17 19:38:15.537832"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.538578"], ["updated_at", "2023-02-17 19:38:15.538578"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.539320"], ["updated_at", "2023-02-17 19:38:15.539320"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.540165"], ["updated_at", "2023-02-17 19:38:15.540165"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.541139"], ["updated_at", "2023-02-17 19:38:15.541139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:15.552766"], ["updated_at", "2023-02-17 19:38:15.552766"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:15.554085"], ["updated_at", "2023-02-17 19:38:15.554085"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:15.555065"], ["updated_at", "2023-02-17 19:38:15.555065"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.556066"], ["updated_at", "2023-02-17 19:38:15.556066"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.556942"], ["updated_at", "2023-02-17 19:38:15.556942"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.557710"], ["updated_at", "2023-02-17 19:38:15.557710"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.558421"], ["updated_at", "2023-02-17 19:38:15.558421"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.559114"], ["updated_at", "2023-02-17 19:38:15.559114"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:15.560176"], ["updated_at", "2023-02-17 19:38:15.560176"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.561210"], ["updated_at", "2023-02-17 19:38:15.561210"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.562178"], ["updated_at", "2023-02-17 19:38:15.562178"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.562977"], ["updated_at", "2023-02-17 19:38:15.562977"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.563729"], ["updated_at", "2023-02-17 19:38:15.563729"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.564527"], ["updated_at", "2023-02-17 19:38:15.564527"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.565293"], ["updated_at", "2023-02-17 19:38:15.565293"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.566100"], ["updated_at", "2023-02-17 19:38:15.566100"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.566837"], ["updated_at", "2023-02-17 19:38:15.566837"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.567764"], ["updated_at", "2023-02-17 19:38:15.567764"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.568735"], ["updated_at", "2023-02-17 19:38:15.568735"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.569548"], ["updated_at", "2023-02-17 19:38:15.569548"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.570283"], ["updated_at", "2023-02-17 19:38:15.570283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.586573"], ["updated_at", "2023-02-17 19:38:15.586573"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.587641"], ["updated_at", "2023-02-17 19:38:15.587641"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.588452"], ["updated_at", "2023-02-17 19:38:15.588452"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.589173"], ["updated_at", "2023-02-17 19:38:15.589173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.590006"], ["updated_at", "2023-02-17 19:38:15.590006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.590855"], ["updated_at", "2023-02-17 19:38:15.590855"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.591606"], ["updated_at", "2023-02-17 19:38:15.591606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.592645"], ["updated_at", "2023-02-17 19:38:15.592645"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.593545"], ["updated_at", "2023-02-17 19:38:15.593545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.594354"], ["updated_at", "2023-02-17 19:38:15.594354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.595121"], ["updated_at", "2023-02-17 19:38:15.595121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.595816"], ["updated_at", "2023-02-17 19:38:15.595816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.596508"], ["updated_at", "2023-02-17 19:38:15.596508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.597203"], ["updated_at", "2023-02-17 19:38:15.597203"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.597887"], ["updated_at", "2023-02-17 19:38:15.597887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.598604"], ["updated_at", "2023-02-17 19:38:15.598604"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.615394"], ["updated_at", "2023-02-17 19:38:15.615394"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.616398"], ["updated_at", "2023-02-17 19:38:15.616398"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.617161"], ["updated_at", "2023-02-17 19:38:15.617161"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.617872"], ["updated_at", "2023-02-17 19:38:15.617872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.618622"], ["updated_at", "2023-02-17 19:38:15.618622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.619366"], ["updated_at", "2023-02-17 19:38:15.619366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.620097"], ["updated_at", "2023-02-17 19:38:15.620097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.620790"], ["updated_at", "2023-02-17 19:38:15.620790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.621474"], ["updated_at", "2023-02-17 19:38:15.621474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.622260"], ["updated_at", "2023-02-17 19:38:15.622260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.623128"], ["updated_at", "2023-02-17 19:38:15.623128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.623985"], ["updated_at", "2023-02-17 19:38:15.623985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.624710"], ["updated_at", "2023-02-17 19:38:15.624710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.625411"], ["updated_at", "2023-02-17 19:38:15.625411"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.626095"], ["updated_at", "2023-02-17 19:38:15.626095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.626806"], ["updated_at", "2023-02-17 19:38:15.626806"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.642619"], ["updated_at", "2023-02-17 19:38:15.642619"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.643588"], ["updated_at", "2023-02-17 19:38:15.643588"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.644332"], ["updated_at", "2023-02-17 19:38:15.644332"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.645055"], ["updated_at", "2023-02-17 19:38:15.645055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.645833"], ["updated_at", "2023-02-17 19:38:15.645833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.646542"], ["updated_at", "2023-02-17 19:38:15.646542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.647245"], ["updated_at", "2023-02-17 19:38:15.647245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.647932"], ["updated_at", "2023-02-17 19:38:15.647932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.648612"], ["updated_at", "2023-02-17 19:38:15.648612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.649356"], ["updated_at", "2023-02-17 19:38:15.649356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.650057"], ["updated_at", "2023-02-17 19:38:15.650057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.650735"], ["updated_at", "2023-02-17 19:38:15.650735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.651432"], ["updated_at", "2023-02-17 19:38:15.651432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.652213"], ["updated_at", "2023-02-17 19:38:15.652213"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.653011"], ["updated_at", "2023-02-17 19:38:15.653011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:15.653761"], ["updated_at", "2023-02-17 19:38:15.653761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.669465"], ["updated_at", "2023-02-17 19:38:15.669465"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.670449"], ["updated_at", "2023-02-17 19:38:15.670449"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.671236"], ["updated_at", "2023-02-17 19:38:15.671236"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.671927"], ["updated_at", "2023-02-17 19:38:15.671927"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.672859"], ["updated_at", "2023-02-17 19:38:15.672859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.673726"], ["updated_at", "2023-02-17 19:38:15.673726"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.674494"], ["updated_at", "2023-02-17 19:38:15.674494"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.675182"], ["updated_at", "2023-02-17 19:38:15.675182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.675869"], ["updated_at", "2023-02-17 19:38:15.675869"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.676557"], ["updated_at", "2023-02-17 19:38:15.676557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.677281"], ["updated_at", "2023-02-17 19:38:15.677281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.678018"], ["updated_at", "2023-02-17 19:38:15.678018"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.678714"], ["updated_at", "2023-02-17 19:38:15.678714"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.679404"], ["updated_at", "2023-02-17 19:38:15.679404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.680071"], ["updated_at", "2023-02-17 19:38:15.680071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:15.680769"], ["updated_at", "2023-02-17 19:38:15.680769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.696638"], ["updated_at", "2023-02-17 19:38:15.696638"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.697653"], ["updated_at", "2023-02-17 19:38:15.697653"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.698424"], ["updated_at", "2023-02-17 19:38:15.698424"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.699111"], ["updated_at", "2023-02-17 19:38:15.699111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.700179"], ["updated_at", "2023-02-17 19:38:15.700179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.701238"], ["updated_at", "2023-02-17 19:38:15.701238"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.702057"], ["updated_at", "2023-02-17 19:38:15.702057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.702915"], ["updated_at", "2023-02-17 19:38:15.702915"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.703653"], ["updated_at", "2023-02-17 19:38:15.703653"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.704376"], ["updated_at", "2023-02-17 19:38:15.704376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.705087"], ["updated_at", "2023-02-17 19:38:15.705087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.705780"], ["updated_at", "2023-02-17 19:38:15.705780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.706624"], ["updated_at", "2023-02-17 19:38:15.706624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.707440"], ["updated_at", "2023-02-17 19:38:15.707440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.708144"], ["updated_at", "2023-02-17 19:38:15.708144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:15.709141"], ["updated_at", "2023-02-17 19:38:15.709141"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.725064"], ["updated_at", "2023-02-17 19:38:15.725064"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.726081"], ["updated_at", "2023-02-17 19:38:15.726081"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.726872"], ["updated_at", "2023-02-17 19:38:15.726872"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.727594"], ["updated_at", "2023-02-17 19:38:15.727594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.728368"], ["updated_at", "2023-02-17 19:38:15.728368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.729114"], ["updated_at", "2023-02-17 19:38:15.729114"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.729834"], ["updated_at", "2023-02-17 19:38:15.729834"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.730567"], ["updated_at", "2023-02-17 19:38:15.730567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.731253"], ["updated_at", "2023-02-17 19:38:15.731253"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.731955"], ["updated_at", "2023-02-17 19:38:15.731955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.732761"], ["updated_at", "2023-02-17 19:38:15.732761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.733613"], ["updated_at", "2023-02-17 19:38:15.733613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.734450"], ["updated_at", "2023-02-17 19:38:15.734450"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.735172"], ["updated_at", "2023-02-17 19:38:15.735172"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.735850"], ["updated_at", "2023-02-17 19:38:15.735850"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:15.736541"], ["updated_at", "2023-02-17 19:38:15.736541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:38:15 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:15.746510"], ["updated_at", "2023-02-17 19:38:15.746510"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:15.747938"], ["updated_at", "2023-02-17 19:38:15.747938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:15.750748"], ["updated_at", "2023-02-17 19:38:15.750748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:15.751943"], ["updated_at", "2023-02-17 19:38:15.751943"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:15.754770"], ["updated_at", "2023-02-17 19:38:15.754770"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:15.755933"], ["updated_at", "2023-02-17 19:38:15.755933"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:15.758145"], ["updated_at", "2023-02-17 19:38:15.758145"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:15.759635"], ["updated_at", "2023-02-17 19:38:15.759635"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:15.761485"], ["updated_at", "2023-02-17 19:38:15.761485"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:15.763146"], ["updated_at", "2023-02-17 19:38:15.763146"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:15.764646"], ["updated_at", "2023-02-17 19:38:15.764646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:15.765929"], ["updated_at", "2023-02-17 19:38:15.765929"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:15.767403"], ["updated_at", "2023-02-17 19:38:15.767403"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:15.768580"], ["updated_at", "2023-02-17 19:38:15.768580"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:15.770007"], ["updated_at", "2023-02-17 19:38:15.770007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:15.771180"], ["updated_at", "2023-02-17 19:38:15.771180"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:15.772608"], ["updated_at", "2023-02-17 19:38:15.772608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:15.774012"], ["updated_at", "2023-02-17 19:38:15.774012"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:15.775437"], ["updated_at", "2023-02-17 19:38:15.775437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:15.776651"], ["updated_at", "2023-02-17 19:38:15.776651"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:15.778076"], ["updated_at", "2023-02-17 19:38:15.778076"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:15.779255"], ["updated_at", "2023-02-17 19:38:15.779255"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:15.780596"], ["updated_at", "2023-02-17 19:38:15.780596"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:15.781843"], ["updated_at", "2023-02-17 19:38:15.781843"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:15.783802"], ["updated_at", "2023-02-17 19:38:15.783802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:15.785532"], ["updated_at", "2023-02-17 19:38:15.785532"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:15.787230"], ["updated_at", "2023-02-17 19:38:15.787230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:15.788835"], ["updated_at", "2023-02-17 19:38:15.788835"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:15.790544"], ["updated_at", "2023-02-17 19:38:15.790544"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:15.792128"], ["updated_at", "2023-02-17 19:38:15.792128"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:15.793971"], ["updated_at", "2023-02-17 19:38:15.793971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:15.795469"], ["updated_at", "2023-02-17 19:38:15.795469"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:15.797110"], ["updated_at", "2023-02-17 19:38:15.797110"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:15.798417"], ["updated_at", "2023-02-17 19:38:15.798417"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:15.800282"], ["updated_at", "2023-02-17 19:38:15.800282"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:15.801769"], ["updated_at", "2023-02-17 19:38:15.801769"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:15.803635"], ["updated_at", "2023-02-17 19:38:15.803635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:15.805191"], ["updated_at", "2023-02-17 19:38:15.805191"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:15.806946"], ["updated_at", "2023-02-17 19:38:15.806946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:15.808500"], ["updated_at", "2023-02-17 19:38:15.808500"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:15.810193"], ["updated_at", "2023-02-17 19:38:15.810193"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:15.811832"], ["updated_at", "2023-02-17 19:38:15.811832"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:15.813721"], ["updated_at", "2023-02-17 19:38:15.813721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:15.815349"], ["updated_at", "2023-02-17 19:38:15.815349"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:15.817936"], ["updated_at", "2023-02-17 19:38:15.817936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:15.819499"], ["updated_at", "2023-02-17 19:38:15.819499"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:15.821160"], ["updated_at", "2023-02-17 19:38:15.821160"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:15.822452"], ["updated_at", "2023-02-17 19:38:15.822452"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:15.824140"], ["updated_at", "2023-02-17 19:38:15.824140"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:15.825537"], ["updated_at", "2023-02-17 19:38:15.825537"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:15.827092"], ["updated_at", "2023-02-17 19:38:15.827092"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:15.828423"], ["updated_at", "2023-02-17 19:38:15.828423"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:15.829830"], ["updated_at", "2023-02-17 19:38:15.829830"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:15.831032"], ["updated_at", "2023-02-17 19:38:15.831032"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:15.832663"], ["updated_at", "2023-02-17 19:38:15.832663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:15.834058"], ["updated_at", "2023-02-17 19:38:15.834058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:15.835455"], ["updated_at", "2023-02-17 19:38:15.835455"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:15.836652"], ["updated_at", "2023-02-17 19:38:15.836652"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:15.837991"], ["updated_at", "2023-02-17 19:38:15.837991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:15.839311"], ["updated_at", "2023-02-17 19:38:15.839311"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:15.840791"], ["updated_at", "2023-02-17 19:38:15.840791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:15.841988"], ["updated_at", "2023-02-17 19:38:15.841988"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:15.843654"], ["updated_at", "2023-02-17 19:38:15.843654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:15.844847"], ["updated_at", "2023-02-17 19:38:15.844847"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:15.846373"], ["updated_at", "2023-02-17 19:38:15.846373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:15.847648"], ["updated_at", "2023-02-17 19:38:15.847648"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:15.849018"], ["updated_at", "2023-02-17 19:38:15.849018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:15.850226"], ["updated_at", "2023-02-17 19:38:15.850226"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:15.851616"], ["updated_at", "2023-02-17 19:38:15.851616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:15.852774"], ["updated_at", "2023-02-17 19:38:15.852774"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:15.854508"], ["updated_at", "2023-02-17 19:38:15.854508"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:15.855717"], ["updated_at", "2023-02-17 19:38:15.855717"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:15.857102"], ["updated_at", "2023-02-17 19:38:15.857102"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:15.858310"], ["updated_at", "2023-02-17 19:38:15.858310"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:15.859693"], ["updated_at", "2023-02-17 19:38:15.859693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:15.860940"], ["updated_at", "2023-02-17 19:38:15.860940"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:15.862296"], ["updated_at", "2023-02-17 19:38:15.862296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:15.863545"], ["updated_at", "2023-02-17 19:38:15.863545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:15.864975"], ["updated_at", "2023-02-17 19:38:15.864975"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:15.866165"], ["updated_at", "2023-02-17 19:38:15.866165"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:15.867537"], ["updated_at", "2023-02-17 19:38:15.867537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:15.868784"], ["updated_at", "2023-02-17 19:38:15.868784"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:15.870201"], ["updated_at", "2023-02-17 19:38:15.870201"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:15.871421"], ["updated_at", "2023-02-17 19:38:15.871421"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:15.872794"], ["updated_at", "2023-02-17 19:38:15.872794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:15.874087"], ["updated_at", "2023-02-17 19:38:15.874087"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:15.875495"], ["updated_at", "2023-02-17 19:38:15.875495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:15.876675"], ["updated_at", "2023-02-17 19:38:15.876675"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:15.878005"], ["updated_at", "2023-02-17 19:38:15.878005"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:15.879215"], ["updated_at", "2023-02-17 19:38:15.879215"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:15.880582"], ["updated_at", "2023-02-17 19:38:15.880582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:15.881768"], ["updated_at", "2023-02-17 19:38:15.881768"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:15.883237"], ["updated_at", "2023-02-17 19:38:15.883237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:15.884438"], ["updated_at", "2023-02-17 19:38:15.884438"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:15.885788"], ["updated_at", "2023-02-17 19:38:15.885788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:15.886860"], ["updated_at", "2023-02-17 19:38:15.886860"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:15.888030"], ["updated_at", "2023-02-17 19:38:15.888030"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:15.889393"], ["updated_at", "2023-02-17 19:38:15.889393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:15.890858"], ["updated_at", "2023-02-17 19:38:15.890858"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:15.891952"], ["updated_at", "2023-02-17 19:38:15.891952"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:15.892932"], ["updated_at", "2023-02-17 19:38:15.892932"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:15.904249"], ["updated_at", "2023-02-17 19:38:15.904249"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:15.905552"], ["updated_at", "2023-02-17 19:38:15.905552"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:15.906528"], ["updated_at", "2023-02-17 19:38:15.906528"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.907386"], ["updated_at", "2023-02-17 19:38:15.907386"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.908183"], ["updated_at", "2023-02-17 19:38:15.908183"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.908914"], ["updated_at", "2023-02-17 19:38:15.908914"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.909608"], ["updated_at", "2023-02-17 19:38:15.909608"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.910290"], ["updated_at", "2023-02-17 19:38:15.910290"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:15.911020"], ["updated_at", "2023-02-17 19:38:15.911020"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.911884"], ["updated_at", "2023-02-17 19:38:15.911884"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.912752"], ["updated_at", "2023-02-17 19:38:15.912752"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.913593"], ["updated_at", "2023-02-17 19:38:15.913593"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.914365"], ["updated_at", "2023-02-17 19:38:15.914365"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.915122"], ["updated_at", "2023-02-17 19:38:15.915122"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.915851"], ["updated_at", "2023-02-17 19:38:15.915851"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.916623"], ["updated_at", "2023-02-17 19:38:15.916623"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.917385"], ["updated_at", "2023-02-17 19:38:15.917385"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.918119"], ["updated_at", "2023-02-17 19:38:15.918119"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.918828"], ["updated_at", "2023-02-17 19:38:15.918828"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.919585"], ["updated_at", "2023-02-17 19:38:15.919585"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.920349"], ["updated_at", "2023-02-17 19:38:15.920349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:15.931749"], ["updated_at", "2023-02-17 19:38:15.931749"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:15.933025"], ["updated_at", "2023-02-17 19:38:15.933025"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:15.934003"], ["updated_at", "2023-02-17 19:38:15.934003"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.934897"], ["updated_at", "2023-02-17 19:38:15.934897"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.935674"], ["updated_at", "2023-02-17 19:38:15.935674"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.936379"], ["updated_at", "2023-02-17 19:38:15.936379"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.937066"], ["updated_at", "2023-02-17 19:38:15.937066"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:15.937762"], ["updated_at", "2023-02-17 19:38:15.937762"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:15.938530"], ["updated_at", "2023-02-17 19:38:15.938530"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.939412"], ["updated_at", "2023-02-17 19:38:15.939412"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.940233"], ["updated_at", "2023-02-17 19:38:15.940233"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.940977"], ["updated_at", "2023-02-17 19:38:15.940977"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.941742"], ["updated_at", "2023-02-17 19:38:15.941742"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.942513"], ["updated_at", "2023-02-17 19:38:15.942513"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.943274"], ["updated_at", "2023-02-17 19:38:15.943274"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.944112"], ["updated_at", "2023-02-17 19:38:15.944112"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.944866"], ["updated_at", "2023-02-17 19:38:15.944866"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.945642"], ["updated_at", "2023-02-17 19:38:15.945642"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.946402"], ["updated_at", "2023-02-17 19:38:15.946402"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.947165"], ["updated_at", "2023-02-17 19:38:15.947165"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:15.947899"], ["updated_at", "2023-02-17 19:38:15.947899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.963808"], ["updated_at", "2023-02-17 19:38:15.963808"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.964894"], ["updated_at", "2023-02-17 19:38:15.964894"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.965736"], ["updated_at", "2023-02-17 19:38:15.965736"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.966452"], ["updated_at", "2023-02-17 19:38:15.966452"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.967225"], ["updated_at", "2023-02-17 19:38:15.967225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.968040"], ["updated_at", "2023-02-17 19:38:15.968040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.968824"], ["updated_at", "2023-02-17 19:38:15.968824"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.969606"], ["updated_at", "2023-02-17 19:38:15.969606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.970320"], ["updated_at", "2023-02-17 19:38:15.970320"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.971016"], ["updated_at", "2023-02-17 19:38:15.971016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.971717"], ["updated_at", "2023-02-17 19:38:15.971717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.972437"], ["updated_at", "2023-02-17 19:38:15.972437"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.973163"], ["updated_at", "2023-02-17 19:38:15.973163"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.973999"], ["updated_at", "2023-02-17 19:38:15.973999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.974725"], ["updated_at", "2023-02-17 19:38:15.974725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:15.975451"], ["updated_at", "2023-02-17 19:38:15.975451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:15.991261"], ["updated_at", "2023-02-17 19:38:15.991261"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:15.992261"], ["updated_at", "2023-02-17 19:38:15.992261"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:15.993041"], ["updated_at", "2023-02-17 19:38:15.993041"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:15.994039"], ["updated_at", "2023-02-17 19:38:15.994039"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.995088"], ["updated_at", "2023-02-17 19:38:15.995088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.996045"], ["updated_at", "2023-02-17 19:38:15.996045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.996772"], ["updated_at", "2023-02-17 19:38:15.996772"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.997497"], ["updated_at", "2023-02-17 19:38:15.997497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.998225"], ["updated_at", "2023-02-17 19:38:15.998225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.998925"], ["updated_at", "2023-02-17 19:38:15.998925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:15.999614"], ["updated_at", "2023-02-17 19:38:15.999614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.000304"], ["updated_at", "2023-02-17 19:38:16.000304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.000983"], ["updated_at", "2023-02-17 19:38:16.000983"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.001701"], ["updated_at", "2023-02-17 19:38:16.001701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.002424"], ["updated_at", "2023-02-17 19:38:16.002424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.003112"], ["updated_at", "2023-02-17 19:38:16.003112"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.018795"], ["updated_at", "2023-02-17 19:38:16.018795"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.019837"], ["updated_at", "2023-02-17 19:38:16.019837"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.020676"], ["updated_at", "2023-02-17 19:38:16.020676"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.021425"], ["updated_at", "2023-02-17 19:38:16.021425"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.022168"], ["updated_at", "2023-02-17 19:38:16.022168"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.022905"], ["updated_at", "2023-02-17 19:38:16.022905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.023616"], ["updated_at", "2023-02-17 19:38:16.023616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.024414"], ["updated_at", "2023-02-17 19:38:16.024414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.025116"], ["updated_at", "2023-02-17 19:38:16.025116"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.025814"], ["updated_at", "2023-02-17 19:38:16.025814"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.026511"], ["updated_at", "2023-02-17 19:38:16.026511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.027228"], ["updated_at", "2023-02-17 19:38:16.027228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.027937"], ["updated_at", "2023-02-17 19:38:16.027937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.028647"], ["updated_at", "2023-02-17 19:38:16.028647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.029359"], ["updated_at", "2023-02-17 19:38:16.029359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.030070"], ["updated_at", "2023-02-17 19:38:16.030070"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.045978"], ["updated_at", "2023-02-17 19:38:16.045978"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.047016"], ["updated_at", "2023-02-17 19:38:16.047016"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.047778"], ["updated_at", "2023-02-17 19:38:16.047778"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.048482"], ["updated_at", "2023-02-17 19:38:16.048482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.049297"], ["updated_at", "2023-02-17 19:38:16.049297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.050061"], ["updated_at", "2023-02-17 19:38:16.050061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.050783"], ["updated_at", "2023-02-17 19:38:16.050783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.051489"], ["updated_at", "2023-02-17 19:38:16.051489"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.052192"], ["updated_at", "2023-02-17 19:38:16.052192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.052897"], ["updated_at", "2023-02-17 19:38:16.052897"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.053658"], ["updated_at", "2023-02-17 19:38:16.053658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.054497"], ["updated_at", "2023-02-17 19:38:16.054497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.055230"], ["updated_at", "2023-02-17 19:38:16.055230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.055920"], ["updated_at", "2023-02-17 19:38:16.055920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.056624"], ["updated_at", "2023-02-17 19:38:16.056624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.057367"], ["updated_at", "2023-02-17 19:38:16.057367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.073170"], ["updated_at", "2023-02-17 19:38:16.073170"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.074254"], ["updated_at", "2023-02-17 19:38:16.074254"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.075074"], ["updated_at", "2023-02-17 19:38:16.075074"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.075796"], ["updated_at", "2023-02-17 19:38:16.075796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.076568"], ["updated_at", "2023-02-17 19:38:16.076568"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.077293"], ["updated_at", "2023-02-17 19:38:16.077293"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.078003"], ["updated_at", "2023-02-17 19:38:16.078003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.078749"], ["updated_at", "2023-02-17 19:38:16.078749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.079454"], ["updated_at", "2023-02-17 19:38:16.079454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.080138"], ["updated_at", "2023-02-17 19:38:16.080138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.080822"], ["updated_at", "2023-02-17 19:38:16.080822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.081526"], ["updated_at", "2023-02-17 19:38:16.081526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.082253"], ["updated_at", "2023-02-17 19:38:16.082253"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.082963"], ["updated_at", "2023-02-17 19:38:16.082963"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.083680"], ["updated_at", "2023-02-17 19:38:16.083680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.084522"], ["updated_at", "2023-02-17 19:38:16.084522"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.100298"], ["updated_at", "2023-02-17 19:38:16.100298"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.101345"], ["updated_at", "2023-02-17 19:38:16.101345"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.102141"], ["updated_at", "2023-02-17 19:38:16.102141"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.102877"], ["updated_at", "2023-02-17 19:38:16.102877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.103634"], ["updated_at", "2023-02-17 19:38:16.103634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.104469"], ["updated_at", "2023-02-17 19:38:16.104469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.105224"], ["updated_at", "2023-02-17 19:38:16.105224"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.105919"], ["updated_at", "2023-02-17 19:38:16.105919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.106613"], ["updated_at", "2023-02-17 19:38:16.106613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.107313"], ["updated_at", "2023-02-17 19:38:16.107313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.108006"], ["updated_at", "2023-02-17 19:38:16.108006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.108745"], ["updated_at", "2023-02-17 19:38:16.108745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.109482"], ["updated_at", "2023-02-17 19:38:16.109482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.110182"], ["updated_at", "2023-02-17 19:38:16.110182"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.110875"], ["updated_at", "2023-02-17 19:38:16.110875"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.111563"], ["updated_at", "2023-02-17 19:38:16.111563"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:38:16 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 14ms (Views: 11.0ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:16.135531"], ["updated_at", "2023-02-17 19:38:16.135531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:16.136972"], ["updated_at", "2023-02-17 19:38:16.136972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:16.139839"], ["updated_at", "2023-02-17 19:38:16.139839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:16.141075"], ["updated_at", "2023-02-17 19:38:16.141075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:16.143744"], ["updated_at", "2023-02-17 19:38:16.143744"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:16.145025"], ["updated_at", "2023-02-17 19:38:16.145025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:16.147108"], ["updated_at", "2023-02-17 19:38:16.147108"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:16.148511"], ["updated_at", "2023-02-17 19:38:16.148511"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:16.150116"], ["updated_at", "2023-02-17 19:38:16.150116"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:16.151450"], ["updated_at", "2023-02-17 19:38:16.151450"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:16.152839"], ["updated_at", "2023-02-17 19:38:16.152839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:16.154108"], ["updated_at", "2023-02-17 19:38:16.154108"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:16.155598"], ["updated_at", "2023-02-17 19:38:16.155598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:16.156946"], ["updated_at", "2023-02-17 19:38:16.156946"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:16.158377"], ["updated_at", "2023-02-17 19:38:16.158377"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:16.159554"], ["updated_at", "2023-02-17 19:38:16.159554"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:16.160956"], ["updated_at", "2023-02-17 19:38:16.160956"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:16.162182"], ["updated_at", "2023-02-17 19:38:16.162182"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:16.163565"], ["updated_at", "2023-02-17 19:38:16.163565"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:16.164841"], ["updated_at", "2023-02-17 19:38:16.164841"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:16.166226"], ["updated_at", "2023-02-17 19:38:16.166226"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:16.167438"], ["updated_at", "2023-02-17 19:38:16.167438"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:16.168827"], ["updated_at", "2023-02-17 19:38:16.168827"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:16.170003"], ["updated_at", "2023-02-17 19:38:16.170003"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:16.171434"], ["updated_at", "2023-02-17 19:38:16.171434"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:16.172625"], ["updated_at", "2023-02-17 19:38:16.172625"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:16.173979"], ["updated_at", "2023-02-17 19:38:16.173979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:16.175273"], ["updated_at", "2023-02-17 19:38:16.175273"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:16.176675"], ["updated_at", "2023-02-17 19:38:16.176675"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:16.177846"], ["updated_at", "2023-02-17 19:38:16.177846"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:16.179228"], ["updated_at", "2023-02-17 19:38:16.179228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:16.180409"], ["updated_at", "2023-02-17 19:38:16.180409"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:16.181793"], ["updated_at", "2023-02-17 19:38:16.181793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:16.183069"], ["updated_at", "2023-02-17 19:38:16.183069"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:16.184531"], ["updated_at", "2023-02-17 19:38:16.184531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:16.185830"], ["updated_at", "2023-02-17 19:38:16.185830"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:16.187243"], ["updated_at", "2023-02-17 19:38:16.187243"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:16.188436"], ["updated_at", "2023-02-17 19:38:16.188436"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:16.189817"], ["updated_at", "2023-02-17 19:38:16.189817"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:16.191011"], ["updated_at", "2023-02-17 19:38:16.191011"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:16.192346"], ["updated_at", "2023-02-17 19:38:16.192346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:16.193540"], ["updated_at", "2023-02-17 19:38:16.193540"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:16.195128"], ["updated_at", "2023-02-17 19:38:16.195128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:16.196402"], ["updated_at", "2023-02-17 19:38:16.196402"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:16.197845"], ["updated_at", "2023-02-17 19:38:16.197845"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:16.199019"], ["updated_at", "2023-02-17 19:38:16.199019"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:16.200349"], ["updated_at", "2023-02-17 19:38:16.200349"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:16.201570"], ["updated_at", "2023-02-17 19:38:16.201570"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:16.202909"], ["updated_at", "2023-02-17 19:38:16.202909"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:16.204056"], ["updated_at", "2023-02-17 19:38:16.204056"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:16.205587"], ["updated_at", "2023-02-17 19:38:16.205587"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:16.206865"], ["updated_at", "2023-02-17 19:38:16.206865"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:16.208345"], ["updated_at", "2023-02-17 19:38:16.208345"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:16.209569"], ["updated_at", "2023-02-17 19:38:16.209569"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:16.210979"], ["updated_at", "2023-02-17 19:38:16.210979"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:16.212208"], ["updated_at", "2023-02-17 19:38:16.212208"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:16.213608"], ["updated_at", "2023-02-17 19:38:16.213608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:16.214877"], ["updated_at", "2023-02-17 19:38:16.214877"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:16.216336"], ["updated_at", "2023-02-17 19:38:16.216336"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:16.217567"], ["updated_at", "2023-02-17 19:38:16.217567"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:16.218965"], ["updated_at", "2023-02-17 19:38:16.218965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:16.220176"], ["updated_at", "2023-02-17 19:38:16.220176"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:16.221653"], ["updated_at", "2023-02-17 19:38:16.221653"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:16.223027"], ["updated_at", "2023-02-17 19:38:16.223027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:16.224478"], ["updated_at", "2023-02-17 19:38:16.224478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:16.225869"], ["updated_at", "2023-02-17 19:38:16.225869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:16.227305"], ["updated_at", "2023-02-17 19:38:16.227305"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:16.228505"], ["updated_at", "2023-02-17 19:38:16.228505"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:16.229938"], ["updated_at", "2023-02-17 19:38:16.229938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:16.231101"], ["updated_at", "2023-02-17 19:38:16.231101"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:16.232417"], ["updated_at", "2023-02-17 19:38:16.232417"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:16.233603"], ["updated_at", "2023-02-17 19:38:16.233603"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:16.235001"], ["updated_at", "2023-02-17 19:38:16.235001"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:16.236210"], ["updated_at", "2023-02-17 19:38:16.236210"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:16.237596"], ["updated_at", "2023-02-17 19:38:16.237596"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:16.238744"], ["updated_at", "2023-02-17 19:38:16.238744"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:16.240122"], ["updated_at", "2023-02-17 19:38:16.240122"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:16.241347"], ["updated_at", "2023-02-17 19:38:16.241347"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:16.242758"], ["updated_at", "2023-02-17 19:38:16.242758"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:16.243990"], ["updated_at", "2023-02-17 19:38:16.243990"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:16.245566"], ["updated_at", "2023-02-17 19:38:16.245566"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:16.246831"], ["updated_at", "2023-02-17 19:38:16.246831"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:16.248253"], ["updated_at", "2023-02-17 19:38:16.248253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:16.249477"], ["updated_at", "2023-02-17 19:38:16.249477"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:16.250868"], ["updated_at", "2023-02-17 19:38:16.250868"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:16.252199"], ["updated_at", "2023-02-17 19:38:16.252199"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:16.253867"], ["updated_at", "2023-02-17 19:38:16.253867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:16.255121"], ["updated_at", "2023-02-17 19:38:16.255121"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:16.256530"], ["updated_at", "2023-02-17 19:38:16.256530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:16.257802"], ["updated_at", "2023-02-17 19:38:16.257802"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:16.259223"], ["updated_at", "2023-02-17 19:38:16.259223"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:16.260427"], ["updated_at", "2023-02-17 19:38:16.260427"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:16.261872"], ["updated_at", "2023-02-17 19:38:16.261872"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:16.263172"], ["updated_at", "2023-02-17 19:38:16.263172"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:16.264598"], ["updated_at", "2023-02-17 19:38:16.264598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:16.265724"], ["updated_at", "2023-02-17 19:38:16.265724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:16.266934"], ["updated_at", "2023-02-17 19:38:16.266934"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:16.268354"], ["updated_at", "2023-02-17 19:38:16.268354"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:16.269878"], ["updated_at", "2023-02-17 19:38:16.269878"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:16.271035"], ["updated_at", "2023-02-17 19:38:16.271035"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:16.272136"], ["updated_at", "2023-02-17 19:38:16.272136"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:16.283771"], ["updated_at", "2023-02-17 19:38:16.283771"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:16.285164"], ["updated_at", "2023-02-17 19:38:16.285164"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:16.286142"], ["updated_at", "2023-02-17 19:38:16.286142"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.287022"], ["updated_at", "2023-02-17 19:38:16.287022"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.287864"], ["updated_at", "2023-02-17 19:38:16.287864"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.288563"], ["updated_at", "2023-02-17 19:38:16.288563"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.289267"], ["updated_at", "2023-02-17 19:38:16.289267"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.289952"], ["updated_at", "2023-02-17 19:38:16.289952"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:16.290724"], ["updated_at", "2023-02-17 19:38:16.290724"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.291609"], ["updated_at", "2023-02-17 19:38:16.291609"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.292587"], ["updated_at", "2023-02-17 19:38:16.292587"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.293404"], ["updated_at", "2023-02-17 19:38:16.293404"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.294181"], ["updated_at", "2023-02-17 19:38:16.294181"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.294986"], ["updated_at", "2023-02-17 19:38:16.294986"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.295753"], ["updated_at", "2023-02-17 19:38:16.295753"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.296505"], ["updated_at", "2023-02-17 19:38:16.296505"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.297287"], ["updated_at", "2023-02-17 19:38:16.297287"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.298085"], ["updated_at", "2023-02-17 19:38:16.298085"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.298858"], ["updated_at", "2023-02-17 19:38:16.298858"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.299630"], ["updated_at", "2023-02-17 19:38:16.299630"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.300392"], ["updated_at", "2023-02-17 19:38:16.300392"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:16.311800"], ["updated_at", "2023-02-17 19:38:16.311800"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:16.313167"], ["updated_at", "2023-02-17 19:38:16.313167"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:16.314121"], ["updated_at", "2023-02-17 19:38:16.314121"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:16.314988"], ["updated_at", "2023-02-17 19:38:16.314988"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:16.315753"], ["updated_at", "2023-02-17 19:38:16.315753"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:16.316476"], ["updated_at", "2023-02-17 19:38:16.316476"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:16.317207"], ["updated_at", "2023-02-17 19:38:16.317207"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:16.317954"], ["updated_at", "2023-02-17 19:38:16.317954"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:16.318715"], ["updated_at", "2023-02-17 19:38:16.318715"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.319568"], ["updated_at", "2023-02-17 19:38:16.319568"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.320368"], ["updated_at", "2023-02-17 19:38:16.320368"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.321153"], ["updated_at", "2023-02-17 19:38:16.321153"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.321916"], ["updated_at", "2023-02-17 19:38:16.321916"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.322774"], ["updated_at", "2023-02-17 19:38:16.322774"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.323535"], ["updated_at", "2023-02-17 19:38:16.323535"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.324335"], ["updated_at", "2023-02-17 19:38:16.324335"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.325133"], ["updated_at", "2023-02-17 19:38:16.325133"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.325906"], ["updated_at", "2023-02-17 19:38:16.325906"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.326661"], ["updated_at", "2023-02-17 19:38:16.326661"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.327413"], ["updated_at", "2023-02-17 19:38:16.327413"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.328187"], ["updated_at", "2023-02-17 19:38:16.328187"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.344377"], ["updated_at", "2023-02-17 19:38:16.344377"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.345462"], ["updated_at", "2023-02-17 19:38:16.345462"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.346291"], ["updated_at", "2023-02-17 19:38:16.346291"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.347027"], ["updated_at", "2023-02-17 19:38:16.347027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.347841"], ["updated_at", "2023-02-17 19:38:16.347841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.348656"], ["updated_at", "2023-02-17 19:38:16.348656"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.349386"], ["updated_at", "2023-02-17 19:38:16.349386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.350103"], ["updated_at", "2023-02-17 19:38:16.350103"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.350836"], ["updated_at", "2023-02-17 19:38:16.350836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.351582"], ["updated_at", "2023-02-17 19:38:16.351582"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.352360"], ["updated_at", "2023-02-17 19:38:16.352360"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.353094"], ["updated_at", "2023-02-17 19:38:16.353094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.353808"], ["updated_at", "2023-02-17 19:38:16.353808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.354516"], ["updated_at", "2023-02-17 19:38:16.354516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.355276"], ["updated_at", "2023-02-17 19:38:16.355276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.355982"], ["updated_at", "2023-02-17 19:38:16.355982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.377946"], ["updated_at", "2023-02-17 19:38:16.377946"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.378957"], ["updated_at", "2023-02-17 19:38:16.378957"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.379703"], ["updated_at", "2023-02-17 19:38:16.379703"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.380454"], ["updated_at", "2023-02-17 19:38:16.380454"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.381239"], ["updated_at", "2023-02-17 19:38:16.381239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.381969"], ["updated_at", "2023-02-17 19:38:16.381969"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.382790"], ["updated_at", "2023-02-17 19:38:16.382790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.383514"], ["updated_at", "2023-02-17 19:38:16.383514"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.384223"], ["updated_at", "2023-02-17 19:38:16.384223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.384931"], ["updated_at", "2023-02-17 19:38:16.384931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.385635"], ["updated_at", "2023-02-17 19:38:16.385635"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.386335"], ["updated_at", "2023-02-17 19:38:16.386335"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.387036"], ["updated_at", "2023-02-17 19:38:16.387036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.387754"], ["updated_at", "2023-02-17 19:38:16.387754"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.388450"], ["updated_at", "2023-02-17 19:38:16.388450"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.389161"], ["updated_at", "2023-02-17 19:38:16.389161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.404686"], ["updated_at", "2023-02-17 19:38:16.404686"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.405676"], ["updated_at", "2023-02-17 19:38:16.405676"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.406420"], ["updated_at", "2023-02-17 19:38:16.406420"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.407129"], ["updated_at", "2023-02-17 19:38:16.407129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.407861"], ["updated_at", "2023-02-17 19:38:16.407861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.408577"], ["updated_at", "2023-02-17 19:38:16.408577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.409287"], ["updated_at", "2023-02-17 19:38:16.409287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.409973"], ["updated_at", "2023-02-17 19:38:16.409973"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.410709"], ["updated_at", "2023-02-17 19:38:16.410709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.411414"], ["updated_at", "2023-02-17 19:38:16.411414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.412091"], ["updated_at", "2023-02-17 19:38:16.412091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.412907"], ["updated_at", "2023-02-17 19:38:16.412907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.413664"], ["updated_at", "2023-02-17 19:38:16.413664"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.414383"], ["updated_at", "2023-02-17 19:38:16.414383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.415076"], ["updated_at", "2023-02-17 19:38:16.415076"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.415762"], ["updated_at", "2023-02-17 19:38:16.415762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.431429"], ["updated_at", "2023-02-17 19:38:16.431429"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.432410"], ["updated_at", "2023-02-17 19:38:16.432410"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.433286"], ["updated_at", "2023-02-17 19:38:16.433286"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.433999"], ["updated_at", "2023-02-17 19:38:16.433999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.434779"], ["updated_at", "2023-02-17 19:38:16.434779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.435537"], ["updated_at", "2023-02-17 19:38:16.435537"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.436247"], ["updated_at", "2023-02-17 19:38:16.436247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.436927"], ["updated_at", "2023-02-17 19:38:16.436927"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.437624"], ["updated_at", "2023-02-17 19:38:16.437624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.438313"], ["updated_at", "2023-02-17 19:38:16.438313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.439028"], ["updated_at", "2023-02-17 19:38:16.439028"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.439721"], ["updated_at", "2023-02-17 19:38:16.439721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.440391"], ["updated_at", "2023-02-17 19:38:16.440391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.441087"], ["updated_at", "2023-02-17 19:38:16.441087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.441839"], ["updated_at", "2023-02-17 19:38:16.441839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.442612"], ["updated_at", "2023-02-17 19:38:16.442612"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.458036"], ["updated_at", "2023-02-17 19:38:16.458036"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.459035"], ["updated_at", "2023-02-17 19:38:16.459035"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.459803"], ["updated_at", "2023-02-17 19:38:16.459803"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.460505"], ["updated_at", "2023-02-17 19:38:16.460505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.461280"], ["updated_at", "2023-02-17 19:38:16.461280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.462119"], ["updated_at", "2023-02-17 19:38:16.462119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.462842"], ["updated_at", "2023-02-17 19:38:16.462842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.463520"], ["updated_at", "2023-02-17 19:38:16.463520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.464210"], ["updated_at", "2023-02-17 19:38:16.464210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.464930"], ["updated_at", "2023-02-17 19:38:16.464930"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.465630"], ["updated_at", "2023-02-17 19:38:16.465630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.466332"], ["updated_at", "2023-02-17 19:38:16.466332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.467056"], ["updated_at", "2023-02-17 19:38:16.467056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.467757"], ["updated_at", "2023-02-17 19:38:16.467757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.468455"], ["updated_at", "2023-02-17 19:38:16.468455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.469142"], ["updated_at", "2023-02-17 19:38:16.469142"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.484737"], ["updated_at", "2023-02-17 19:38:16.484737"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.485736"], ["updated_at", "2023-02-17 19:38:16.485736"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.486541"], ["updated_at", "2023-02-17 19:38:16.486541"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.487247"], ["updated_at", "2023-02-17 19:38:16.487247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.488000"], ["updated_at", "2023-02-17 19:38:16.488000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.488744"], ["updated_at", "2023-02-17 19:38:16.488744"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.489468"], ["updated_at", "2023-02-17 19:38:16.489468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.490195"], ["updated_at", "2023-02-17 19:38:16.490195"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.490907"], ["updated_at", "2023-02-17 19:38:16.490907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.491590"], ["updated_at", "2023-02-17 19:38:16.491590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.492383"], ["updated_at", "2023-02-17 19:38:16.492383"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.493118"], ["updated_at", "2023-02-17 19:38:16.493118"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.493818"], ["updated_at", "2023-02-17 19:38:16.493818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.494507"], ["updated_at", "2023-02-17 19:38:16.494507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.495225"], ["updated_at", "2023-02-17 19:38:16.495225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.495921"], ["updated_at", "2023-02-17 19:38:16.495921"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:38:16 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:16.513288"], ["updated_at", "2023-02-17 19:38:16.513288"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:16.514733"], ["updated_at", "2023-02-17 19:38:16.514733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:16.517539"], ["updated_at", "2023-02-17 19:38:16.517539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:16.518688"], ["updated_at", "2023-02-17 19:38:16.518688"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:16.521374"], ["updated_at", "2023-02-17 19:38:16.521374"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:16.522629"], ["updated_at", "2023-02-17 19:38:16.522629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:16.524712"], ["updated_at", "2023-02-17 19:38:16.524712"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:16.526133"], ["updated_at", "2023-02-17 19:38:16.526133"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:16.527716"], ["updated_at", "2023-02-17 19:38:16.527716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:16.529032"], ["updated_at", "2023-02-17 19:38:16.529032"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:16.530435"], ["updated_at", "2023-02-17 19:38:16.530435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:16.531648"], ["updated_at", "2023-02-17 19:38:16.531648"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:16.533137"], ["updated_at", "2023-02-17 19:38:16.533137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:16.534432"], ["updated_at", "2023-02-17 19:38:16.534432"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:16.535868"], ["updated_at", "2023-02-17 19:38:16.535868"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:16.537061"], ["updated_at", "2023-02-17 19:38:16.537061"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:16.538414"], ["updated_at", "2023-02-17 19:38:16.538414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:16.539589"], ["updated_at", "2023-02-17 19:38:16.539589"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:16.540915"], ["updated_at", "2023-02-17 19:38:16.540915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:16.542161"], ["updated_at", "2023-02-17 19:38:16.542161"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:16.543582"], ["updated_at", "2023-02-17 19:38:16.543582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:16.544760"], ["updated_at", "2023-02-17 19:38:16.544760"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:16.546147"], ["updated_at", "2023-02-17 19:38:16.546147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:16.547302"], ["updated_at", "2023-02-17 19:38:16.547302"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:16.548612"], ["updated_at", "2023-02-17 19:38:16.548612"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:16.549786"], ["updated_at", "2023-02-17 19:38:16.549786"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:16.551135"], ["updated_at", "2023-02-17 19:38:16.551135"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:16.552352"], ["updated_at", "2023-02-17 19:38:16.552352"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:16.553791"], ["updated_at", "2023-02-17 19:38:16.553791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:16.555203"], ["updated_at", "2023-02-17 19:38:16.555203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:16.556616"], ["updated_at", "2023-02-17 19:38:16.556616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:16.557934"], ["updated_at", "2023-02-17 19:38:16.557934"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:16.559325"], ["updated_at", "2023-02-17 19:38:16.559325"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:16.560494"], ["updated_at", "2023-02-17 19:38:16.560494"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:16.561915"], ["updated_at", "2023-02-17 19:38:16.561915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:16.563219"], ["updated_at", "2023-02-17 19:38:16.563219"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:16.564581"], ["updated_at", "2023-02-17 19:38:16.564581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:16.565806"], ["updated_at", "2023-02-17 19:38:16.565806"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:16.567161"], ["updated_at", "2023-02-17 19:38:16.567161"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:16.568368"], ["updated_at", "2023-02-17 19:38:16.568368"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:16.569767"], ["updated_at", "2023-02-17 19:38:16.569767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:16.570929"], ["updated_at", "2023-02-17 19:38:16.570929"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:16.572371"], ["updated_at", "2023-02-17 19:38:16.572371"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:16.573645"], ["updated_at", "2023-02-17 19:38:16.573645"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:16.575040"], ["updated_at", "2023-02-17 19:38:16.575040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:16.576293"], ["updated_at", "2023-02-17 19:38:16.576293"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:16.577694"], ["updated_at", "2023-02-17 19:38:16.577694"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:16.578866"], ["updated_at", "2023-02-17 19:38:16.578866"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:16.580198"], ["updated_at", "2023-02-17 19:38:16.580198"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:16.581355"], ["updated_at", "2023-02-17 19:38:16.581355"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:16.582839"], ["updated_at", "2023-02-17 19:38:16.582839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:16.584030"], ["updated_at", "2023-02-17 19:38:16.584030"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:16.585346"], ["updated_at", "2023-02-17 19:38:16.585346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:16.586521"], ["updated_at", "2023-02-17 19:38:16.586521"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:16.587949"], ["updated_at", "2023-02-17 19:38:16.587949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:16.589319"], ["updated_at", "2023-02-17 19:38:16.589319"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:16.590726"], ["updated_at", "2023-02-17 19:38:16.590726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:16.591942"], ["updated_at", "2023-02-17 19:38:16.591942"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:16.593424"], ["updated_at", "2023-02-17 19:38:16.593424"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:16.594629"], ["updated_at", "2023-02-17 19:38:16.594629"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:16.595993"], ["updated_at", "2023-02-17 19:38:16.595993"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:16.597174"], ["updated_at", "2023-02-17 19:38:16.597174"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:16.598568"], ["updated_at", "2023-02-17 19:38:16.598568"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:16.599727"], ["updated_at", "2023-02-17 19:38:16.599727"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:16.601118"], ["updated_at", "2023-02-17 19:38:16.601118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:16.602441"], ["updated_at", "2023-02-17 19:38:16.602441"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:16.603870"], ["updated_at", "2023-02-17 19:38:16.603870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:16.605062"], ["updated_at", "2023-02-17 19:38:16.605062"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:16.606450"], ["updated_at", "2023-02-17 19:38:16.606450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:16.607624"], ["updated_at", "2023-02-17 19:38:16.607624"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:16.608975"], ["updated_at", "2023-02-17 19:38:16.608975"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:16.610177"], ["updated_at", "2023-02-17 19:38:16.610177"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:16.611539"], ["updated_at", "2023-02-17 19:38:16.611539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:16.612819"], ["updated_at", "2023-02-17 19:38:16.612819"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:16.614447"], ["updated_at", "2023-02-17 19:38:16.614447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:16.615634"], ["updated_at", "2023-02-17 19:38:16.615634"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:16.617050"], ["updated_at", "2023-02-17 19:38:16.617050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:16.618246"], ["updated_at", "2023-02-17 19:38:16.618246"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:16.619589"], ["updated_at", "2023-02-17 19:38:16.619589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:16.620830"], ["updated_at", "2023-02-17 19:38:16.620830"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:16.622213"], ["updated_at", "2023-02-17 19:38:16.622213"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:16.623490"], ["updated_at", "2023-02-17 19:38:16.623490"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:16.624873"], ["updated_at", "2023-02-17 19:38:16.624873"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:16.626202"], ["updated_at", "2023-02-17 19:38:16.626202"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:16.627682"], ["updated_at", "2023-02-17 19:38:16.627682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:16.628857"], ["updated_at", "2023-02-17 19:38:16.628857"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:16.630258"], ["updated_at", "2023-02-17 19:38:16.630258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:16.631430"], ["updated_at", "2023-02-17 19:38:16.631430"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:16.632863"], ["updated_at", "2023-02-17 19:38:16.632863"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:16.634138"], ["updated_at", "2023-02-17 19:38:16.634138"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:16.635545"], ["updated_at", "2023-02-17 19:38:16.635545"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:16.636721"], ["updated_at", "2023-02-17 19:38:16.636721"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:16.638140"], ["updated_at", "2023-02-17 19:38:16.638140"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:16.639328"], ["updated_at", "2023-02-17 19:38:16.639328"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:16.640645"], ["updated_at", "2023-02-17 19:38:16.640645"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:16.641753"], ["updated_at", "2023-02-17 19:38:16.641753"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:16.643034"], ["updated_at", "2023-02-17 19:38:16.643034"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:16.644436"], ["updated_at", "2023-02-17 19:38:16.644436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:16.645956"], ["updated_at", "2023-02-17 19:38:16.645956"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:16.647094"], ["updated_at", "2023-02-17 19:38:16.647094"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:16.648074"], ["updated_at", "2023-02-17 19:38:16.648074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:16.659340"], ["updated_at", "2023-02-17 19:38:16.659340"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:16.660662"], ["updated_at", "2023-02-17 19:38:16.660662"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:16.661657"], ["updated_at", "2023-02-17 19:38:16.661657"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.662576"], ["updated_at", "2023-02-17 19:38:16.662576"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.663428"], ["updated_at", "2023-02-17 19:38:16.663428"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.664152"], ["updated_at", "2023-02-17 19:38:16.664152"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.664845"], ["updated_at", "2023-02-17 19:38:16.664845"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.665543"], ["updated_at", "2023-02-17 19:38:16.665543"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:16.666292"], ["updated_at", "2023-02-17 19:38:16.666292"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.667151"], ["updated_at", "2023-02-17 19:38:16.667151"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.668026"], ["updated_at", "2023-02-17 19:38:16.668026"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.668792"], ["updated_at", "2023-02-17 19:38:16.668792"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.669594"], ["updated_at", "2023-02-17 19:38:16.669594"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.670344"], ["updated_at", "2023-02-17 19:38:16.670344"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.671103"], ["updated_at", "2023-02-17 19:38:16.671103"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.671837"], ["updated_at", "2023-02-17 19:38:16.671837"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.672627"], ["updated_at", "2023-02-17 19:38:16.672627"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.673477"], ["updated_at", "2023-02-17 19:38:16.673477"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.674269"], ["updated_at", "2023-02-17 19:38:16.674269"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.675006"], ["updated_at", "2023-02-17 19:38:16.675006"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.675756"], ["updated_at", "2023-02-17 19:38:16.675756"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:16.687064"], ["updated_at", "2023-02-17 19:38:16.687064"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:16.688328"], ["updated_at", "2023-02-17 19:38:16.688328"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:16.689273"], ["updated_at", "2023-02-17 19:38:16.689273"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:16.690129"], ["updated_at", "2023-02-17 19:38:16.690129"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:16.690904"], ["updated_at", "2023-02-17 19:38:16.690904"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:16.691614"], ["updated_at", "2023-02-17 19:38:16.691614"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:16.692301"], ["updated_at", "2023-02-17 19:38:16.692301"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:16.693102"], ["updated_at", "2023-02-17 19:38:16.693102"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:16.693893"], ["updated_at", "2023-02-17 19:38:16.693893"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.694773"], ["updated_at", "2023-02-17 19:38:16.694773"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.695604"], ["updated_at", "2023-02-17 19:38:16.695604"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.696387"], ["updated_at", "2023-02-17 19:38:16.696387"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.697152"], ["updated_at", "2023-02-17 19:38:16.697152"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.697902"], ["updated_at", "2023-02-17 19:38:16.697902"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.698650"], ["updated_at", "2023-02-17 19:38:16.698650"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.699412"], ["updated_at", "2023-02-17 19:38:16.699412"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.700388"], ["updated_at", "2023-02-17 19:38:16.700388"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.701325"], ["updated_at", "2023-02-17 19:38:16.701325"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.702222"], ["updated_at", "2023-02-17 19:38:16.702222"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.703029"], ["updated_at", "2023-02-17 19:38:16.703029"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:16.703790"], ["updated_at", "2023-02-17 19:38:16.703790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.719757"], ["updated_at", "2023-02-17 19:38:16.719757"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.720897"], ["updated_at", "2023-02-17 19:38:16.720897"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.721815"], ["updated_at", "2023-02-17 19:38:16.721815"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.722667"], ["updated_at", "2023-02-17 19:38:16.722667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.723508"], ["updated_at", "2023-02-17 19:38:16.723508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.724351"], ["updated_at", "2023-02-17 19:38:16.724351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.725091"], ["updated_at", "2023-02-17 19:38:16.725091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.725818"], ["updated_at", "2023-02-17 19:38:16.725818"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.726730"], ["updated_at", "2023-02-17 19:38:16.726730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.727589"], ["updated_at", "2023-02-17 19:38:16.727589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.728309"], ["updated_at", "2023-02-17 19:38:16.728309"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.729007"], ["updated_at", "2023-02-17 19:38:16.729007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.729762"], ["updated_at", "2023-02-17 19:38:16.729762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.730484"], ["updated_at", "2023-02-17 19:38:16.730484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.731179"], ["updated_at", "2023-02-17 19:38:16.731179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:16.731949"], ["updated_at", "2023-02-17 19:38:16.731949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.747963"], ["updated_at", "2023-02-17 19:38:16.747963"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.748931"], ["updated_at", "2023-02-17 19:38:16.748931"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.749687"], ["updated_at", "2023-02-17 19:38:16.749687"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.750392"], ["updated_at", "2023-02-17 19:38:16.750392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.751142"], ["updated_at", "2023-02-17 19:38:16.751142"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.751925"], ["updated_at", "2023-02-17 19:38:16.751925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.752678"], ["updated_at", "2023-02-17 19:38:16.752678"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.753387"], ["updated_at", "2023-02-17 19:38:16.753387"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.754093"], ["updated_at", "2023-02-17 19:38:16.754093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.754793"], ["updated_at", "2023-02-17 19:38:16.754793"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.755484"], ["updated_at", "2023-02-17 19:38:16.755484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.756305"], ["updated_at", "2023-02-17 19:38:16.756305"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.757049"], ["updated_at", "2023-02-17 19:38:16.757049"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.757771"], ["updated_at", "2023-02-17 19:38:16.757771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.758464"], ["updated_at", "2023-02-17 19:38:16.758464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:16.759158"], ["updated_at", "2023-02-17 19:38:16.759158"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.774702"], ["updated_at", "2023-02-17 19:38:16.774702"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.775697"], ["updated_at", "2023-02-17 19:38:16.775697"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.776442"], ["updated_at", "2023-02-17 19:38:16.776442"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.777161"], ["updated_at", "2023-02-17 19:38:16.777161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.777937"], ["updated_at", "2023-02-17 19:38:16.777937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.778679"], ["updated_at", "2023-02-17 19:38:16.778679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.779386"], ["updated_at", "2023-02-17 19:38:16.779386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.780079"], ["updated_at", "2023-02-17 19:38:16.780079"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.780763"], ["updated_at", "2023-02-17 19:38:16.780763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.781473"], ["updated_at", "2023-02-17 19:38:16.781473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.782256"], ["updated_at", "2023-02-17 19:38:16.782256"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.783008"], ["updated_at", "2023-02-17 19:38:16.783008"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.783690"], ["updated_at", "2023-02-17 19:38:16.783690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.784428"], ["updated_at", "2023-02-17 19:38:16.784428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.785150"], ["updated_at", "2023-02-17 19:38:16.785150"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:16.785833"], ["updated_at", "2023-02-17 19:38:16.785833"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.801173"], ["updated_at", "2023-02-17 19:38:16.801173"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.802214"], ["updated_at", "2023-02-17 19:38:16.802214"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.803028"], ["updated_at", "2023-02-17 19:38:16.803028"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.803757"], ["updated_at", "2023-02-17 19:38:16.803757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.804500"], ["updated_at", "2023-02-17 19:38:16.804500"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.805242"], ["updated_at", "2023-02-17 19:38:16.805242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.805926"], ["updated_at", "2023-02-17 19:38:16.805926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.806624"], ["updated_at", "2023-02-17 19:38:16.806624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.807327"], ["updated_at", "2023-02-17 19:38:16.807327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.808039"], ["updated_at", "2023-02-17 19:38:16.808039"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.808729"], ["updated_at", "2023-02-17 19:38:16.808729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.809448"], ["updated_at", "2023-02-17 19:38:16.809448"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.810147"], ["updated_at", "2023-02-17 19:38:16.810147"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.810845"], ["updated_at", "2023-02-17 19:38:16.810845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.811561"], ["updated_at", "2023-02-17 19:38:16.811561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:16.812351"], ["updated_at", "2023-02-17 19:38:16.812351"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.829293"], ["updated_at", "2023-02-17 19:38:16.829293"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.830373"], ["updated_at", "2023-02-17 19:38:16.830373"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.831365"], ["updated_at", "2023-02-17 19:38:16.831365"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.832462"], ["updated_at", "2023-02-17 19:38:16.832462"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.833530"], ["updated_at", "2023-02-17 19:38:16.833530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.834498"], ["updated_at", "2023-02-17 19:38:16.834498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.835393"], ["updated_at", "2023-02-17 19:38:16.835393"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.836246"], ["updated_at", "2023-02-17 19:38:16.836246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.837124"], ["updated_at", "2023-02-17 19:38:16.837124"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.838016"], ["updated_at", "2023-02-17 19:38:16.838016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.838868"], ["updated_at", "2023-02-17 19:38:16.838868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.839735"], ["updated_at", "2023-02-17 19:38:16.839735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.840572"], ["updated_at", "2023-02-17 19:38:16.840572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.841472"], ["updated_at", "2023-02-17 19:38:16.841472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.842419"], ["updated_at", "2023-02-17 19:38:16.842419"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:16.843301"], ["updated_at", "2023-02-17 19:38:16.843301"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:16.860497"], ["updated_at", "2023-02-17 19:38:16.860497"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:16.861555"], ["updated_at", "2023-02-17 19:38:16.861555"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:16.862683"], ["updated_at", "2023-02-17 19:38:16.862683"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:16.863576"], ["updated_at", "2023-02-17 19:38:16.863576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.864496"], ["updated_at", "2023-02-17 19:38:16.864496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.865379"], ["updated_at", "2023-02-17 19:38:16.865379"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.866212"], ["updated_at", "2023-02-17 19:38:16.866212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.867015"], ["updated_at", "2023-02-17 19:38:16.867015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.867852"], ["updated_at", "2023-02-17 19:38:16.867852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.868681"], ["updated_at", "2023-02-17 19:38:16.868681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.869497"], ["updated_at", "2023-02-17 19:38:16.869497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.870297"], ["updated_at", "2023-02-17 19:38:16.870297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.871108"], ["updated_at", "2023-02-17 19:38:16.871108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.871955"], ["updated_at", "2023-02-17 19:38:16.871955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.873193"], ["updated_at", "2023-02-17 19:38:16.873193"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:16.874232"], ["updated_at", "2023-02-17 19:38:16.874232"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:38:16 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (2.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:16.885845"], ["updated_at", "2023-02-17 19:38:16.885845"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:16.889560"], ["updated_at", "2023-02-17 19:38:16.889560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:16.894643"], ["updated_at", "2023-02-17 19:38:16.894643"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:16.896212"], ["updated_at", "2023-02-17 19:38:16.896212"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:16.900303"], ["updated_at", "2023-02-17 19:38:16.900303"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:16.901898"], ["updated_at", "2023-02-17 19:38:16.901898"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:16.904899"], ["updated_at", "2023-02-17 19:38:16.904899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:16.907340"], ["updated_at", "2023-02-17 19:38:16.907340"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (1.4ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:16.910562"], ["updated_at", "2023-02-17 19:38:16.910562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:16.913555"], ["updated_at", "2023-02-17 19:38:16.913555"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:16.915443"], ["updated_at", "2023-02-17 19:38:16.915443"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:16.917334"], ["updated_at", "2023-02-17 19:38:16.917334"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:16.919649"], ["updated_at", "2023-02-17 19:38:16.919649"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:16.921548"], ["updated_at", "2023-02-17 19:38:16.921548"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:16.923779"], ["updated_at", "2023-02-17 19:38:16.923779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:16.925499"], ["updated_at", "2023-02-17 19:38:16.925499"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:16.927762"], ["updated_at", "2023-02-17 19:38:16.927762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:16.929650"], ["updated_at", "2023-02-17 19:38:16.929650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:16.931641"], ["updated_at", "2023-02-17 19:38:16.931641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:16.933695"], ["updated_at", "2023-02-17 19:38:16.933695"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:16.935830"], ["updated_at", "2023-02-17 19:38:16.935830"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:16.937622"], ["updated_at", "2023-02-17 19:38:16.937622"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:16.939615"], ["updated_at", "2023-02-17 19:38:16.939615"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:16.941593"], ["updated_at", "2023-02-17 19:38:16.941593"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:16.943681"], ["updated_at", "2023-02-17 19:38:16.943681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:16.945382"], ["updated_at", "2023-02-17 19:38:16.945382"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:16.947257"], ["updated_at", "2023-02-17 19:38:16.947257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:16.949031"], ["updated_at", "2023-02-17 19:38:16.949031"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:16.951047"], ["updated_at", "2023-02-17 19:38:16.951047"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:16.952797"], ["updated_at", "2023-02-17 19:38:16.952797"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:16.954643"], ["updated_at", "2023-02-17 19:38:16.954643"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:16.956415"], ["updated_at", "2023-02-17 19:38:16.956415"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:16.958252"], ["updated_at", "2023-02-17 19:38:16.958252"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:16.959880"], ["updated_at", "2023-02-17 19:38:16.959880"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:16.961694"], ["updated_at", "2023-02-17 19:38:16.961694"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:16.963419"], ["updated_at", "2023-02-17 19:38:16.963419"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:16.965416"], ["updated_at", "2023-02-17 19:38:16.965416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:16.967014"], ["updated_at", "2023-02-17 19:38:16.967014"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:16.968781"], ["updated_at", "2023-02-17 19:38:16.968781"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:16.970389"], ["updated_at", "2023-02-17 19:38:16.970389"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:16.972315"], ["updated_at", "2023-02-17 19:38:16.972315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:16.974062"], ["updated_at", "2023-02-17 19:38:16.974062"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:16.975900"], ["updated_at", "2023-02-17 19:38:16.975900"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:16.977502"], ["updated_at", "2023-02-17 19:38:16.977502"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:16.979273"], ["updated_at", "2023-02-17 19:38:16.979273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:16.980840"], ["updated_at", "2023-02-17 19:38:16.980840"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:16.982599"], ["updated_at", "2023-02-17 19:38:16.982599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:16.984385"], ["updated_at", "2023-02-17 19:38:16.984385"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:16.986197"], ["updated_at", "2023-02-17 19:38:16.986197"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:16.987816"], ["updated_at", "2023-02-17 19:38:16.987816"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:16.989616"], ["updated_at", "2023-02-17 19:38:16.989616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:16.991197"], ["updated_at", "2023-02-17 19:38:16.991197"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:16.993071"], ["updated_at", "2023-02-17 19:38:16.993071"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:16.994941"], ["updated_at", "2023-02-17 19:38:16.994941"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:16.997396"], ["updated_at", "2023-02-17 19:38:16.997396"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:16.999029"], ["updated_at", "2023-02-17 19:38:16.999029"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:17.000815"], ["updated_at", "2023-02-17 19:38:17.000815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:17.002471"], ["updated_at", "2023-02-17 19:38:17.002471"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:17.004282"], ["updated_at", "2023-02-17 19:38:17.004282"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:17.005899"], ["updated_at", "2023-02-17 19:38:17.005899"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:17.007686"], ["updated_at", "2023-02-17 19:38:17.007686"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:17.009269"], ["updated_at", "2023-02-17 19:38:17.009269"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:17.011081"], ["updated_at", "2023-02-17 19:38:17.011081"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.012692"], ["updated_at", "2023-02-17 19:38:17.012692"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:17.014189"], ["updated_at", "2023-02-17 19:38:17.014189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:17.015395"], ["updated_at", "2023-02-17 19:38:17.015395"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:17.016755"], ["updated_at", "2023-02-17 19:38:17.016755"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:17.018010"], ["updated_at", "2023-02-17 19:38:17.018010"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:17.019441"], ["updated_at", "2023-02-17 19:38:17.019441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.020625"], ["updated_at", "2023-02-17 19:38:17.020625"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:17.022116"], ["updated_at", "2023-02-17 19:38:17.022116"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:17.023397"], ["updated_at", "2023-02-17 19:38:17.023397"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:17.024808"], ["updated_at", "2023-02-17 19:38:17.024808"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:17.026061"], ["updated_at", "2023-02-17 19:38:17.026061"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:17.027454"], ["updated_at", "2023-02-17 19:38:17.027454"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:17.028637"], ["updated_at", "2023-02-17 19:38:17.028637"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:17.030030"], ["updated_at", "2023-02-17 19:38:17.030030"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:17.031216"], ["updated_at", "2023-02-17 19:38:17.031216"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:17.032671"], ["updated_at", "2023-02-17 19:38:17.032671"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:17.033872"], ["updated_at", "2023-02-17 19:38:17.033872"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:17.035254"], ["updated_at", "2023-02-17 19:38:17.035254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.036453"], ["updated_at", "2023-02-17 19:38:17.036453"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:17.037835"], ["updated_at", "2023-02-17 19:38:17.037835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:17.039053"], ["updated_at", "2023-02-17 19:38:17.039053"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:17.040466"], ["updated_at", "2023-02-17 19:38:17.040466"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:17.041669"], ["updated_at", "2023-02-17 19:38:17.041669"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:17.043217"], ["updated_at", "2023-02-17 19:38:17.043217"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:17.044385"], ["updated_at", "2023-02-17 19:38:17.044385"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:17.045743"], ["updated_at", "2023-02-17 19:38:17.045743"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:17.047001"], ["updated_at", "2023-02-17 19:38:17.047001"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:17.048368"], ["updated_at", "2023-02-17 19:38:17.048368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:17.049587"], ["updated_at", "2023-02-17 19:38:17.049587"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:17.050995"], ["updated_at", "2023-02-17 19:38:17.050995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:17.052262"], ["updated_at", "2023-02-17 19:38:17.052262"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:17.053714"], ["updated_at", "2023-02-17 19:38:17.053714"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:17.054803"], ["updated_at", "2023-02-17 19:38:17.054803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:17.056016"], ["updated_at", "2023-02-17 19:38:17.056016"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:17.057432"], ["updated_at", "2023-02-17 19:38:17.057432"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:17.058924"], ["updated_at", "2023-02-17 19:38:17.058924"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:17.060083"], ["updated_at", "2023-02-17 19:38:17.060083"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:17.061124"], ["updated_at", "2023-02-17 19:38:17.061124"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:17.072499"], ["updated_at", "2023-02-17 19:38:17.072499"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:17.073904"], ["updated_at", "2023-02-17 19:38:17.073904"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:17.074951"], ["updated_at", "2023-02-17 19:38:17.074951"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.075823"], ["updated_at", "2023-02-17 19:38:17.075823"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.076629"], ["updated_at", "2023-02-17 19:38:17.076629"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.077372"], ["updated_at", "2023-02-17 19:38:17.077372"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.078086"], ["updated_at", "2023-02-17 19:38:17.078086"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.078803"], ["updated_at", "2023-02-17 19:38:17.078803"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:17.079537"], ["updated_at", "2023-02-17 19:38:17.079537"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.080401"], ["updated_at", "2023-02-17 19:38:17.080401"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.081251"], ["updated_at", "2023-02-17 19:38:17.081251"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.082120"], ["updated_at", "2023-02-17 19:38:17.082120"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.082949"], ["updated_at", "2023-02-17 19:38:17.082949"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.083722"], ["updated_at", "2023-02-17 19:38:17.083722"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.084452"], ["updated_at", "2023-02-17 19:38:17.084452"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.085225"], ["updated_at", "2023-02-17 19:38:17.085225"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.086004"], ["updated_at", "2023-02-17 19:38:17.086004"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.086765"], ["updated_at", "2023-02-17 19:38:17.086765"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.087537"], ["updated_at", "2023-02-17 19:38:17.087537"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.088311"], ["updated_at", "2023-02-17 19:38:17.088311"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.089098"], ["updated_at", "2023-02-17 19:38:17.089098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:17.100567"], ["updated_at", "2023-02-17 19:38:17.100567"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:17.101882"], ["updated_at", "2023-02-17 19:38:17.101882"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:17.102928"], ["updated_at", "2023-02-17 19:38:17.102928"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.103792"], ["updated_at", "2023-02-17 19:38:17.103792"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.104577"], ["updated_at", "2023-02-17 19:38:17.104577"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.105310"], ["updated_at", "2023-02-17 19:38:17.105310"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.106029"], ["updated_at", "2023-02-17 19:38:17.106029"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.106716"], ["updated_at", "2023-02-17 19:38:17.106716"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:17.107490"], ["updated_at", "2023-02-17 19:38:17.107490"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.108360"], ["updated_at", "2023-02-17 19:38:17.108360"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.109226"], ["updated_at", "2023-02-17 19:38:17.109226"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.110017"], ["updated_at", "2023-02-17 19:38:17.110017"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.110787"], ["updated_at", "2023-02-17 19:38:17.110787"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.111547"], ["updated_at", "2023-02-17 19:38:17.111547"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.112379"], ["updated_at", "2023-02-17 19:38:17.112379"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.113231"], ["updated_at", "2023-02-17 19:38:17.113231"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.114176"], ["updated_at", "2023-02-17 19:38:17.114176"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.114953"], ["updated_at", "2023-02-17 19:38:17.114953"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.115719"], ["updated_at", "2023-02-17 19:38:17.115719"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.116538"], ["updated_at", "2023-02-17 19:38:17.116538"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.117357"], ["updated_at", "2023-02-17 19:38:17.117357"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.133559"], ["updated_at", "2023-02-17 19:38:17.133559"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.134716"], ["updated_at", "2023-02-17 19:38:17.134716"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.135597"], ["updated_at", "2023-02-17 19:38:17.135597"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.136327"], ["updated_at", "2023-02-17 19:38:17.136327"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.137137"], ["updated_at", "2023-02-17 19:38:17.137137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.138103"], ["updated_at", "2023-02-17 19:38:17.138103"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.138960"], ["updated_at", "2023-02-17 19:38:17.138960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.139797"], ["updated_at", "2023-02-17 19:38:17.139797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.140533"], ["updated_at", "2023-02-17 19:38:17.140533"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.141257"], ["updated_at", "2023-02-17 19:38:17.141257"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.142004"], ["updated_at", "2023-02-17 19:38:17.142004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.142937"], ["updated_at", "2023-02-17 19:38:17.142937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.143731"], ["updated_at", "2023-02-17 19:38:17.143731"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.144459"], ["updated_at", "2023-02-17 19:38:17.144459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.145202"], ["updated_at", "2023-02-17 19:38:17.145202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.145914"], ["updated_at", "2023-02-17 19:38:17.145914"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.162111"], ["updated_at", "2023-02-17 19:38:17.162111"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.163310"], ["updated_at", "2023-02-17 19:38:17.163310"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.164144"], ["updated_at", "2023-02-17 19:38:17.164144"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.164896"], ["updated_at", "2023-02-17 19:38:17.164896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.165715"], ["updated_at", "2023-02-17 19:38:17.165715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.166477"], ["updated_at", "2023-02-17 19:38:17.166477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.167212"], ["updated_at", "2023-02-17 19:38:17.167212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.167926"], ["updated_at", "2023-02-17 19:38:17.167926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.168639"], ["updated_at", "2023-02-17 19:38:17.168639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.169380"], ["updated_at", "2023-02-17 19:38:17.169380"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.170090"], ["updated_at", "2023-02-17 19:38:17.170090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.170775"], ["updated_at", "2023-02-17 19:38:17.170775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.171468"], ["updated_at", "2023-02-17 19:38:17.171468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.172166"], ["updated_at", "2023-02-17 19:38:17.172166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.173093"], ["updated_at", "2023-02-17 19:38:17.173093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.173861"], ["updated_at", "2023-02-17 19:38:17.173861"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.189894"], ["updated_at", "2023-02-17 19:38:17.189894"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.190954"], ["updated_at", "2023-02-17 19:38:17.190954"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.191788"], ["updated_at", "2023-02-17 19:38:17.191788"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.192600"], ["updated_at", "2023-02-17 19:38:17.192600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.193427"], ["updated_at", "2023-02-17 19:38:17.193427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.194205"], ["updated_at", "2023-02-17 19:38:17.194205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.194985"], ["updated_at", "2023-02-17 19:38:17.194985"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.195781"], ["updated_at", "2023-02-17 19:38:17.195781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.196527"], ["updated_at", "2023-02-17 19:38:17.196527"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.197295"], ["updated_at", "2023-02-17 19:38:17.197295"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.198045"], ["updated_at", "2023-02-17 19:38:17.198045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.198752"], ["updated_at", "2023-02-17 19:38:17.198752"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.199449"], ["updated_at", "2023-02-17 19:38:17.199449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.200151"], ["updated_at", "2023-02-17 19:38:17.200151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.200871"], ["updated_at", "2023-02-17 19:38:17.200871"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.201620"], ["updated_at", "2023-02-17 19:38:17.201620"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.217703"], ["updated_at", "2023-02-17 19:38:17.217703"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.218722"], ["updated_at", "2023-02-17 19:38:17.218722"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.219532"], ["updated_at", "2023-02-17 19:38:17.219532"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.220319"], ["updated_at", "2023-02-17 19:38:17.220319"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.221098"], ["updated_at", "2023-02-17 19:38:17.221098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.221838"], ["updated_at", "2023-02-17 19:38:17.221838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.222666"], ["updated_at", "2023-02-17 19:38:17.222666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.223541"], ["updated_at", "2023-02-17 19:38:17.223541"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.224397"], ["updated_at", "2023-02-17 19:38:17.224397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.225161"], ["updated_at", "2023-02-17 19:38:17.225161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.225887"], ["updated_at", "2023-02-17 19:38:17.225887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.226586"], ["updated_at", "2023-02-17 19:38:17.226586"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.227285"], ["updated_at", "2023-02-17 19:38:17.227285"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.228080"], ["updated_at", "2023-02-17 19:38:17.228080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.228822"], ["updated_at", "2023-02-17 19:38:17.228822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.229554"], ["updated_at", "2023-02-17 19:38:17.229554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.245836"], ["updated_at", "2023-02-17 19:38:17.245836"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.246829"], ["updated_at", "2023-02-17 19:38:17.246829"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.247614"], ["updated_at", "2023-02-17 19:38:17.247614"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.248408"], ["updated_at", "2023-02-17 19:38:17.248408"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.249266"], ["updated_at", "2023-02-17 19:38:17.249266"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.249996"], ["updated_at", "2023-02-17 19:38:17.249996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.250696"], ["updated_at", "2023-02-17 19:38:17.250696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.251404"], ["updated_at", "2023-02-17 19:38:17.251404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.252214"], ["updated_at", "2023-02-17 19:38:17.252214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.253275"], ["updated_at", "2023-02-17 19:38:17.253275"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.254060"], ["updated_at", "2023-02-17 19:38:17.254060"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.254785"], ["updated_at", "2023-02-17 19:38:17.254785"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.255535"], ["updated_at", "2023-02-17 19:38:17.255535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.256304"], ["updated_at", "2023-02-17 19:38:17.256304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.257091"], ["updated_at", "2023-02-17 19:38:17.257091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.257893"], ["updated_at", "2023-02-17 19:38:17.257893"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.279975"], ["updated_at", "2023-02-17 19:38:17.279975"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.280976"], ["updated_at", "2023-02-17 19:38:17.280976"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.281790"], ["updated_at", "2023-02-17 19:38:17.281790"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.282697"], ["updated_at", "2023-02-17 19:38:17.282697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.283479"], ["updated_at", "2023-02-17 19:38:17.283479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.284258"], ["updated_at", "2023-02-17 19:38:17.284258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.284980"], ["updated_at", "2023-02-17 19:38:17.284980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.285694"], ["updated_at", "2023-02-17 19:38:17.285694"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.286476"], ["updated_at", "2023-02-17 19:38:17.286476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.287185"], ["updated_at", "2023-02-17 19:38:17.287185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.287883"], ["updated_at", "2023-02-17 19:38:17.287883"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.288587"], ["updated_at", "2023-02-17 19:38:17.288587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.289300"], ["updated_at", "2023-02-17 19:38:17.289300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.290015"], ["updated_at", "2023-02-17 19:38:17.290015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.290784"], ["updated_at", "2023-02-17 19:38:17.290784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.291517"], ["updated_at", "2023-02-17 19:38:17.291517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:38:17 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:17.300673"], ["updated_at", "2023-02-17 19:38:17.300673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:17.302193"], ["updated_at", "2023-02-17 19:38:17.302193"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:17.305118"], ["updated_at", "2023-02-17 19:38:17.305118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:17.306319"], ["updated_at", "2023-02-17 19:38:17.306319"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:17.309113"], ["updated_at", "2023-02-17 19:38:17.309113"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:17.310289"], ["updated_at", "2023-02-17 19:38:17.310289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:17.312532"], ["updated_at", "2023-02-17 19:38:17.312532"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:17.313982"], ["updated_at", "2023-02-17 19:38:17.313982"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:17.315623"], ["updated_at", "2023-02-17 19:38:17.315623"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:17.316947"], ["updated_at", "2023-02-17 19:38:17.316947"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:17.318356"], ["updated_at", "2023-02-17 19:38:17.318356"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:17.319626"], ["updated_at", "2023-02-17 19:38:17.319626"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:17.321038"], ["updated_at", "2023-02-17 19:38:17.321038"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:17.322310"], ["updated_at", "2023-02-17 19:38:17.322310"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:17.323778"], ["updated_at", "2023-02-17 19:38:17.323778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:17.324985"], ["updated_at", "2023-02-17 19:38:17.324985"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:17.326495"], ["updated_at", "2023-02-17 19:38:17.326495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:17.327974"], ["updated_at", "2023-02-17 19:38:17.327974"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:17.329454"], ["updated_at", "2023-02-17 19:38:17.329454"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:17.330674"], ["updated_at", "2023-02-17 19:38:17.330674"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:17.332167"], ["updated_at", "2023-02-17 19:38:17.332167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:17.333468"], ["updated_at", "2023-02-17 19:38:17.333468"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:17.334865"], ["updated_at", "2023-02-17 19:38:17.334865"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:17.336105"], ["updated_at", "2023-02-17 19:38:17.336105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:17.337555"], ["updated_at", "2023-02-17 19:38:17.337555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:17.338754"], ["updated_at", "2023-02-17 19:38:17.338754"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:17.340251"], ["updated_at", "2023-02-17 19:38:17.340251"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:17.341550"], ["updated_at", "2023-02-17 19:38:17.341550"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:17.343034"], ["updated_at", "2023-02-17 19:38:17.343034"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:17.344286"], ["updated_at", "2023-02-17 19:38:17.344286"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:17.345685"], ["updated_at", "2023-02-17 19:38:17.345685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:17.346877"], ["updated_at", "2023-02-17 19:38:17.346877"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:17.348311"], ["updated_at", "2023-02-17 19:38:17.348311"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:17.349556"], ["updated_at", "2023-02-17 19:38:17.349556"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:17.350953"], ["updated_at", "2023-02-17 19:38:17.350953"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:17.352140"], ["updated_at", "2023-02-17 19:38:17.352140"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:17.353708"], ["updated_at", "2023-02-17 19:38:17.353708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:17.354929"], ["updated_at", "2023-02-17 19:38:17.354929"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:17.356427"], ["updated_at", "2023-02-17 19:38:17.356427"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:17.357765"], ["updated_at", "2023-02-17 19:38:17.357765"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:17.359170"], ["updated_at", "2023-02-17 19:38:17.359170"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:17.360338"], ["updated_at", "2023-02-17 19:38:17.360338"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:17.361791"], ["updated_at", "2023-02-17 19:38:17.361791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.363087"], ["updated_at", "2023-02-17 19:38:17.363087"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:17.364479"], ["updated_at", "2023-02-17 19:38:17.364479"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:17.365784"], ["updated_at", "2023-02-17 19:38:17.365784"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:17.367202"], ["updated_at", "2023-02-17 19:38:17.367202"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:17.368368"], ["updated_at", "2023-02-17 19:38:17.368368"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:17.369865"], ["updated_at", "2023-02-17 19:38:17.369865"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:17.371076"], ["updated_at", "2023-02-17 19:38:17.371076"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:17.372480"], ["updated_at", "2023-02-17 19:38:17.372480"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:17.373830"], ["updated_at", "2023-02-17 19:38:17.373830"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:17.375273"], ["updated_at", "2023-02-17 19:38:17.375273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:17.376461"], ["updated_at", "2023-02-17 19:38:17.376461"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:17.378017"], ["updated_at", "2023-02-17 19:38:17.378017"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:17.379356"], ["updated_at", "2023-02-17 19:38:17.379356"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:17.380792"], ["updated_at", "2023-02-17 19:38:17.380792"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:17.382124"], ["updated_at", "2023-02-17 19:38:17.382124"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:17.383670"], ["updated_at", "2023-02-17 19:38:17.383670"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:17.384845"], ["updated_at", "2023-02-17 19:38:17.384845"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:17.386327"], ["updated_at", "2023-02-17 19:38:17.386327"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:17.387534"], ["updated_at", "2023-02-17 19:38:17.387534"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:17.388885"], ["updated_at", "2023-02-17 19:38:17.388885"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.390161"], ["updated_at", "2023-02-17 19:38:17.390161"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:17.391520"], ["updated_at", "2023-02-17 19:38:17.391520"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:17.392796"], ["updated_at", "2023-02-17 19:38:17.392796"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:17.394269"], ["updated_at", "2023-02-17 19:38:17.394269"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:17.395494"], ["updated_at", "2023-02-17 19:38:17.395494"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:17.396894"], ["updated_at", "2023-02-17 19:38:17.396894"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.398150"], ["updated_at", "2023-02-17 19:38:17.398150"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:17.399571"], ["updated_at", "2023-02-17 19:38:17.399571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:17.400768"], ["updated_at", "2023-02-17 19:38:17.400768"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:17.402183"], ["updated_at", "2023-02-17 19:38:17.402183"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:17.403563"], ["updated_at", "2023-02-17 19:38:17.403563"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:17.404985"], ["updated_at", "2023-02-17 19:38:17.404985"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:17.406244"], ["updated_at", "2023-02-17 19:38:17.406244"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:17.407691"], ["updated_at", "2023-02-17 19:38:17.407691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:17.408860"], ["updated_at", "2023-02-17 19:38:17.408860"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:17.410263"], ["updated_at", "2023-02-17 19:38:17.410263"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:17.411546"], ["updated_at", "2023-02-17 19:38:17.411546"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:17.413018"], ["updated_at", "2023-02-17 19:38:17.413018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.414286"], ["updated_at", "2023-02-17 19:38:17.414286"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:17.415817"], ["updated_at", "2023-02-17 19:38:17.415817"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:17.417034"], ["updated_at", "2023-02-17 19:38:17.417034"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:17.418444"], ["updated_at", "2023-02-17 19:38:17.418444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:17.419745"], ["updated_at", "2023-02-17 19:38:17.419745"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:17.421057"], ["updated_at", "2023-02-17 19:38:17.421057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:17.422264"], ["updated_at", "2023-02-17 19:38:17.422264"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:17.423792"], ["updated_at", "2023-02-17 19:38:17.423792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:17.425000"], ["updated_at", "2023-02-17 19:38:17.425000"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:17.426438"], ["updated_at", "2023-02-17 19:38:17.426438"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:17.427704"], ["updated_at", "2023-02-17 19:38:17.427704"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:17.429095"], ["updated_at", "2023-02-17 19:38:17.429095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:17.430318"], ["updated_at", "2023-02-17 19:38:17.430318"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:17.431779"], ["updated_at", "2023-02-17 19:38:17.431779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:17.432983"], ["updated_at", "2023-02-17 19:38:17.432983"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:17.434237"], ["updated_at", "2023-02-17 19:38:17.434237"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:17.435693"], ["updated_at", "2023-02-17 19:38:17.435693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:17.437219"], ["updated_at", "2023-02-17 19:38:17.437219"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:17.438404"], ["updated_at", "2023-02-17 19:38:17.438404"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:17.439490"], ["updated_at", "2023-02-17 19:38:17.439490"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:17.450772"], ["updated_at", "2023-02-17 19:38:17.450772"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:17.452243"], ["updated_at", "2023-02-17 19:38:17.452243"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:17.453309"], ["updated_at", "2023-02-17 19:38:17.453309"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.454180"], ["updated_at", "2023-02-17 19:38:17.454180"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.454963"], ["updated_at", "2023-02-17 19:38:17.454963"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.455707"], ["updated_at", "2023-02-17 19:38:17.455707"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.456489"], ["updated_at", "2023-02-17 19:38:17.456489"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.457187"], ["updated_at", "2023-02-17 19:38:17.457187"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:17.457953"], ["updated_at", "2023-02-17 19:38:17.457953"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.458817"], ["updated_at", "2023-02-17 19:38:17.458817"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.459706"], ["updated_at", "2023-02-17 19:38:17.459706"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.460541"], ["updated_at", "2023-02-17 19:38:17.460541"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.461318"], ["updated_at", "2023-02-17 19:38:17.461318"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.462203"], ["updated_at", "2023-02-17 19:38:17.462203"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.462972"], ["updated_at", "2023-02-17 19:38:17.462972"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.463758"], ["updated_at", "2023-02-17 19:38:17.463758"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.464578"], ["updated_at", "2023-02-17 19:38:17.464578"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.465325"], ["updated_at", "2023-02-17 19:38:17.465325"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.466084"], ["updated_at", "2023-02-17 19:38:17.466084"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.466842"], ["updated_at", "2023-02-17 19:38:17.466842"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.467597"], ["updated_at", "2023-02-17 19:38:17.467597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:17.479095"], ["updated_at", "2023-02-17 19:38:17.479095"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:17.480358"], ["updated_at", "2023-02-17 19:38:17.480358"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:17.481353"], ["updated_at", "2023-02-17 19:38:17.481353"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.482346"], ["updated_at", "2023-02-17 19:38:17.482346"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.483180"], ["updated_at", "2023-02-17 19:38:17.483180"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.483984"], ["updated_at", "2023-02-17 19:38:17.483984"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.484733"], ["updated_at", "2023-02-17 19:38:17.484733"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.485464"], ["updated_at", "2023-02-17 19:38:17.485464"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:17.486257"], ["updated_at", "2023-02-17 19:38:17.486257"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.487135"], ["updated_at", "2023-02-17 19:38:17.487135"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.487945"], ["updated_at", "2023-02-17 19:38:17.487945"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.488709"], ["updated_at", "2023-02-17 19:38:17.488709"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.489540"], ["updated_at", "2023-02-17 19:38:17.489540"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.490333"], ["updated_at", "2023-02-17 19:38:17.490333"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.491072"], ["updated_at", "2023-02-17 19:38:17.491072"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.491882"], ["updated_at", "2023-02-17 19:38:17.491882"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.492686"], ["updated_at", "2023-02-17 19:38:17.492686"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.493533"], ["updated_at", "2023-02-17 19:38:17.493533"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.494334"], ["updated_at", "2023-02-17 19:38:17.494334"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.495088"], ["updated_at", "2023-02-17 19:38:17.495088"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.495806"], ["updated_at", "2023-02-17 19:38:17.495806"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.512021"], ["updated_at", "2023-02-17 19:38:17.512021"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.513198"], ["updated_at", "2023-02-17 19:38:17.513198"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.514118"], ["updated_at", "2023-02-17 19:38:17.514118"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.514873"], ["updated_at", "2023-02-17 19:38:17.514873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.515652"], ["updated_at", "2023-02-17 19:38:17.515652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.516459"], ["updated_at", "2023-02-17 19:38:17.516459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.517221"], ["updated_at", "2023-02-17 19:38:17.517221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.518020"], ["updated_at", "2023-02-17 19:38:17.518020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.518776"], ["updated_at", "2023-02-17 19:38:17.518776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.519501"], ["updated_at", "2023-02-17 19:38:17.519501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.520219"], ["updated_at", "2023-02-17 19:38:17.520219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.520919"], ["updated_at", "2023-02-17 19:38:17.520919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.521644"], ["updated_at", "2023-02-17 19:38:17.521644"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.522613"], ["updated_at", "2023-02-17 19:38:17.522613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.523332"], ["updated_at", "2023-02-17 19:38:17.523332"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.524063"], ["updated_at", "2023-02-17 19:38:17.524063"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.539997"], ["updated_at", "2023-02-17 19:38:17.539997"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.541054"], ["updated_at", "2023-02-17 19:38:17.541054"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.541901"], ["updated_at", "2023-02-17 19:38:17.541901"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.542842"], ["updated_at", "2023-02-17 19:38:17.542842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.543722"], ["updated_at", "2023-02-17 19:38:17.543722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.544492"], ["updated_at", "2023-02-17 19:38:17.544492"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.545225"], ["updated_at", "2023-02-17 19:38:17.545225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.545954"], ["updated_at", "2023-02-17 19:38:17.545954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.546729"], ["updated_at", "2023-02-17 19:38:17.546729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.547516"], ["updated_at", "2023-02-17 19:38:17.547516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.548236"], ["updated_at", "2023-02-17 19:38:17.548236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.548929"], ["updated_at", "2023-02-17 19:38:17.548929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.549690"], ["updated_at", "2023-02-17 19:38:17.549690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.550699"], ["updated_at", "2023-02-17 19:38:17.550699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.551763"], ["updated_at", "2023-02-17 19:38:17.551763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.552910"], ["updated_at", "2023-02-17 19:38:17.552910"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.570839"], ["updated_at", "2023-02-17 19:38:17.570839"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.571971"], ["updated_at", "2023-02-17 19:38:17.571971"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.573029"], ["updated_at", "2023-02-17 19:38:17.573029"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.573916"], ["updated_at", "2023-02-17 19:38:17.573916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.574816"], ["updated_at", "2023-02-17 19:38:17.574816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.575712"], ["updated_at", "2023-02-17 19:38:17.575712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.576598"], ["updated_at", "2023-02-17 19:38:17.576598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.577436"], ["updated_at", "2023-02-17 19:38:17.577436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.578280"], ["updated_at", "2023-02-17 19:38:17.578280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.579164"], ["updated_at", "2023-02-17 19:38:17.579164"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.580039"], ["updated_at", "2023-02-17 19:38:17.580039"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.580998"], ["updated_at", "2023-02-17 19:38:17.580998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.581891"], ["updated_at", "2023-02-17 19:38:17.581891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.582797"], ["updated_at", "2023-02-17 19:38:17.582797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.583655"], ["updated_at", "2023-02-17 19:38:17.583655"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:17.584585"], ["updated_at", "2023-02-17 19:38:17.584585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.602536"], ["updated_at", "2023-02-17 19:38:17.602536"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.603651"], ["updated_at", "2023-02-17 19:38:17.603651"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.604546"], ["updated_at", "2023-02-17 19:38:17.604546"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.605474"], ["updated_at", "2023-02-17 19:38:17.605474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.606405"], ["updated_at", "2023-02-17 19:38:17.606405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.607261"], ["updated_at", "2023-02-17 19:38:17.607261"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.608057"], ["updated_at", "2023-02-17 19:38:17.608057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.608893"], ["updated_at", "2023-02-17 19:38:17.608893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.609828"], ["updated_at", "2023-02-17 19:38:17.609828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.610705"], ["updated_at", "2023-02-17 19:38:17.610705"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.611532"], ["updated_at", "2023-02-17 19:38:17.611532"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.612381"], ["updated_at", "2023-02-17 19:38:17.612381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.613407"], ["updated_at", "2023-02-17 19:38:17.613407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.614374"], ["updated_at", "2023-02-17 19:38:17.614374"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.615296"], ["updated_at", "2023-02-17 19:38:17.615296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:17.616147"], ["updated_at", "2023-02-17 19:38:17.616147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.632895"], ["updated_at", "2023-02-17 19:38:17.632895"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.634067"], ["updated_at", "2023-02-17 19:38:17.634067"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.634991"], ["updated_at", "2023-02-17 19:38:17.634991"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.635797"], ["updated_at", "2023-02-17 19:38:17.635797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.636836"], ["updated_at", "2023-02-17 19:38:17.636836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.638078"], ["updated_at", "2023-02-17 19:38:17.638078"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.639249"], ["updated_at", "2023-02-17 19:38:17.639249"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.640340"], ["updated_at", "2023-02-17 19:38:17.640340"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.641434"], ["updated_at", "2023-02-17 19:38:17.641434"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.642618"], ["updated_at", "2023-02-17 19:38:17.642618"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.643771"], ["updated_at", "2023-02-17 19:38:17.643771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.644805"], ["updated_at", "2023-02-17 19:38:17.644805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.645855"], ["updated_at", "2023-02-17 19:38:17.645855"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.646877"], ["updated_at", "2023-02-17 19:38:17.646877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.647913"], ["updated_at", "2023-02-17 19:38:17.647913"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:17.648993"], ["updated_at", "2023-02-17 19:38:17.648993"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.668200"], ["updated_at", "2023-02-17 19:38:17.668200"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.669370"], ["updated_at", "2023-02-17 19:38:17.669370"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.670276"], ["updated_at", "2023-02-17 19:38:17.670276"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.671098"], ["updated_at", "2023-02-17 19:38:17.671098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.672069"], ["updated_at", "2023-02-17 19:38:17.672069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.673152"], ["updated_at", "2023-02-17 19:38:17.673152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.674083"], ["updated_at", "2023-02-17 19:38:17.674083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.674974"], ["updated_at", "2023-02-17 19:38:17.674974"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.675907"], ["updated_at", "2023-02-17 19:38:17.675907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.676826"], ["updated_at", "2023-02-17 19:38:17.676826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.677702"], ["updated_at", "2023-02-17 19:38:17.677702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.678545"], ["updated_at", "2023-02-17 19:38:17.678545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.679405"], ["updated_at", "2023-02-17 19:38:17.679405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.680356"], ["updated_at", "2023-02-17 19:38:17.680356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.681283"], ["updated_at", "2023-02-17 19:38:17.681283"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:17.682156"], ["updated_at", "2023-02-17 19:38:17.682156"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:38:17 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 540)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (2.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:38:17.693221"], ["updated_at", "2023-02-17 19:38:17.693221"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:38:17.697049"], ["updated_at", "2023-02-17 19:38:17.697049"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:38:17.702569"], ["updated_at", "2023-02-17 19:38:17.702569"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:38:17.704172"], ["updated_at", "2023-02-17 19:38:17.704172"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:38:17.707985"], ["updated_at", "2023-02-17 19:38:17.707985"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:38:17.709432"], ["updated_at", "2023-02-17 19:38:17.709432"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.6ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:38:17.712044"], ["updated_at", "2023-02-17 19:38:17.712044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:38:17.714427"], ["updated_at", "2023-02-17 19:38:17.714427"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (1.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:38:17.717646"], ["updated_at", "2023-02-17 19:38:17.717646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:38:17.720525"], ["updated_at", "2023-02-17 19:38:17.720525"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:38:17.722366"], ["updated_at", "2023-02-17 19:38:17.722366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:38:17.724272"], ["updated_at", "2023-02-17 19:38:17.724272"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:38:17.726133"], ["updated_at", "2023-02-17 19:38:17.726133"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:38:17.727763"], ["updated_at", "2023-02-17 19:38:17.727763"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:38:17.729678"], ["updated_at", "2023-02-17 19:38:17.729678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:38:17.731295"], ["updated_at", "2023-02-17 19:38:17.731295"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:38:17.733220"], ["updated_at", "2023-02-17 19:38:17.733220"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:38:17.734848"], ["updated_at", "2023-02-17 19:38:17.734848"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:38:17.736655"], ["updated_at", "2023-02-17 19:38:17.736655"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:38:17.738271"], ["updated_at", "2023-02-17 19:38:17.738271"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:38:17.740296"], ["updated_at", "2023-02-17 19:38:17.740296"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:38:17.742168"], ["updated_at", "2023-02-17 19:38:17.742168"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:38:17.744022"], ["updated_at", "2023-02-17 19:38:17.744022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:38:17.745869"], ["updated_at", "2023-02-17 19:38:17.745869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:38:17.747811"], ["updated_at", "2023-02-17 19:38:17.747811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:38:17.749385"], ["updated_at", "2023-02-17 19:38:17.749385"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:38:17.751329"], ["updated_at", "2023-02-17 19:38:17.751329"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:38:17.752956"], ["updated_at", "2023-02-17 19:38:17.752956"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:38:17.754861"], ["updated_at", "2023-02-17 19:38:17.754861"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:38:17.756501"], ["updated_at", "2023-02-17 19:38:17.756501"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:38:17.758792"], ["updated_at", "2023-02-17 19:38:17.758792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:38:17.760518"], ["updated_at", "2023-02-17 19:38:17.760518"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:38:17.762308"], ["updated_at", "2023-02-17 19:38:17.762308"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.4ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:38:17.764239"], ["updated_at", "2023-02-17 19:38:17.764239"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:38:17.766447"], ["updated_at", "2023-02-17 19:38:17.766447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:38:17.768068"], ["updated_at", "2023-02-17 19:38:17.768068"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:38:17.769757"], ["updated_at", "2023-02-17 19:38:17.769757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:38:17.771026"], ["updated_at", "2023-02-17 19:38:17.771026"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:38:17.772538"], ["updated_at", "2023-02-17 19:38:17.772538"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:38:17.774229"], ["updated_at", "2023-02-17 19:38:17.774229"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:38:17.775976"], ["updated_at", "2023-02-17 19:38:17.775976"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:38:17.777624"], ["updated_at", "2023-02-17 19:38:17.777624"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:38:17.779139"], ["updated_at", "2023-02-17 19:38:17.779139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.780529"], ["updated_at", "2023-02-17 19:38:17.780529"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:38:17.781971"], ["updated_at", "2023-02-17 19:38:17.781971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:38:17.783230"], ["updated_at", "2023-02-17 19:38:17.783230"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:38:17.784936"], ["updated_at", "2023-02-17 19:38:17.784936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:38:17.786250"], ["updated_at", "2023-02-17 19:38:17.786250"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:38:17.788212"], ["updated_at", "2023-02-17 19:38:17.788212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:38:17.789881"], ["updated_at", "2023-02-17 19:38:17.789881"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:38:17.791564"], ["updated_at", "2023-02-17 19:38:17.791564"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:38:17.792820"], ["updated_at", "2023-02-17 19:38:17.792820"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:38:17.794681"], ["updated_at", "2023-02-17 19:38:17.794681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:38:17.796058"], ["updated_at", "2023-02-17 19:38:17.796058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:38:17.797607"], ["updated_at", "2023-02-17 19:38:17.797607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:38:17.798877"], ["updated_at", "2023-02-17 19:38:17.798877"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:38:17.800238"], ["updated_at", "2023-02-17 19:38:17.800238"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:38:17.801427"], ["updated_at", "2023-02-17 19:38:17.801427"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:38:17.802816"], ["updated_at", "2023-02-17 19:38:17.802816"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:38:17.804412"], ["updated_at", "2023-02-17 19:38:17.804412"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:38:17.806080"], ["updated_at", "2023-02-17 19:38:17.806080"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:38:17.807309"], ["updated_at", "2023-02-17 19:38:17.807309"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:38:17.808707"], ["updated_at", "2023-02-17 19:38:17.808707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.809902"], ["updated_at", "2023-02-17 19:38:17.809902"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:38:17.811273"], ["updated_at", "2023-02-17 19:38:17.811273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:38:17.812489"], ["updated_at", "2023-02-17 19:38:17.812489"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:38:17.814013"], ["updated_at", "2023-02-17 19:38:17.814013"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:38:17.815394"], ["updated_at", "2023-02-17 19:38:17.815394"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:38:17.816836"], ["updated_at", "2023-02-17 19:38:17.816836"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.818043"], ["updated_at", "2023-02-17 19:38:17.818043"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:38:17.819445"], ["updated_at", "2023-02-17 19:38:17.819445"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:38:17.820688"], ["updated_at", "2023-02-17 19:38:17.820688"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:38:17.822074"], ["updated_at", "2023-02-17 19:38:17.822074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:38:17.823254"], ["updated_at", "2023-02-17 19:38:17.823254"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:38:17.825098"], ["updated_at", "2023-02-17 19:38:17.825098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:38:17.826400"], ["updated_at", "2023-02-17 19:38:17.826400"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:38:17.827796"], ["updated_at", "2023-02-17 19:38:17.827796"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:38:17.829051"], ["updated_at", "2023-02-17 19:38:17.829051"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:38:17.830818"], ["updated_at", "2023-02-17 19:38:17.830818"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:38:17.832363"], ["updated_at", "2023-02-17 19:38:17.832363"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:38:17.834107"], ["updated_at", "2023-02-17 19:38:17.834107"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:38:17.835716"], ["updated_at", "2023-02-17 19:38:17.835716"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:38:17.837234"], ["updated_at", "2023-02-17 19:38:17.837234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:38:17.838665"], ["updated_at", "2023-02-17 19:38:17.838665"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:38:17.840423"], ["updated_at", "2023-02-17 19:38:17.840423"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:38:17.842085"], ["updated_at", "2023-02-17 19:38:17.842085"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:38:17.844050"], ["updated_at", "2023-02-17 19:38:17.844050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:38:17.845853"], ["updated_at", "2023-02-17 19:38:17.845853"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:38:17.847845"], ["updated_at", "2023-02-17 19:38:17.847845"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:38:17.849530"], ["updated_at", "2023-02-17 19:38:17.849530"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:38:17.851368"], ["updated_at", "2023-02-17 19:38:17.851368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:38:17.853008"], ["updated_at", "2023-02-17 19:38:17.853008"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:38:17.854852"], ["updated_at", "2023-02-17 19:38:17.854852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:38:17.856622"], ["updated_at", "2023-02-17 19:38:17.856622"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:38:17.858586"], ["updated_at", "2023-02-17 19:38:17.858586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:38:17.860131"], ["updated_at", "2023-02-17 19:38:17.860131"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:38:17.861896"], ["updated_at", "2023-02-17 19:38:17.861896"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:38:17.864074"], ["updated_at", "2023-02-17 19:38:17.864074"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.5ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:38:17.866061"], ["updated_at", "2023-02-17 19:38:17.866061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:38:17.868258"], ["updated_at", "2023-02-17 19:38:17.868258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:38:17.869778"], ["updated_at", "2023-02-17 19:38:17.869778"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:17.883171"], ["updated_at", "2023-02-17 19:38:17.883171"], ["role_id", 2]]
SurveyQuestion Create (1.3ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:17.885653"], ["updated_at", "2023-02-17 19:38:17.885653"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:17.888160"], ["updated_at", "2023-02-17 19:38:17.888160"]]
QuestionOption Create (0.9ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.889329"], ["updated_at", "2023-02-17 19:38:17.889329"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.891217"], ["updated_at", "2023-02-17 19:38:17.891217"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.892276"], ["updated_at", "2023-02-17 19:38:17.892276"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.893279"], ["updated_at", "2023-02-17 19:38:17.893279"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.894426"], ["updated_at", "2023-02-17 19:38:17.894426"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:17.895741"], ["updated_at", "2023-02-17 19:38:17.895741"]]
LikertScaleQuestion Create (0.9ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.897183"], ["updated_at", "2023-02-17 19:38:17.897183"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.899170"], ["updated_at", "2023-02-17 19:38:17.899170"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.900340"], ["updated_at", "2023-02-17 19:38:17.900340"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.901414"], ["updated_at", "2023-02-17 19:38:17.901414"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.902382"], ["updated_at", "2023-02-17 19:38:17.902382"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.903330"], ["updated_at", "2023-02-17 19:38:17.903330"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.904489"], ["updated_at", "2023-02-17 19:38:17.904489"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.905591"], ["updated_at", "2023-02-17 19:38:17.905591"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.906548"], ["updated_at", "2023-02-17 19:38:17.906548"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.907465"], ["updated_at", "2023-02-17 19:38:17.907465"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.908541"], ["updated_at", "2023-02-17 19:38:17.908541"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.909563"], ["updated_at", "2023-02-17 19:38:17.909563"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:38:17.922600"], ["updated_at", "2023-02-17 19:38:17.922600"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:38:17.924289"], ["updated_at", "2023-02-17 19:38:17.924289"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:38:17.925565"], ["updated_at", "2023-02-17 19:38:17.925565"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.926647"], ["updated_at", "2023-02-17 19:38:17.926647"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.927846"], ["updated_at", "2023-02-17 19:38:17.927846"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.928918"], ["updated_at", "2023-02-17 19:38:17.928918"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.929878"], ["updated_at", "2023-02-17 19:38:17.929878"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:38:17.930802"], ["updated_at", "2023-02-17 19:38:17.930802"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:38:17.931814"], ["updated_at", "2023-02-17 19:38:17.931814"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.932937"], ["updated_at", "2023-02-17 19:38:17.932937"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.934177"], ["updated_at", "2023-02-17 19:38:17.934177"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.935215"], ["updated_at", "2023-02-17 19:38:17.935215"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.936125"], ["updated_at", "2023-02-17 19:38:17.936125"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.937063"], ["updated_at", "2023-02-17 19:38:17.937063"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.938137"], ["updated_at", "2023-02-17 19:38:17.938137"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.939146"], ["updated_at", "2023-02-17 19:38:17.939146"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.940113"], ["updated_at", "2023-02-17 19:38:17.940113"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.941218"], ["updated_at", "2023-02-17 19:38:17.941218"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.942168"], ["updated_at", "2023-02-17 19:38:17.942168"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.942992"], ["updated_at", "2023-02-17 19:38:17.942992"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:38:17.943825"], ["updated_at", "2023-02-17 19:38:17.943825"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.961074"], ["updated_at", "2023-02-17 19:38:17.961074"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.962290"], ["updated_at", "2023-02-17 19:38:17.962290"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.963225"], ["updated_at", "2023-02-17 19:38:17.963225"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.964004"], ["updated_at", "2023-02-17 19:38:17.964004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.964831"], ["updated_at", "2023-02-17 19:38:17.964831"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.965693"], ["updated_at", "2023-02-17 19:38:17.965693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.966514"], ["updated_at", "2023-02-17 19:38:17.966514"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.967273"], ["updated_at", "2023-02-17 19:38:17.967273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.968015"], ["updated_at", "2023-02-17 19:38:17.968015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.968734"], ["updated_at", "2023-02-17 19:38:17.968734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.969455"], ["updated_at", "2023-02-17 19:38:17.969455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.970219"], ["updated_at", "2023-02-17 19:38:17.970219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.971039"], ["updated_at", "2023-02-17 19:38:17.971039"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.971775"], ["updated_at", "2023-02-17 19:38:17.971775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.972522"], ["updated_at", "2023-02-17 19:38:17.972522"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:38:17.973257"], ["updated_at", "2023-02-17 19:38:17.973257"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:17.989694"], ["updated_at", "2023-02-17 19:38:17.989694"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:17.990773"], ["updated_at", "2023-02-17 19:38:17.990773"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:17.991637"], ["updated_at", "2023-02-17 19:38:17.991637"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:17.992422"], ["updated_at", "2023-02-17 19:38:17.992422"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.993260"], ["updated_at", "2023-02-17 19:38:17.993260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.994064"], ["updated_at", "2023-02-17 19:38:17.994064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.995130"], ["updated_at", "2023-02-17 19:38:17.995130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.996174"], ["updated_at", "2023-02-17 19:38:17.996174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.997197"], ["updated_at", "2023-02-17 19:38:17.997197"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.998033"], ["updated_at", "2023-02-17 19:38:17.998033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.998879"], ["updated_at", "2023-02-17 19:38:17.998879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:17.999739"], ["updated_at", "2023-02-17 19:38:17.999739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:18.000567"], ["updated_at", "2023-02-17 19:38:18.000567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:18.001352"], ["updated_at", "2023-02-17 19:38:18.001352"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:18.002061"], ["updated_at", "2023-02-17 19:38:18.002061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:38:18.002791"], ["updated_at", "2023-02-17 19:38:18.002791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:18.019870"], ["updated_at", "2023-02-17 19:38:18.019870"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:18.020930"], ["updated_at", "2023-02-17 19:38:18.020930"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:18.021760"], ["updated_at", "2023-02-17 19:38:18.021760"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:18.022487"], ["updated_at", "2023-02-17 19:38:18.022487"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.023317"], ["updated_at", "2023-02-17 19:38:18.023317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.024181"], ["updated_at", "2023-02-17 19:38:18.024181"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.025012"], ["updated_at", "2023-02-17 19:38:18.025012"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.025822"], ["updated_at", "2023-02-17 19:38:18.025822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.026736"], ["updated_at", "2023-02-17 19:38:18.026736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.027521"], ["updated_at", "2023-02-17 19:38:18.027521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.028280"], ["updated_at", "2023-02-17 19:38:18.028280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.029060"], ["updated_at", "2023-02-17 19:38:18.029060"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.029826"], ["updated_at", "2023-02-17 19:38:18.029826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.030568"], ["updated_at", "2023-02-17 19:38:18.030568"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.031297"], ["updated_at", "2023-02-17 19:38:18.031297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:38:18.032017"], ["updated_at", "2023-02-17 19:38:18.032017"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:18.048796"], ["updated_at", "2023-02-17 19:38:18.048796"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:18.049865"], ["updated_at", "2023-02-17 19:38:18.049865"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:18.050860"], ["updated_at", "2023-02-17 19:38:18.050860"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:18.051643"], ["updated_at", "2023-02-17 19:38:18.051643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.052436"], ["updated_at", "2023-02-17 19:38:18.052436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.053209"], ["updated_at", "2023-02-17 19:38:18.053209"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.053977"], ["updated_at", "2023-02-17 19:38:18.053977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.054816"], ["updated_at", "2023-02-17 19:38:18.054816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.055592"], ["updated_at", "2023-02-17 19:38:18.055592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.056339"], ["updated_at", "2023-02-17 19:38:18.056339"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.057091"], ["updated_at", "2023-02-17 19:38:18.057091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.057902"], ["updated_at", "2023-02-17 19:38:18.057902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.058724"], ["updated_at", "2023-02-17 19:38:18.058724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.059531"], ["updated_at", "2023-02-17 19:38:18.059531"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.060269"], ["updated_at", "2023-02-17 19:38:18.060269"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:38:18.060991"], ["updated_at", "2023-02-17 19:38:18.060991"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:18.077998"], ["updated_at", "2023-02-17 19:38:18.077998"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:18.079025"], ["updated_at", "2023-02-17 19:38:18.079025"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:18.079894"], ["updated_at", "2023-02-17 19:38:18.079894"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:18.080663"], ["updated_at", "2023-02-17 19:38:18.080663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.081461"], ["updated_at", "2023-02-17 19:38:18.081461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.082243"], ["updated_at", "2023-02-17 19:38:18.082243"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.082990"], ["updated_at", "2023-02-17 19:38:18.082990"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.083778"], ["updated_at", "2023-02-17 19:38:18.083778"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.084598"], ["updated_at", "2023-02-17 19:38:18.084598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.085361"], ["updated_at", "2023-02-17 19:38:18.085361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.086096"], ["updated_at", "2023-02-17 19:38:18.086096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.086857"], ["updated_at", "2023-02-17 19:38:18.086857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.087830"], ["updated_at", "2023-02-17 19:38:18.087830"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.088761"], ["updated_at", "2023-02-17 19:38:18.088761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.089600"], ["updated_at", "2023-02-17 19:38:18.089600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:38:18.090370"], ["updated_at", "2023-02-17 19:38:18.090370"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:38:18.107082"], ["updated_at", "2023-02-17 19:38:18.107082"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:38:18.108129"], ["updated_at", "2023-02-17 19:38:18.108129"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:38:18.108997"], ["updated_at", "2023-02-17 19:38:18.108997"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:38:18.109796"], ["updated_at", "2023-02-17 19:38:18.109796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.110608"], ["updated_at", "2023-02-17 19:38:18.110608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.111359"], ["updated_at", "2023-02-17 19:38:18.111359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.112097"], ["updated_at", "2023-02-17 19:38:18.112097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.112874"], ["updated_at", "2023-02-17 19:38:18.112874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.113696"], ["updated_at", "2023-02-17 19:38:18.113696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.114740"], ["updated_at", "2023-02-17 19:38:18.114740"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.115752"], ["updated_at", "2023-02-17 19:38:18.115752"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.116540"], ["updated_at", "2023-02-17 19:38:18.116540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.117361"], ["updated_at", "2023-02-17 19:38:18.117361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.118128"], ["updated_at", "2023-02-17 19:38:18.118128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.118866"], ["updated_at", "2023-02-17 19:38:18.118866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:38:18.119606"], ["updated_at", "2023-02-17 19:38:18.119606"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:38:18 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 389)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:38:18 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:38:18 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.4ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.5ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:12.697994"], ["updated_at", "2023-02-17 19:40:12.697994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
 (0.9ms)  SELECT sqlite_version(*)
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
ActiveRecord::InternalMetadata Pluck (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:12.714172"], ["updated_at", "2023-02-17 19:40:12.714172"]]
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:40:12.720412"], ["updated_at", "2023-02-17 19:40:12.720412"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:12.730853"], ["updated_at", "2023-02-17 19:40:12.730853"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:12.739057"], ["updated_at", "2023-02-17 19:40:12.739057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:40:12.742789"], ["updated_at", "2023-02-17 19:40:12.742789"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:12.745203"], ["updated_at", "2023-02-17 19:40:12.745203"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 58ms (Views: 0.2ms | ActiveRecord: 5.6ms | Allocations: 28612)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.2ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:40:12.763139"], ["updated_at", "2023-02-17 19:40:12.763139"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 11ms (Views: 6.3ms | ActiveRecord: 0.9ms | Allocations: 4603)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055bb242674f8>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms | Allocations: 658)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.3ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#index as HTML

Parameters: {"id"=>"1"}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 217)

Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:12.847500"], ["updated_at", "2023-02-17 19:40:12.847500"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:12.849322"], ["updated_at", "2023-02-17 19:40:12.849322"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:12.853441"], ["updated_at", "2023-02-17 19:40:12.853441"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:12.854725"], ["updated_at", "2023-02-17 19:40:12.854725"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:12.857821"], ["updated_at", "2023-02-17 19:40:12.857821"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:12.859110"], ["updated_at", "2023-02-17 19:40:12.859110"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:12.861429"], ["updated_at", "2023-02-17 19:40:12.861429"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:12.863306"], ["updated_at", "2023-02-17 19:40:12.863306"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:12.865073"], ["updated_at", "2023-02-17 19:40:12.865073"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:12.866470"], ["updated_at", "2023-02-17 19:40:12.866470"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:12.868307"], ["updated_at", "2023-02-17 19:40:12.868307"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:12.869940"], ["updated_at", "2023-02-17 19:40:12.869940"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:12.871762"], ["updated_at", "2023-02-17 19:40:12.871762"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:12.873363"], ["updated_at", "2023-02-17 19:40:12.873363"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:12.875176"], ["updated_at", "2023-02-17 19:40:12.875176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:12.876390"], ["updated_at", "2023-02-17 19:40:12.876390"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:12.877766"], ["updated_at", "2023-02-17 19:40:12.877766"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:12.879567"], ["updated_at", "2023-02-17 19:40:12.879567"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:12.881112"], ["updated_at", "2023-02-17 19:40:12.881112"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:12.882764"], ["updated_at", "2023-02-17 19:40:12.882764"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:12.884881"], ["updated_at", "2023-02-17 19:40:12.884881"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:12.887206"], ["updated_at", "2023-02-17 19:40:12.887206"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:12.889447"], ["updated_at", "2023-02-17 19:40:12.889447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:12.890873"], ["updated_at", "2023-02-17 19:40:12.890873"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:12.892653"], ["updated_at", "2023-02-17 19:40:12.892653"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:12.894193"], ["updated_at", "2023-02-17 19:40:12.894193"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:12.895821"], ["updated_at", "2023-02-17 19:40:12.895821"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:12.897425"], ["updated_at", "2023-02-17 19:40:12.897425"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:12.898915"], ["updated_at", "2023-02-17 19:40:12.898915"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:12.900498"], ["updated_at", "2023-02-17 19:40:12.900498"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms | Allocations: 409)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:12.902038"], ["updated_at", "2023-02-17 19:40:12.902038"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:12.903866"], ["updated_at", "2023-02-17 19:40:12.903866"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:12.905767"], ["updated_at", "2023-02-17 19:40:12.905767"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:12.907383"], ["updated_at", "2023-02-17 19:40:12.907383"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:12.908953"], ["updated_at", "2023-02-17 19:40:12.908953"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:12.910168"], ["updated_at", "2023-02-17 19:40:12.910168"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:12.911723"], ["updated_at", "2023-02-17 19:40:12.911723"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:12.913418"], ["updated_at", "2023-02-17 19:40:12.913418"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:12.915311"], ["updated_at", "2023-02-17 19:40:12.915311"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:12.916658"], ["updated_at", "2023-02-17 19:40:12.916658"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:12.918146"], ["updated_at", "2023-02-17 19:40:12.918146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:12.919562"], ["updated_at", "2023-02-17 19:40:12.919562"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:12.921057"], ["updated_at", "2023-02-17 19:40:12.921057"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:12.922625"], ["updated_at", "2023-02-17 19:40:12.922625"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:12.924215"], ["updated_at", "2023-02-17 19:40:12.924215"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:12.925470"], ["updated_at", "2023-02-17 19:40:12.925470"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:12.927046"], ["updated_at", "2023-02-17 19:40:12.927046"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:12.928325"], ["updated_at", "2023-02-17 19:40:12.928325"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:12.930096"], ["updated_at", "2023-02-17 19:40:12.930096"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:12.931397"], ["updated_at", "2023-02-17 19:40:12.931397"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:12.933056"], ["updated_at", "2023-02-17 19:40:12.933056"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:12.934627"], ["updated_at", "2023-02-17 19:40:12.934627"], ["role_id", 34]]

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:12.936338"], ["updated_at", "2023-02-17 19:40:12.936338"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:12.937921"], ["updated_at", "2023-02-17 19:40:12.937921"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:12.939416"], ["updated_at", "2023-02-17 19:40:12.939416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:12.940790"], ["updated_at", "2023-02-17 19:40:12.940790"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:12.942269"], ["updated_at", "2023-02-17 19:40:12.942269"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:12.943660"], ["updated_at", "2023-02-17 19:40:12.943660"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:12.945425"], ["updated_at", "2023-02-17 19:40:12.945425"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:12.945246"], ["updated_at", "2023-02-17 19:40:12.945246"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.3ms | Allocations: 6161)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:12.946690"], ["updated_at", "2023-02-17 19:40:12.946690"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:12.948015"], ["updated_at", "2023-02-17 19:40:12.948015"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:12.949500"], ["updated_at", "2023-02-17 19:40:12.949500"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:12.950935"], ["updated_at", "2023-02-17 19:40:12.950935"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:12.952461"], ["updated_at", "2023-02-17 19:40:12.952461"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:12.954163"], ["updated_at", "2023-02-17 19:40:12.954163"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:12.955379"], ["updated_at", "2023-02-17 19:40:12.955379"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:12.956893"], ["updated_at", "2023-02-17 19:40:12.956893"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:12.958178"], ["updated_at", "2023-02-17 19:40:12.958178"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:12.959717"], ["updated_at", "2023-02-17 19:40:12.959717"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:12.961298"], ["updated_at", "2023-02-17 19:40:12.961298"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:12.962880"], ["updated_at", "2023-02-17 19:40:12.962880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:12.964263"], ["updated_at", "2023-02-17 19:40:12.964263"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:12.965792"], ["updated_at", "2023-02-17 19:40:12.965792"]]
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:12.967184"], ["updated_at", "2023-02-17 19:40:12.967184"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:12.968826"], ["updated_at", "2023-02-17 19:40:12.968826"]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:40:12.968569"], ["updated_at", "2023-02-17 19:40:12.968569"], ["role_id", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.9ms | Allocations: 5710)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:12.970288"], ["updated_at", "2023-02-17 19:40:12.970288"], ["role_id", 34]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:12.971906"], ["updated_at", "2023-02-17 19:40:12.971906"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000056332d52c798>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:12.973320"], ["updated_at", "2023-02-17 19:40:12.973320"], ["role_id", 34]]

Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:12.975051"], ["updated_at", "2023-02-17 19:40:12.975051"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:12.976529"], ["updated_at", "2023-02-17 19:40:12.976529"], ["role_id", 34]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:12.978024"], ["updated_at", "2023-02-17 19:40:12.978024"]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:12.979390"], ["updated_at", "2023-02-17 19:40:12.979390"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:12.980795"], ["updated_at", "2023-02-17 19:40:12.980795"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:12.982083"], ["updated_at", "2023-02-17 19:40:12.982083"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:12.983977"], ["updated_at", "2023-02-17 19:40:12.983977"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:12.985274"], ["updated_at", "2023-02-17 19:40:12.985274"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:12.986933"], ["updated_at", "2023-02-17 19:40:12.986933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:12.988155"], ["updated_at", "2023-02-17 19:40:12.988155"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.4ms | Allocations: 3025)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:12.991579"], ["updated_at", "2023-02-17 19:40:12.991579"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:12.996885"], ["updated_at", "2023-02-17 19:40:12.996885"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:12.998834"], ["updated_at", "2023-02-17 19:40:12.998834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:13.001402"], ["updated_at", "2023-02-17 19:40:13.001402"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:13.004432"], ["updated_at", "2023-02-17 19:40:13.004432"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:13.008974"], ["updated_at", "2023-02-17 19:40:13.008974"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:13.011974"], ["updated_at", "2023-02-17 19:40:13.011974"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:13.014158"], ["updated_at", "2023-02-17 19:40:13.014158"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:13.016275"], ["updated_at", "2023-02-17 19:40:13.016275"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:13.018655"], ["updated_at", "2023-02-17 19:40:13.018655"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#index as HTML

Parameters: {"id"=>"1"}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 217)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.6ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:13.024782"], ["updated_at", "2023-02-17 19:40:13.024782"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Create (0.3ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:13.027302"], ["updated_at", "2023-02-17 19:40:13.027302"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:13.029324"], ["updated_at", "2023-02-17 19:40:13.029324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.7ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:13.066054"], ["updated_at", "2023-02-17 19:40:13.066054"], ["role_id", 2]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Create (1.6ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:13.069606"], ["updated_at", "2023-02-17 19:40:13.069606"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:13.072852"], ["updated_at", "2023-02-17 19:40:13.072852"]]
QuestionOption Create (1.0ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.074386"], ["updated_at", "2023-02-17 19:40:13.074386"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.076299"], ["updated_at", "2023-02-17 19:40:13.076299"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.077213"], ["updated_at", "2023-02-17 19:40:13.077213"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.078028"], ["updated_at", "2023-02-17 19:40:13.078028"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.079449"], ["updated_at", "2023-02-17 19:40:13.079449"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:13.080817"], ["updated_at", "2023-02-17 19:40:13.080817"]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
LikertScaleQuestion Create (1.4ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.082382"], ["updated_at", "2023-02-17 19:40:13.082382"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.085271"], ["updated_at", "2023-02-17 19:40:13.085271"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.087018"], ["updated_at", "2023-02-17 19:40:13.087018"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.088250"], ["updated_at", "2023-02-17 19:40:13.088250"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.089422"], ["updated_at", "2023-02-17 19:40:13.089422"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.090716"], ["updated_at", "2023-02-17 19:40:13.090716"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.092270"], ["updated_at", "2023-02-17 19:40:13.092270"]]
LikertScaleQuestion Create (0.5ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.093804"], ["updated_at", "2023-02-17 19:40:13.093804"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.095707"], ["updated_at", "2023-02-17 19:40:13.095707"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.096874"], ["updated_at", "2023-02-17 19:40:13.096874"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.098044"], ["updated_at", "2023-02-17 19:40:13.098044"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.099596"], ["updated_at", "2023-02-17 19:40:13.099596"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 24ms (Views: 0.2ms | ActiveRecord: 0.8ms | Allocations: 6053)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:13.115474"], ["updated_at", "2023-02-17 19:40:13.115474"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:13.117352"], ["updated_at", "2023-02-17 19:40:13.117352"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:13.118647"], ["updated_at", "2023-02-17 19:40:13.118647"]]
TRANSACTION (0.1ms)  begin transaction
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.119781"], ["updated_at", "2023-02-17 19:40:13.119781"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.121053"], ["updated_at", "2023-02-17 19:40:13.121053"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.122221"], ["updated_at", "2023-02-17 19:40:13.122221"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:13.123203"], ["updated_at", "2023-02-17 19:40:13.123203"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.123597"], ["updated_at", "2023-02-17 19:40:13.123597"]]
TRANSACTION (0.1ms)  begin transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.125321"], ["updated_at", "2023-02-17 19:40:13.125321"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:13.126465"], ["updated_at", "2023-02-17 19:40:13.126465"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.127679"], ["updated_at", "2023-02-17 19:40:13.127679"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:13.128091"], ["updated_at", "2023-02-17 19:40:13.128091"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.128836"], ["updated_at", "2023-02-17 19:40:13.128836"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.130089"], ["updated_at", "2023-02-17 19:40:13.130089"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.131138"], ["updated_at", "2023-02-17 19:40:13.131138"]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.132259"], ["updated_at", "2023-02-17 19:40:13.132259"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:13.132878"], ["updated_at", "2023-02-17 19:40:13.132878"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.133669"], ["updated_at", "2023-02-17 19:40:13.133669"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.135145"], ["updated_at", "2023-02-17 19:40:13.135145"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.136431"], ["updated_at", "2023-02-17 19:40:13.136431"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.137409"], ["updated_at", "2023-02-17 19:40:13.137409"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.138587"], ["updated_at", "2023-02-17 19:40:13.138587"]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:13.138799"], ["updated_at", "2023-02-17 19:40:13.138799"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.139886"], ["updated_at", "2023-02-17 19:40:13.139886"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.141020"], ["updated_at", "2023-02-17 19:40:13.141020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:13.143534"], ["updated_at", "2023-02-17 19:40:13.143534"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:13.148329"], ["updated_at", "2023-02-17 19:40:13.148329"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:13.153445"], ["updated_at", "2023-02-17 19:40:13.153445"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:13.158357"], ["updated_at", "2023-02-17 19:40:13.158357"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:40:13 -0300

Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 175)

LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.7ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.181369"], ["updated_at", "2023-02-17 19:40:13.181369"]]

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:40:13 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
QuestionAnswer Create (1.5ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.184323"], ["updated_at", "2023-02-17 19:40:13.184323"]]

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 180)

QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.187163"], ["updated_at", "2023-02-17 19:40:13.187163"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.188129"], ["updated_at", "2023-02-17 19:40:13.188129"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
LikertScaleAnswer Create (1.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.189210"], ["updated_at", "2023-02-17 19:40:13.189210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.191543"], ["updated_at", "2023-02-17 19:40:13.191543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.192495"], ["updated_at", "2023-02-17 19:40:13.192495"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.193410"], ["updated_at", "2023-02-17 19:40:13.193410"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.194589"], ["updated_at", "2023-02-17 19:40:13.194589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.196472"], ["updated_at", "2023-02-17 19:40:13.196472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.197596"], ["updated_at", "2023-02-17 19:40:13.197596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.198449"], ["updated_at", "2023-02-17 19:40:13.198449"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.199298"], ["updated_at", "2023-02-17 19:40:13.199298"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.200132"], ["updated_at", "2023-02-17 19:40:13.200132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.201000"], ["updated_at", "2023-02-17 19:40:13.201000"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.201718"], ["updated_at", "2023-02-17 19:40:13.201718"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.220601"], ["updated_at", "2023-02-17 19:40:13.220601"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.221669"], ["updated_at", "2023-02-17 19:40:13.221669"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.222472"], ["updated_at", "2023-02-17 19:40:13.222472"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.223228"], ["updated_at", "2023-02-17 19:40:13.223228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.224145"], ["updated_at", "2023-02-17 19:40:13.224145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.225214"], ["updated_at", "2023-02-17 19:40:13.225214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.225982"], ["updated_at", "2023-02-17 19:40:13.225982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.226699"], ["updated_at", "2023-02-17 19:40:13.226699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.227368"], ["updated_at", "2023-02-17 19:40:13.227368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.228033"], ["updated_at", "2023-02-17 19:40:13.228033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.228757"], ["updated_at", "2023-02-17 19:40:13.228757"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.229523"], ["updated_at", "2023-02-17 19:40:13.229523"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.230271"], ["updated_at", "2023-02-17 19:40:13.230271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.230956"], ["updated_at", "2023-02-17 19:40:13.230956"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.231629"], ["updated_at", "2023-02-17 19:40:13.231629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.232325"], ["updated_at", "2023-02-17 19:40:13.232325"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.248557"], ["updated_at", "2023-02-17 19:40:13.248557"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.250552"], ["updated_at", "2023-02-17 19:40:13.250552"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.251386"], ["updated_at", "2023-02-17 19:40:13.251386"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.252137"], ["updated_at", "2023-02-17 19:40:13.252137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.252916"], ["updated_at", "2023-02-17 19:40:13.252916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.253728"], ["updated_at", "2023-02-17 19:40:13.253728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.254491"], ["updated_at", "2023-02-17 19:40:13.254491"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.255239"], ["updated_at", "2023-02-17 19:40:13.255239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.255960"], ["updated_at", "2023-02-17 19:40:13.255960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.256634"], ["updated_at", "2023-02-17 19:40:13.256634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.257357"], ["updated_at", "2023-02-17 19:40:13.257357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.258068"], ["updated_at", "2023-02-17 19:40:13.258068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.258830"], ["updated_at", "2023-02-17 19:40:13.258830"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.259595"], ["updated_at", "2023-02-17 19:40:13.259595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.260294"], ["updated_at", "2023-02-17 19:40:13.260294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.261281"], ["updated_at", "2023-02-17 19:40:13.261281"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.277518"], ["updated_at", "2023-02-17 19:40:13.277518"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.278622"], ["updated_at", "2023-02-17 19:40:13.278622"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.279405"], ["updated_at", "2023-02-17 19:40:13.279405"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.280242"], ["updated_at", "2023-02-17 19:40:13.280242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.281191"], ["updated_at", "2023-02-17 19:40:13.281191"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.281991"], ["updated_at", "2023-02-17 19:40:13.281991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.282729"], ["updated_at", "2023-02-17 19:40:13.282729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.283440"], ["updated_at", "2023-02-17 19:40:13.283440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.284210"], ["updated_at", "2023-02-17 19:40:13.284210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.284931"], ["updated_at", "2023-02-17 19:40:13.284931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.285647"], ["updated_at", "2023-02-17 19:40:13.285647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.286357"], ["updated_at", "2023-02-17 19:40:13.286357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.287125"], ["updated_at", "2023-02-17 19:40:13.287125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.287915"], ["updated_at", "2023-02-17 19:40:13.287915"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.288676"], ["updated_at", "2023-02-17 19:40:13.288676"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.289414"], ["updated_at", "2023-02-17 19:40:13.289414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.305591"], ["updated_at", "2023-02-17 19:40:13.305591"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.306744"], ["updated_at", "2023-02-17 19:40:13.306744"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.307561"], ["updated_at", "2023-02-17 19:40:13.307561"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.308295"], ["updated_at", "2023-02-17 19:40:13.308295"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.309093"], ["updated_at", "2023-02-17 19:40:13.309093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.309878"], ["updated_at", "2023-02-17 19:40:13.309878"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.310639"], ["updated_at", "2023-02-17 19:40:13.310639"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.311557"], ["updated_at", "2023-02-17 19:40:13.311557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.312705"], ["updated_at", "2023-02-17 19:40:13.312705"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.313568"], ["updated_at", "2023-02-17 19:40:13.313568"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.314322"], ["updated_at", "2023-02-17 19:40:13.314322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.315048"], ["updated_at", "2023-02-17 19:40:13.315048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.315766"], ["updated_at", "2023-02-17 19:40:13.315766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.316724"], ["updated_at", "2023-02-17 19:40:13.316724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.317762"], ["updated_at", "2023-02-17 19:40:13.317762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.318527"], ["updated_at", "2023-02-17 19:40:13.318527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.334982"], ["updated_at", "2023-02-17 19:40:13.334982"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.335971"], ["updated_at", "2023-02-17 19:40:13.335971"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.336743"], ["updated_at", "2023-02-17 19:40:13.336743"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.337456"], ["updated_at", "2023-02-17 19:40:13.337456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.338219"], ["updated_at", "2023-02-17 19:40:13.338219"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.339033"], ["updated_at", "2023-02-17 19:40:13.339033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.339804"], ["updated_at", "2023-02-17 19:40:13.339804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.340536"], ["updated_at", "2023-02-17 19:40:13.340536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.341347"], ["updated_at", "2023-02-17 19:40:13.341347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.342084"], ["updated_at", "2023-02-17 19:40:13.342084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.342810"], ["updated_at", "2023-02-17 19:40:13.342810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.343521"], ["updated_at", "2023-02-17 19:40:13.343521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.344239"], ["updated_at", "2023-02-17 19:40:13.344239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.344967"], ["updated_at", "2023-02-17 19:40:13.344967"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.345730"], ["updated_at", "2023-02-17 19:40:13.345730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.346507"], ["updated_at", "2023-02-17 19:40:13.346507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:40:13 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms | Allocations: 3125)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:13.371143"], ["updated_at", "2023-02-17 19:40:13.371143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:13.372632"], ["updated_at", "2023-02-17 19:40:13.372632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:13.375515"], ["updated_at", "2023-02-17 19:40:13.375515"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:13.376734"], ["updated_at", "2023-02-17 19:40:13.376734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:13.379547"], ["updated_at", "2023-02-17 19:40:13.379547"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:13.380755"], ["updated_at", "2023-02-17 19:40:13.380755"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:13.383193"], ["updated_at", "2023-02-17 19:40:13.383193"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:13.384963"], ["updated_at", "2023-02-17 19:40:13.384963"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:13.386749"], ["updated_at", "2023-02-17 19:40:13.386749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:13.388078"], ["updated_at", "2023-02-17 19:40:13.388078"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:13.389520"], ["updated_at", "2023-02-17 19:40:13.389520"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:13.390718"], ["updated_at", "2023-02-17 19:40:13.390718"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:13.392288"], ["updated_at", "2023-02-17 19:40:13.392288"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:13.393676"], ["updated_at", "2023-02-17 19:40:13.393676"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:13.395260"], ["updated_at", "2023-02-17 19:40:13.395260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:13.396578"], ["updated_at", "2023-02-17 19:40:13.396578"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:13.397984"], ["updated_at", "2023-02-17 19:40:13.397984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:13.399296"], ["updated_at", "2023-02-17 19:40:13.399296"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:13.400989"], ["updated_at", "2023-02-17 19:40:13.400989"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:13.402497"], ["updated_at", "2023-02-17 19:40:13.402497"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:13.404107"], ["updated_at", "2023-02-17 19:40:13.404107"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:13.405366"], ["updated_at", "2023-02-17 19:40:13.405366"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:13.406805"], ["updated_at", "2023-02-17 19:40:13.406805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:13.408013"], ["updated_at", "2023-02-17 19:40:13.408013"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:13.409402"], ["updated_at", "2023-02-17 19:40:13.409402"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:13.410656"], ["updated_at", "2023-02-17 19:40:13.410656"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:13.412406"], ["updated_at", "2023-02-17 19:40:13.412406"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:13.414652"], ["updated_at", "2023-02-17 19:40:13.414652"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:13.416431"], ["updated_at", "2023-02-17 19:40:13.416431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:13.417809"], ["updated_at", "2023-02-17 19:40:13.417809"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:13.419385"], ["updated_at", "2023-02-17 19:40:13.419385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:13.420645"], ["updated_at", "2023-02-17 19:40:13.420645"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:13.422232"], ["updated_at", "2023-02-17 19:40:13.422232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:13.423505"], ["updated_at", "2023-02-17 19:40:13.423505"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:13.424899"], ["updated_at", "2023-02-17 19:40:13.424899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:13.426180"], ["updated_at", "2023-02-17 19:40:13.426180"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:13.427940"], ["updated_at", "2023-02-17 19:40:13.427940"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:13.429232"], ["updated_at", "2023-02-17 19:40:13.429232"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:13.430685"], ["updated_at", "2023-02-17 19:40:13.430685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:13.431966"], ["updated_at", "2023-02-17 19:40:13.431966"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:13.433435"], ["updated_at", "2023-02-17 19:40:13.433435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:13.434739"], ["updated_at", "2023-02-17 19:40:13.434739"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:13.436373"], ["updated_at", "2023-02-17 19:40:13.436373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:13.437661"], ["updated_at", "2023-02-17 19:40:13.437661"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:13.439121"], ["updated_at", "2023-02-17 19:40:13.439121"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:13.440398"], ["updated_at", "2023-02-17 19:40:13.440398"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:13.441924"], ["updated_at", "2023-02-17 19:40:13.441924"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:13.443197"], ["updated_at", "2023-02-17 19:40:13.443197"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:13.444685"], ["updated_at", "2023-02-17 19:40:13.444685"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:13.456037"], ["updated_at", "2023-02-17 19:40:13.456037"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:13.457751"], ["updated_at", "2023-02-17 19:40:13.457751"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:13.459021"], ["updated_at", "2023-02-17 19:40:13.459021"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:13.460387"], ["updated_at", "2023-02-17 19:40:13.460387"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:13.461655"], ["updated_at", "2023-02-17 19:40:13.461655"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:13.463249"], ["updated_at", "2023-02-17 19:40:13.463249"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:13.464441"], ["updated_at", "2023-02-17 19:40:13.464441"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:13.465777"], ["updated_at", "2023-02-17 19:40:13.465777"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:13.466972"], ["updated_at", "2023-02-17 19:40:13.466972"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:13.468334"], ["updated_at", "2023-02-17 19:40:13.468334"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:13.469791"], ["updated_at", "2023-02-17 19:40:13.469791"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:13.471543"], ["updated_at", "2023-02-17 19:40:13.471543"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:13.472812"], ["updated_at", "2023-02-17 19:40:13.472812"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:13.474213"], ["updated_at", "2023-02-17 19:40:13.474213"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:13.475381"], ["updated_at", "2023-02-17 19:40:13.475381"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:13.476787"], ["updated_at", "2023-02-17 19:40:13.476787"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:13.478027"], ["updated_at", "2023-02-17 19:40:13.478027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:13.479444"], ["updated_at", "2023-02-17 19:40:13.479444"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:13.480622"], ["updated_at", "2023-02-17 19:40:13.480622"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:13.482059"], ["updated_at", "2023-02-17 19:40:13.482059"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:13.483306"], ["updated_at", "2023-02-17 19:40:13.483306"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:13.484740"], ["updated_at", "2023-02-17 19:40:13.484740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:13.486171"], ["updated_at", "2023-02-17 19:40:13.486171"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:13.487862"], ["updated_at", "2023-02-17 19:40:13.487862"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:13.489122"], ["updated_at", "2023-02-17 19:40:13.489122"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:13.490587"], ["updated_at", "2023-02-17 19:40:13.490587"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:13.491968"], ["updated_at", "2023-02-17 19:40:13.491968"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:13.493411"], ["updated_at", "2023-02-17 19:40:13.493411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:13.494586"], ["updated_at", "2023-02-17 19:40:13.494586"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:13.495995"], ["updated_at", "2023-02-17 19:40:13.495995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:13.497211"], ["updated_at", "2023-02-17 19:40:13.497211"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:13.498617"], ["updated_at", "2023-02-17 19:40:13.498617"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:13.499862"], ["updated_at", "2023-02-17 19:40:13.499862"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:13.501206"], ["updated_at", "2023-02-17 19:40:13.501206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:13.502742"], ["updated_at", "2023-02-17 19:40:13.502742"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:13.504437"], ["updated_at", "2023-02-17 19:40:13.504437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:13.505695"], ["updated_at", "2023-02-17 19:40:13.505695"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:13.507115"], ["updated_at", "2023-02-17 19:40:13.507115"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:13.508259"], ["updated_at", "2023-02-17 19:40:13.508259"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:13.509570"], ["updated_at", "2023-02-17 19:40:13.509570"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:13.510733"], ["updated_at", "2023-02-17 19:40:13.510733"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:13.512199"], ["updated_at", "2023-02-17 19:40:13.512199"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:13.513460"], ["updated_at", "2023-02-17 19:40:13.513460"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:13.514904"], ["updated_at", "2023-02-17 19:40:13.514904"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:13.516211"], ["updated_at", "2023-02-17 19:40:13.516211"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:13.517641"], ["updated_at", "2023-02-17 19:40:13.517641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:13.518782"], ["updated_at", "2023-02-17 19:40:13.518782"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:13.520174"], ["updated_at", "2023-02-17 19:40:13.520174"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:13.521899"], ["updated_at", "2023-02-17 19:40:13.521899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:13.523542"], ["updated_at", "2023-02-17 19:40:13.523542"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:13.524683"], ["updated_at", "2023-02-17 19:40:13.524683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:13.525692"], ["updated_at", "2023-02-17 19:40:13.525692"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:13.537536"], ["updated_at", "2023-02-17 19:40:13.537536"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:13.538787"], ["updated_at", "2023-02-17 19:40:13.538787"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:13.539699"], ["updated_at", "2023-02-17 19:40:13.539699"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.540538"], ["updated_at", "2023-02-17 19:40:13.540538"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.541356"], ["updated_at", "2023-02-17 19:40:13.541356"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.542200"], ["updated_at", "2023-02-17 19:40:13.542200"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.542930"], ["updated_at", "2023-02-17 19:40:13.542930"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.543636"], ["updated_at", "2023-02-17 19:40:13.543636"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:13.544415"], ["updated_at", "2023-02-17 19:40:13.544415"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.545270"], ["updated_at", "2023-02-17 19:40:13.545270"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.546239"], ["updated_at", "2023-02-17 19:40:13.546239"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.547284"], ["updated_at", "2023-02-17 19:40:13.547284"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.548324"], ["updated_at", "2023-02-17 19:40:13.548324"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.549318"], ["updated_at", "2023-02-17 19:40:13.549318"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.550094"], ["updated_at", "2023-02-17 19:40:13.550094"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.550819"], ["updated_at", "2023-02-17 19:40:13.550819"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.551850"], ["updated_at", "2023-02-17 19:40:13.551850"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.552769"], ["updated_at", "2023-02-17 19:40:13.552769"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.553695"], ["updated_at", "2023-02-17 19:40:13.553695"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.554774"], ["updated_at", "2023-02-17 19:40:13.554774"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.555989"], ["updated_at", "2023-02-17 19:40:13.555989"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:13.570092"], ["updated_at", "2023-02-17 19:40:13.570092"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:13.571399"], ["updated_at", "2023-02-17 19:40:13.571399"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:13.572398"], ["updated_at", "2023-02-17 19:40:13.572398"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.573266"], ["updated_at", "2023-02-17 19:40:13.573266"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.574185"], ["updated_at", "2023-02-17 19:40:13.574185"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.574957"], ["updated_at", "2023-02-17 19:40:13.574957"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.575651"], ["updated_at", "2023-02-17 19:40:13.575651"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.576298"], ["updated_at", "2023-02-17 19:40:13.576298"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:13.577049"], ["updated_at", "2023-02-17 19:40:13.577049"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.577922"], ["updated_at", "2023-02-17 19:40:13.577922"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.578818"], ["updated_at", "2023-02-17 19:40:13.578818"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.579605"], ["updated_at", "2023-02-17 19:40:13.579605"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.580320"], ["updated_at", "2023-02-17 19:40:13.580320"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.581051"], ["updated_at", "2023-02-17 19:40:13.581051"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.581836"], ["updated_at", "2023-02-17 19:40:13.581836"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.582783"], ["updated_at", "2023-02-17 19:40:13.582783"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.583570"], ["updated_at", "2023-02-17 19:40:13.583570"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.584296"], ["updated_at", "2023-02-17 19:40:13.584296"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.585022"], ["updated_at", "2023-02-17 19:40:13.585022"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.585764"], ["updated_at", "2023-02-17 19:40:13.585764"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.586554"], ["updated_at", "2023-02-17 19:40:13.586554"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.602619"], ["updated_at", "2023-02-17 19:40:13.602619"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.603742"], ["updated_at", "2023-02-17 19:40:13.603742"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.604681"], ["updated_at", "2023-02-17 19:40:13.604681"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.605439"], ["updated_at", "2023-02-17 19:40:13.605439"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.606204"], ["updated_at", "2023-02-17 19:40:13.606204"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.606996"], ["updated_at", "2023-02-17 19:40:13.606996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.607749"], ["updated_at", "2023-02-17 19:40:13.607749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.608471"], ["updated_at", "2023-02-17 19:40:13.608471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.609202"], ["updated_at", "2023-02-17 19:40:13.609202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.609900"], ["updated_at", "2023-02-17 19:40:13.609900"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.610565"], ["updated_at", "2023-02-17 19:40:13.610565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.611264"], ["updated_at", "2023-02-17 19:40:13.611264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.612134"], ["updated_at", "2023-02-17 19:40:13.612134"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.612882"], ["updated_at", "2023-02-17 19:40:13.612882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.613622"], ["updated_at", "2023-02-17 19:40:13.613622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.614328"], ["updated_at", "2023-02-17 19:40:13.614328"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.629786"], ["updated_at", "2023-02-17 19:40:13.629786"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.630754"], ["updated_at", "2023-02-17 19:40:13.630754"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.631516"], ["updated_at", "2023-02-17 19:40:13.631516"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.632278"], ["updated_at", "2023-02-17 19:40:13.632278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.633062"], ["updated_at", "2023-02-17 19:40:13.633062"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.633838"], ["updated_at", "2023-02-17 19:40:13.633838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.634636"], ["updated_at", "2023-02-17 19:40:13.634636"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.635356"], ["updated_at", "2023-02-17 19:40:13.635356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.636050"], ["updated_at", "2023-02-17 19:40:13.636050"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.636749"], ["updated_at", "2023-02-17 19:40:13.636749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.637426"], ["updated_at", "2023-02-17 19:40:13.637426"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.638117"], ["updated_at", "2023-02-17 19:40:13.638117"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.638819"], ["updated_at", "2023-02-17 19:40:13.638819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.639495"], ["updated_at", "2023-02-17 19:40:13.639495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.640169"], ["updated_at", "2023-02-17 19:40:13.640169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:13.640842"], ["updated_at", "2023-02-17 19:40:13.640842"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.656466"], ["updated_at", "2023-02-17 19:40:13.656466"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.657489"], ["updated_at", "2023-02-17 19:40:13.657489"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.658281"], ["updated_at", "2023-02-17 19:40:13.658281"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.658969"], ["updated_at", "2023-02-17 19:40:13.658969"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.659702"], ["updated_at", "2023-02-17 19:40:13.659702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.660403"], ["updated_at", "2023-02-17 19:40:13.660403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.661102"], ["updated_at", "2023-02-17 19:40:13.661102"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.661786"], ["updated_at", "2023-02-17 19:40:13.661786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.662574"], ["updated_at", "2023-02-17 19:40:13.662574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.663308"], ["updated_at", "2023-02-17 19:40:13.663308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.663986"], ["updated_at", "2023-02-17 19:40:13.663986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.664710"], ["updated_at", "2023-02-17 19:40:13.664710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.665438"], ["updated_at", "2023-02-17 19:40:13.665438"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.666139"], ["updated_at", "2023-02-17 19:40:13.666139"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.666827"], ["updated_at", "2023-02-17 19:40:13.666827"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:13.667510"], ["updated_at", "2023-02-17 19:40:13.667510"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.682778"], ["updated_at", "2023-02-17 19:40:13.682778"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.683801"], ["updated_at", "2023-02-17 19:40:13.683801"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.684578"], ["updated_at", "2023-02-17 19:40:13.684578"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.685267"], ["updated_at", "2023-02-17 19:40:13.685267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.686015"], ["updated_at", "2023-02-17 19:40:13.686015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.686720"], ["updated_at", "2023-02-17 19:40:13.686720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.687479"], ["updated_at", "2023-02-17 19:40:13.687479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.688198"], ["updated_at", "2023-02-17 19:40:13.688198"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.688897"], ["updated_at", "2023-02-17 19:40:13.688897"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.689611"], ["updated_at", "2023-02-17 19:40:13.689611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.690294"], ["updated_at", "2023-02-17 19:40:13.690294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.690976"], ["updated_at", "2023-02-17 19:40:13.690976"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.691666"], ["updated_at", "2023-02-17 19:40:13.691666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.692414"], ["updated_at", "2023-02-17 19:40:13.692414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.693260"], ["updated_at", "2023-02-17 19:40:13.693260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:13.694058"], ["updated_at", "2023-02-17 19:40:13.694058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.710551"], ["updated_at", "2023-02-17 19:40:13.710551"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.711565"], ["updated_at", "2023-02-17 19:40:13.711565"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.712593"], ["updated_at", "2023-02-17 19:40:13.712593"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.713756"], ["updated_at", "2023-02-17 19:40:13.713756"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.714728"], ["updated_at", "2023-02-17 19:40:13.714728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.715477"], ["updated_at", "2023-02-17 19:40:13.715477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.716377"], ["updated_at", "2023-02-17 19:40:13.716377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.717195"], ["updated_at", "2023-02-17 19:40:13.717195"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.718102"], ["updated_at", "2023-02-17 19:40:13.718102"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.719044"], ["updated_at", "2023-02-17 19:40:13.719044"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.720072"], ["updated_at", "2023-02-17 19:40:13.720072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.720892"], ["updated_at", "2023-02-17 19:40:13.720892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.721684"], ["updated_at", "2023-02-17 19:40:13.721684"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.722442"], ["updated_at", "2023-02-17 19:40:13.722442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.723674"], ["updated_at", "2023-02-17 19:40:13.723674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:13.724497"], ["updated_at", "2023-02-17 19:40:13.724497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.742458"], ["updated_at", "2023-02-17 19:40:13.742458"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.743698"], ["updated_at", "2023-02-17 19:40:13.743698"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.744785"], ["updated_at", "2023-02-17 19:40:13.744785"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.745716"], ["updated_at", "2023-02-17 19:40:13.745716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.746561"], ["updated_at", "2023-02-17 19:40:13.746561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.747512"], ["updated_at", "2023-02-17 19:40:13.747512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.748389"], ["updated_at", "2023-02-17 19:40:13.748389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.749132"], ["updated_at", "2023-02-17 19:40:13.749132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.749901"], ["updated_at", "2023-02-17 19:40:13.749901"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.750612"], ["updated_at", "2023-02-17 19:40:13.750612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.751478"], ["updated_at", "2023-02-17 19:40:13.751478"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.752557"], ["updated_at", "2023-02-17 19:40:13.752557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.753847"], ["updated_at", "2023-02-17 19:40:13.753847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.754928"], ["updated_at", "2023-02-17 19:40:13.754928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.755980"], ["updated_at", "2023-02-17 19:40:13.755980"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:13.757043"], ["updated_at", "2023-02-17 19:40:13.757043"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:40:13 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:13.767935"], ["updated_at", "2023-02-17 19:40:13.767935"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:13.769814"], ["updated_at", "2023-02-17 19:40:13.769814"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:13.773451"], ["updated_at", "2023-02-17 19:40:13.773451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:13.774755"], ["updated_at", "2023-02-17 19:40:13.774755"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:13.777544"], ["updated_at", "2023-02-17 19:40:13.777544"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:13.778807"], ["updated_at", "2023-02-17 19:40:13.778807"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:13.780982"], ["updated_at", "2023-02-17 19:40:13.780982"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:13.782391"], ["updated_at", "2023-02-17 19:40:13.782391"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:13.784075"], ["updated_at", "2023-02-17 19:40:13.784075"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:13.785618"], ["updated_at", "2023-02-17 19:40:13.785618"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:13.787147"], ["updated_at", "2023-02-17 19:40:13.787147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:13.788395"], ["updated_at", "2023-02-17 19:40:13.788395"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:13.790062"], ["updated_at", "2023-02-17 19:40:13.790062"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:13.791412"], ["updated_at", "2023-02-17 19:40:13.791412"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:13.792975"], ["updated_at", "2023-02-17 19:40:13.792975"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:13.794370"], ["updated_at", "2023-02-17 19:40:13.794370"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:13.795809"], ["updated_at", "2023-02-17 19:40:13.795809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:13.797114"], ["updated_at", "2023-02-17 19:40:13.797114"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:13.798497"], ["updated_at", "2023-02-17 19:40:13.798497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:13.799655"], ["updated_at", "2023-02-17 19:40:13.799655"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:13.801211"], ["updated_at", "2023-02-17 19:40:13.801211"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:13.802476"], ["updated_at", "2023-02-17 19:40:13.802476"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:13.804479"], ["updated_at", "2023-02-17 19:40:13.804479"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:13.805811"], ["updated_at", "2023-02-17 19:40:13.805811"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:13.807853"], ["updated_at", "2023-02-17 19:40:13.807853"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:13.809314"], ["updated_at", "2023-02-17 19:40:13.809314"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:13.810866"], ["updated_at", "2023-02-17 19:40:13.810866"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:13.812093"], ["updated_at", "2023-02-17 19:40:13.812093"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:13.813702"], ["updated_at", "2023-02-17 19:40:13.813702"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:13.814951"], ["updated_at", "2023-02-17 19:40:13.814951"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:13.816435"], ["updated_at", "2023-02-17 19:40:13.816435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:13.817751"], ["updated_at", "2023-02-17 19:40:13.817751"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:13.819366"], ["updated_at", "2023-02-17 19:40:13.819366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:13.820703"], ["updated_at", "2023-02-17 19:40:13.820703"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:13.822238"], ["updated_at", "2023-02-17 19:40:13.822238"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:13.823636"], ["updated_at", "2023-02-17 19:40:13.823636"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:13.825115"], ["updated_at", "2023-02-17 19:40:13.825115"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:13.826507"], ["updated_at", "2023-02-17 19:40:13.826507"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:13.827909"], ["updated_at", "2023-02-17 19:40:13.827909"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:13.829102"], ["updated_at", "2023-02-17 19:40:13.829102"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:13.830612"], ["updated_at", "2023-02-17 19:40:13.830612"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:13.831826"], ["updated_at", "2023-02-17 19:40:13.831826"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:13.833259"], ["updated_at", "2023-02-17 19:40:13.833259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:13.834549"], ["updated_at", "2023-02-17 19:40:13.834549"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:13.835957"], ["updated_at", "2023-02-17 19:40:13.835957"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:13.837222"], ["updated_at", "2023-02-17 19:40:13.837222"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:13.838701"], ["updated_at", "2023-02-17 19:40:13.838701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:13.840165"], ["updated_at", "2023-02-17 19:40:13.840165"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:13.841716"], ["updated_at", "2023-02-17 19:40:13.841716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:13.842931"], ["updated_at", "2023-02-17 19:40:13.842931"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:13.844478"], ["updated_at", "2023-02-17 19:40:13.844478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:13.845861"], ["updated_at", "2023-02-17 19:40:13.845861"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:13.847289"], ["updated_at", "2023-02-17 19:40:13.847289"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:13.848488"], ["updated_at", "2023-02-17 19:40:13.848488"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:13.849888"], ["updated_at", "2023-02-17 19:40:13.849888"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:13.851223"], ["updated_at", "2023-02-17 19:40:13.851223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:13.852792"], ["updated_at", "2023-02-17 19:40:13.852792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:13.854246"], ["updated_at", "2023-02-17 19:40:13.854246"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:13.855695"], ["updated_at", "2023-02-17 19:40:13.855695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:13.857221"], ["updated_at", "2023-02-17 19:40:13.857221"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:13.858701"], ["updated_at", "2023-02-17 19:40:13.858701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:13.859945"], ["updated_at", "2023-02-17 19:40:13.859945"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:13.861360"], ["updated_at", "2023-02-17 19:40:13.861360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:13.862673"], ["updated_at", "2023-02-17 19:40:13.862673"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:13.864223"], ["updated_at", "2023-02-17 19:40:13.864223"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:13.865415"], ["updated_at", "2023-02-17 19:40:13.865415"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:13.866757"], ["updated_at", "2023-02-17 19:40:13.866757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:13.868027"], ["updated_at", "2023-02-17 19:40:13.868027"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:13.869670"], ["updated_at", "2023-02-17 19:40:13.869670"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:13.870993"], ["updated_at", "2023-02-17 19:40:13.870993"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:13.872404"], ["updated_at", "2023-02-17 19:40:13.872404"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:13.874051"], ["updated_at", "2023-02-17 19:40:13.874051"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:13.875635"], ["updated_at", "2023-02-17 19:40:13.875635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:13.876867"], ["updated_at", "2023-02-17 19:40:13.876867"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:13.878258"], ["updated_at", "2023-02-17 19:40:13.878258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:13.879672"], ["updated_at", "2023-02-17 19:40:13.879672"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:13.881089"], ["updated_at", "2023-02-17 19:40:13.881089"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:13.882303"], ["updated_at", "2023-02-17 19:40:13.882303"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:13.883847"], ["updated_at", "2023-02-17 19:40:13.883847"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:13.885209"], ["updated_at", "2023-02-17 19:40:13.885209"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:13.886994"], ["updated_at", "2023-02-17 19:40:13.886994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:13.888245"], ["updated_at", "2023-02-17 19:40:13.888245"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:13.889744"], ["updated_at", "2023-02-17 19:40:13.889744"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:13.891265"], ["updated_at", "2023-02-17 19:40:13.891265"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:13.892688"], ["updated_at", "2023-02-17 19:40:13.892688"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:13.893982"], ["updated_at", "2023-02-17 19:40:13.893982"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:13.895441"], ["updated_at", "2023-02-17 19:40:13.895441"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:13.896917"], ["updated_at", "2023-02-17 19:40:13.896917"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:13.898360"], ["updated_at", "2023-02-17 19:40:13.898360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:13.899584"], ["updated_at", "2023-02-17 19:40:13.899584"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:13.900992"], ["updated_at", "2023-02-17 19:40:13.900992"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:13.902162"], ["updated_at", "2023-02-17 19:40:13.902162"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:13.903601"], ["updated_at", "2023-02-17 19:40:13.903601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:13.904894"], ["updated_at", "2023-02-17 19:40:13.904894"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:13.906494"], ["updated_at", "2023-02-17 19:40:13.906494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:13.907715"], ["updated_at", "2023-02-17 19:40:13.907715"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:13.908940"], ["updated_at", "2023-02-17 19:40:13.908940"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:13.910303"], ["updated_at", "2023-02-17 19:40:13.910303"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:13.911835"], ["updated_at", "2023-02-17 19:40:13.911835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:13.913058"], ["updated_at", "2023-02-17 19:40:13.913058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:13.914189"], ["updated_at", "2023-02-17 19:40:13.914189"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:13.926061"], ["updated_at", "2023-02-17 19:40:13.926061"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:13.927362"], ["updated_at", "2023-02-17 19:40:13.927362"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:13.928411"], ["updated_at", "2023-02-17 19:40:13.928411"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.929343"], ["updated_at", "2023-02-17 19:40:13.929343"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.930111"], ["updated_at", "2023-02-17 19:40:13.930111"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.930800"], ["updated_at", "2023-02-17 19:40:13.930800"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.931465"], ["updated_at", "2023-02-17 19:40:13.931465"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.932171"], ["updated_at", "2023-02-17 19:40:13.932171"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:13.932930"], ["updated_at", "2023-02-17 19:40:13.932930"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.933858"], ["updated_at", "2023-02-17 19:40:13.933858"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.934747"], ["updated_at", "2023-02-17 19:40:13.934747"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.935600"], ["updated_at", "2023-02-17 19:40:13.935600"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.936417"], ["updated_at", "2023-02-17 19:40:13.936417"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.937196"], ["updated_at", "2023-02-17 19:40:13.937196"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.937947"], ["updated_at", "2023-02-17 19:40:13.937947"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.938658"], ["updated_at", "2023-02-17 19:40:13.938658"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.939484"], ["updated_at", "2023-02-17 19:40:13.939484"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.940521"], ["updated_at", "2023-02-17 19:40:13.940521"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.941324"], ["updated_at", "2023-02-17 19:40:13.941324"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.942050"], ["updated_at", "2023-02-17 19:40:13.942050"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.942823"], ["updated_at", "2023-02-17 19:40:13.942823"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:13.954276"], ["updated_at", "2023-02-17 19:40:13.954276"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:13.955560"], ["updated_at", "2023-02-17 19:40:13.955560"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:13.956487"], ["updated_at", "2023-02-17 19:40:13.956487"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.957306"], ["updated_at", "2023-02-17 19:40:13.957306"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.958060"], ["updated_at", "2023-02-17 19:40:13.958060"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.958744"], ["updated_at", "2023-02-17 19:40:13.958744"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.959399"], ["updated_at", "2023-02-17 19:40:13.959399"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:13.960091"], ["updated_at", "2023-02-17 19:40:13.960091"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:13.960849"], ["updated_at", "2023-02-17 19:40:13.960849"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.961715"], ["updated_at", "2023-02-17 19:40:13.961715"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.962554"], ["updated_at", "2023-02-17 19:40:13.962554"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.963339"], ["updated_at", "2023-02-17 19:40:13.963339"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.964248"], ["updated_at", "2023-02-17 19:40:13.964248"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.965037"], ["updated_at", "2023-02-17 19:40:13.965037"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.965764"], ["updated_at", "2023-02-17 19:40:13.965764"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.966543"], ["updated_at", "2023-02-17 19:40:13.966543"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.967276"], ["updated_at", "2023-02-17 19:40:13.967276"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.968015"], ["updated_at", "2023-02-17 19:40:13.968015"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.968756"], ["updated_at", "2023-02-17 19:40:13.968756"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.969471"], ["updated_at", "2023-02-17 19:40:13.969471"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:13.970253"], ["updated_at", "2023-02-17 19:40:13.970253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:13.986264"], ["updated_at", "2023-02-17 19:40:13.986264"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:13.987317"], ["updated_at", "2023-02-17 19:40:13.987317"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:13.988139"], ["updated_at", "2023-02-17 19:40:13.988139"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:13.988878"], ["updated_at", "2023-02-17 19:40:13.988878"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.989662"], ["updated_at", "2023-02-17 19:40:13.989662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.990455"], ["updated_at", "2023-02-17 19:40:13.990455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.991176"], ["updated_at", "2023-02-17 19:40:13.991176"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.991885"], ["updated_at", "2023-02-17 19:40:13.991885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.992668"], ["updated_at", "2023-02-17 19:40:13.992668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.993424"], ["updated_at", "2023-02-17 19:40:13.993424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.994460"], ["updated_at", "2023-02-17 19:40:13.994460"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.995420"], ["updated_at", "2023-02-17 19:40:13.995420"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.996245"], ["updated_at", "2023-02-17 19:40:13.996245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.996997"], ["updated_at", "2023-02-17 19:40:13.996997"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.997691"], ["updated_at", "2023-02-17 19:40:13.997691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:13.998388"], ["updated_at", "2023-02-17 19:40:13.998388"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.014613"], ["updated_at", "2023-02-17 19:40:14.014613"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.015674"], ["updated_at", "2023-02-17 19:40:14.015674"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.016487"], ["updated_at", "2023-02-17 19:40:14.016487"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.017231"], ["updated_at", "2023-02-17 19:40:14.017231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.017991"], ["updated_at", "2023-02-17 19:40:14.017991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.018727"], ["updated_at", "2023-02-17 19:40:14.018727"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.019430"], ["updated_at", "2023-02-17 19:40:14.019430"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.020131"], ["updated_at", "2023-02-17 19:40:14.020131"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.020890"], ["updated_at", "2023-02-17 19:40:14.020890"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.021732"], ["updated_at", "2023-02-17 19:40:14.021732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.022555"], ["updated_at", "2023-02-17 19:40:14.022555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.023291"], ["updated_at", "2023-02-17 19:40:14.023291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.024089"], ["updated_at", "2023-02-17 19:40:14.024089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.024820"], ["updated_at", "2023-02-17 19:40:14.024820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.025551"], ["updated_at", "2023-02-17 19:40:14.025551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.026272"], ["updated_at", "2023-02-17 19:40:14.026272"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.041648"], ["updated_at", "2023-02-17 19:40:14.041648"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.042662"], ["updated_at", "2023-02-17 19:40:14.042662"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.043425"], ["updated_at", "2023-02-17 19:40:14.043425"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.044225"], ["updated_at", "2023-02-17 19:40:14.044225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.045019"], ["updated_at", "2023-02-17 19:40:14.045019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.045729"], ["updated_at", "2023-02-17 19:40:14.045729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.046427"], ["updated_at", "2023-02-17 19:40:14.046427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.047106"], ["updated_at", "2023-02-17 19:40:14.047106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.047837"], ["updated_at", "2023-02-17 19:40:14.047837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.048553"], ["updated_at", "2023-02-17 19:40:14.048553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.049290"], ["updated_at", "2023-02-17 19:40:14.049290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.050011"], ["updated_at", "2023-02-17 19:40:14.050011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.050680"], ["updated_at", "2023-02-17 19:40:14.050680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.051369"], ["updated_at", "2023-02-17 19:40:14.051369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.052073"], ["updated_at", "2023-02-17 19:40:14.052073"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.052860"], ["updated_at", "2023-02-17 19:40:14.052860"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.068866"], ["updated_at", "2023-02-17 19:40:14.068866"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.069916"], ["updated_at", "2023-02-17 19:40:14.069916"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.070733"], ["updated_at", "2023-02-17 19:40:14.070733"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.071424"], ["updated_at", "2023-02-17 19:40:14.071424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.072165"], ["updated_at", "2023-02-17 19:40:14.072165"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.072889"], ["updated_at", "2023-02-17 19:40:14.072889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.073618"], ["updated_at", "2023-02-17 19:40:14.073618"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.074414"], ["updated_at", "2023-02-17 19:40:14.074414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.075178"], ["updated_at", "2023-02-17 19:40:14.075178"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.075896"], ["updated_at", "2023-02-17 19:40:14.075896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.076614"], ["updated_at", "2023-02-17 19:40:14.076614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.077322"], ["updated_at", "2023-02-17 19:40:14.077322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.078078"], ["updated_at", "2023-02-17 19:40:14.078078"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.078762"], ["updated_at", "2023-02-17 19:40:14.078762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.079442"], ["updated_at", "2023-02-17 19:40:14.079442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.080111"], ["updated_at", "2023-02-17 19:40:14.080111"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.095602"], ["updated_at", "2023-02-17 19:40:14.095602"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.096627"], ["updated_at", "2023-02-17 19:40:14.096627"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.097396"], ["updated_at", "2023-02-17 19:40:14.097396"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.098166"], ["updated_at", "2023-02-17 19:40:14.098166"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.099022"], ["updated_at", "2023-02-17 19:40:14.099022"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.099805"], ["updated_at", "2023-02-17 19:40:14.099805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.100530"], ["updated_at", "2023-02-17 19:40:14.100530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.101232"], ["updated_at", "2023-02-17 19:40:14.101232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.102090"], ["updated_at", "2023-02-17 19:40:14.102090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.102849"], ["updated_at", "2023-02-17 19:40:14.102849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.103556"], ["updated_at", "2023-02-17 19:40:14.103556"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.104386"], ["updated_at", "2023-02-17 19:40:14.104386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.105161"], ["updated_at", "2023-02-17 19:40:14.105161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.105959"], ["updated_at", "2023-02-17 19:40:14.105959"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.106691"], ["updated_at", "2023-02-17 19:40:14.106691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.107393"], ["updated_at", "2023-02-17 19:40:14.107393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.123148"], ["updated_at", "2023-02-17 19:40:14.123148"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.124114"], ["updated_at", "2023-02-17 19:40:14.124114"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.124982"], ["updated_at", "2023-02-17 19:40:14.124982"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.125698"], ["updated_at", "2023-02-17 19:40:14.125698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.126471"], ["updated_at", "2023-02-17 19:40:14.126471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.127230"], ["updated_at", "2023-02-17 19:40:14.127230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.127917"], ["updated_at", "2023-02-17 19:40:14.127917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.128620"], ["updated_at", "2023-02-17 19:40:14.128620"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.129317"], ["updated_at", "2023-02-17 19:40:14.129317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.129992"], ["updated_at", "2023-02-17 19:40:14.129992"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.130725"], ["updated_at", "2023-02-17 19:40:14.130725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.131416"], ["updated_at", "2023-02-17 19:40:14.131416"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.132115"], ["updated_at", "2023-02-17 19:40:14.132115"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.132787"], ["updated_at", "2023-02-17 19:40:14.132787"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.133481"], ["updated_at", "2023-02-17 19:40:14.133481"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.134182"], ["updated_at", "2023-02-17 19:40:14.134182"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:40:14 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 14ms (Views: 10.8ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:14.158064"], ["updated_at", "2023-02-17 19:40:14.158064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:14.159492"], ["updated_at", "2023-02-17 19:40:14.159492"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:14.162287"], ["updated_at", "2023-02-17 19:40:14.162287"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:14.163433"], ["updated_at", "2023-02-17 19:40:14.163433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:14.166245"], ["updated_at", "2023-02-17 19:40:14.166245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:14.167392"], ["updated_at", "2023-02-17 19:40:14.167392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:14.169610"], ["updated_at", "2023-02-17 19:40:14.169610"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:14.171011"], ["updated_at", "2023-02-17 19:40:14.171011"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:14.172549"], ["updated_at", "2023-02-17 19:40:14.172549"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:14.173862"], ["updated_at", "2023-02-17 19:40:14.173862"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:14.175373"], ["updated_at", "2023-02-17 19:40:14.175373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:14.176652"], ["updated_at", "2023-02-17 19:40:14.176652"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:14.178057"], ["updated_at", "2023-02-17 19:40:14.178057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:14.179252"], ["updated_at", "2023-02-17 19:40:14.179252"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:14.180624"], ["updated_at", "2023-02-17 19:40:14.180624"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:14.181821"], ["updated_at", "2023-02-17 19:40:14.181821"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:14.183208"], ["updated_at", "2023-02-17 19:40:14.183208"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:14.184436"], ["updated_at", "2023-02-17 19:40:14.184436"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:14.186087"], ["updated_at", "2023-02-17 19:40:14.186087"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:14.187372"], ["updated_at", "2023-02-17 19:40:14.187372"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:14.188781"], ["updated_at", "2023-02-17 19:40:14.188781"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:14.189988"], ["updated_at", "2023-02-17 19:40:14.189988"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:14.191376"], ["updated_at", "2023-02-17 19:40:14.191376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:14.192608"], ["updated_at", "2023-02-17 19:40:14.192608"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:14.194011"], ["updated_at", "2023-02-17 19:40:14.194011"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:14.195286"], ["updated_at", "2023-02-17 19:40:14.195286"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:14.196680"], ["updated_at", "2023-02-17 19:40:14.196680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:14.197885"], ["updated_at", "2023-02-17 19:40:14.197885"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:14.199251"], ["updated_at", "2023-02-17 19:40:14.199251"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:14.200442"], ["updated_at", "2023-02-17 19:40:14.200442"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:14.201811"], ["updated_at", "2023-02-17 19:40:14.201811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:14.203215"], ["updated_at", "2023-02-17 19:40:14.203215"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:14.204593"], ["updated_at", "2023-02-17 19:40:14.204593"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:14.205915"], ["updated_at", "2023-02-17 19:40:14.205915"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:14.207292"], ["updated_at", "2023-02-17 19:40:14.207292"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:14.208493"], ["updated_at", "2023-02-17 19:40:14.208493"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:14.209949"], ["updated_at", "2023-02-17 19:40:14.209949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:14.211182"], ["updated_at", "2023-02-17 19:40:14.211182"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:14.212512"], ["updated_at", "2023-02-17 19:40:14.212512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:14.213693"], ["updated_at", "2023-02-17 19:40:14.213693"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:14.215148"], ["updated_at", "2023-02-17 19:40:14.215148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:14.216383"], ["updated_at", "2023-02-17 19:40:14.216383"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:14.217814"], ["updated_at", "2023-02-17 19:40:14.217814"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:14.219167"], ["updated_at", "2023-02-17 19:40:14.219167"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:14.220593"], ["updated_at", "2023-02-17 19:40:14.220593"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:14.221819"], ["updated_at", "2023-02-17 19:40:14.221819"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:14.223277"], ["updated_at", "2023-02-17 19:40:14.223277"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:14.224644"], ["updated_at", "2023-02-17 19:40:14.224644"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:14.226364"], ["updated_at", "2023-02-17 19:40:14.226364"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:14.227791"], ["updated_at", "2023-02-17 19:40:14.227791"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:14.229162"], ["updated_at", "2023-02-17 19:40:14.229162"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:14.230348"], ["updated_at", "2023-02-17 19:40:14.230348"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:14.231740"], ["updated_at", "2023-02-17 19:40:14.231740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:14.232930"], ["updated_at", "2023-02-17 19:40:14.232930"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:14.234304"], ["updated_at", "2023-02-17 19:40:14.234304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:14.235815"], ["updated_at", "2023-02-17 19:40:14.235815"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:14.237246"], ["updated_at", "2023-02-17 19:40:14.237246"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:14.238472"], ["updated_at", "2023-02-17 19:40:14.238472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:14.239852"], ["updated_at", "2023-02-17 19:40:14.239852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:14.241022"], ["updated_at", "2023-02-17 19:40:14.241022"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:14.242371"], ["updated_at", "2023-02-17 19:40:14.242371"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:14.243568"], ["updated_at", "2023-02-17 19:40:14.243568"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:14.244989"], ["updated_at", "2023-02-17 19:40:14.244989"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:14.246246"], ["updated_at", "2023-02-17 19:40:14.246246"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:14.247640"], ["updated_at", "2023-02-17 19:40:14.247640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:14.248821"], ["updated_at", "2023-02-17 19:40:14.248821"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:14.250232"], ["updated_at", "2023-02-17 19:40:14.250232"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:14.251469"], ["updated_at", "2023-02-17 19:40:14.251469"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:14.252948"], ["updated_at", "2023-02-17 19:40:14.252948"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:14.254254"], ["updated_at", "2023-02-17 19:40:14.254254"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:14.255737"], ["updated_at", "2023-02-17 19:40:14.255737"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:14.256980"], ["updated_at", "2023-02-17 19:40:14.256980"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:14.258446"], ["updated_at", "2023-02-17 19:40:14.258446"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:14.259659"], ["updated_at", "2023-02-17 19:40:14.259659"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:14.261106"], ["updated_at", "2023-02-17 19:40:14.261106"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:14.262554"], ["updated_at", "2023-02-17 19:40:14.262554"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:14.263917"], ["updated_at", "2023-02-17 19:40:14.263917"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:14.265065"], ["updated_at", "2023-02-17 19:40:14.265065"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:14.266369"], ["updated_at", "2023-02-17 19:40:14.266369"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:14.267524"], ["updated_at", "2023-02-17 19:40:14.267524"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:14.268964"], ["updated_at", "2023-02-17 19:40:14.268964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:14.270223"], ["updated_at", "2023-02-17 19:40:14.270223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:14.271693"], ["updated_at", "2023-02-17 19:40:14.271693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:14.272914"], ["updated_at", "2023-02-17 19:40:14.272914"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:14.274516"], ["updated_at", "2023-02-17 19:40:14.274516"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:14.275803"], ["updated_at", "2023-02-17 19:40:14.275803"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:14.277175"], ["updated_at", "2023-02-17 19:40:14.277175"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:14.278457"], ["updated_at", "2023-02-17 19:40:14.278457"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:14.279864"], ["updated_at", "2023-02-17 19:40:14.279864"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:14.281161"], ["updated_at", "2023-02-17 19:40:14.281161"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:14.282574"], ["updated_at", "2023-02-17 19:40:14.282574"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:14.283809"], ["updated_at", "2023-02-17 19:40:14.283809"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:14.285258"], ["updated_at", "2023-02-17 19:40:14.285258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:14.286603"], ["updated_at", "2023-02-17 19:40:14.286603"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:14.288049"], ["updated_at", "2023-02-17 19:40:14.288049"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:14.289142"], ["updated_at", "2023-02-17 19:40:14.289142"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:14.290360"], ["updated_at", "2023-02-17 19:40:14.290360"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:14.291835"], ["updated_at", "2023-02-17 19:40:14.291835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:14.293348"], ["updated_at", "2023-02-17 19:40:14.293348"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:14.294531"], ["updated_at", "2023-02-17 19:40:14.294531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:14.295509"], ["updated_at", "2023-02-17 19:40:14.295509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:14.307034"], ["updated_at", "2023-02-17 19:40:14.307034"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:14.308352"], ["updated_at", "2023-02-17 19:40:14.308352"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:14.309339"], ["updated_at", "2023-02-17 19:40:14.309339"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.310206"], ["updated_at", "2023-02-17 19:40:14.310206"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.311068"], ["updated_at", "2023-02-17 19:40:14.311068"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.311818"], ["updated_at", "2023-02-17 19:40:14.311818"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.312587"], ["updated_at", "2023-02-17 19:40:14.312587"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.313593"], ["updated_at", "2023-02-17 19:40:14.313593"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:14.314488"], ["updated_at", "2023-02-17 19:40:14.314488"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.315404"], ["updated_at", "2023-02-17 19:40:14.315404"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.316262"], ["updated_at", "2023-02-17 19:40:14.316262"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.317010"], ["updated_at", "2023-02-17 19:40:14.317010"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.317771"], ["updated_at", "2023-02-17 19:40:14.317771"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.318794"], ["updated_at", "2023-02-17 19:40:14.318794"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.319937"], ["updated_at", "2023-02-17 19:40:14.319937"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.320837"], ["updated_at", "2023-02-17 19:40:14.320837"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.321730"], ["updated_at", "2023-02-17 19:40:14.321730"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.322524"], ["updated_at", "2023-02-17 19:40:14.322524"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.323286"], ["updated_at", "2023-02-17 19:40:14.323286"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.324015"], ["updated_at", "2023-02-17 19:40:14.324015"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.324767"], ["updated_at", "2023-02-17 19:40:14.324767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:14.337308"], ["updated_at", "2023-02-17 19:40:14.337308"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:14.338594"], ["updated_at", "2023-02-17 19:40:14.338594"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:14.339483"], ["updated_at", "2023-02-17 19:40:14.339483"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:14.340331"], ["updated_at", "2023-02-17 19:40:14.340331"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:14.341205"], ["updated_at", "2023-02-17 19:40:14.341205"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:14.341941"], ["updated_at", "2023-02-17 19:40:14.341941"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:14.342637"], ["updated_at", "2023-02-17 19:40:14.342637"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:14.343327"], ["updated_at", "2023-02-17 19:40:14.343327"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:14.344082"], ["updated_at", "2023-02-17 19:40:14.344082"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.344958"], ["updated_at", "2023-02-17 19:40:14.344958"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.345859"], ["updated_at", "2023-02-17 19:40:14.345859"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.346937"], ["updated_at", "2023-02-17 19:40:14.346937"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.354085"], ["updated_at", "2023-02-17 19:40:14.354085"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.354942"], ["updated_at", "2023-02-17 19:40:14.354942"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.355706"], ["updated_at", "2023-02-17 19:40:14.355706"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.356486"], ["updated_at", "2023-02-17 19:40:14.356486"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.357250"], ["updated_at", "2023-02-17 19:40:14.357250"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.358005"], ["updated_at", "2023-02-17 19:40:14.358005"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.358713"], ["updated_at", "2023-02-17 19:40:14.358713"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.359430"], ["updated_at", "2023-02-17 19:40:14.359430"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.360144"], ["updated_at", "2023-02-17 19:40:14.360144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.376537"], ["updated_at", "2023-02-17 19:40:14.376537"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.377649"], ["updated_at", "2023-02-17 19:40:14.377649"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.378452"], ["updated_at", "2023-02-17 19:40:14.378452"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.379262"], ["updated_at", "2023-02-17 19:40:14.379262"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.380367"], ["updated_at", "2023-02-17 19:40:14.380367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.381265"], ["updated_at", "2023-02-17 19:40:14.381265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.382100"], ["updated_at", "2023-02-17 19:40:14.382100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.382792"], ["updated_at", "2023-02-17 19:40:14.382792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.383459"], ["updated_at", "2023-02-17 19:40:14.383459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.384201"], ["updated_at", "2023-02-17 19:40:14.384201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.384921"], ["updated_at", "2023-02-17 19:40:14.384921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.385724"], ["updated_at", "2023-02-17 19:40:14.385724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.386682"], ["updated_at", "2023-02-17 19:40:14.386682"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.387595"], ["updated_at", "2023-02-17 19:40:14.387595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.388351"], ["updated_at", "2023-02-17 19:40:14.388351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.389054"], ["updated_at", "2023-02-17 19:40:14.389054"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.405333"], ["updated_at", "2023-02-17 19:40:14.405333"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.406336"], ["updated_at", "2023-02-17 19:40:14.406336"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.407080"], ["updated_at", "2023-02-17 19:40:14.407080"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.407786"], ["updated_at", "2023-02-17 19:40:14.407786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.408521"], ["updated_at", "2023-02-17 19:40:14.408521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.409231"], ["updated_at", "2023-02-17 19:40:14.409231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.409943"], ["updated_at", "2023-02-17 19:40:14.409943"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.410642"], ["updated_at", "2023-02-17 19:40:14.410642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.411325"], ["updated_at", "2023-02-17 19:40:14.411325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.412138"], ["updated_at", "2023-02-17 19:40:14.412138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.413084"], ["updated_at", "2023-02-17 19:40:14.413084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.414101"], ["updated_at", "2023-02-17 19:40:14.414101"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.414889"], ["updated_at", "2023-02-17 19:40:14.414889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.415557"], ["updated_at", "2023-02-17 19:40:14.415557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.416237"], ["updated_at", "2023-02-17 19:40:14.416237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.416936"], ["updated_at", "2023-02-17 19:40:14.416936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.433550"], ["updated_at", "2023-02-17 19:40:14.433550"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.434524"], ["updated_at", "2023-02-17 19:40:14.434524"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.435565"], ["updated_at", "2023-02-17 19:40:14.435565"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.436578"], ["updated_at", "2023-02-17 19:40:14.436578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.437421"], ["updated_at", "2023-02-17 19:40:14.437421"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.438145"], ["updated_at", "2023-02-17 19:40:14.438145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.438833"], ["updated_at", "2023-02-17 19:40:14.438833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.439529"], ["updated_at", "2023-02-17 19:40:14.439529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.440213"], ["updated_at", "2023-02-17 19:40:14.440213"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.440874"], ["updated_at", "2023-02-17 19:40:14.440874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.441620"], ["updated_at", "2023-02-17 19:40:14.441620"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.442376"], ["updated_at", "2023-02-17 19:40:14.442376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.443064"], ["updated_at", "2023-02-17 19:40:14.443064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.443758"], ["updated_at", "2023-02-17 19:40:14.443758"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.444439"], ["updated_at", "2023-02-17 19:40:14.444439"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.445150"], ["updated_at", "2023-02-17 19:40:14.445150"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.461144"], ["updated_at", "2023-02-17 19:40:14.461144"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.462251"], ["updated_at", "2023-02-17 19:40:14.462251"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.463317"], ["updated_at", "2023-02-17 19:40:14.463317"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.464163"], ["updated_at", "2023-02-17 19:40:14.464163"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.464961"], ["updated_at", "2023-02-17 19:40:14.464961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.465710"], ["updated_at", "2023-02-17 19:40:14.465710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.466393"], ["updated_at", "2023-02-17 19:40:14.466393"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.467084"], ["updated_at", "2023-02-17 19:40:14.467084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.467820"], ["updated_at", "2023-02-17 19:40:14.467820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.468768"], ["updated_at", "2023-02-17 19:40:14.468768"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.469766"], ["updated_at", "2023-02-17 19:40:14.469766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.470487"], ["updated_at", "2023-02-17 19:40:14.470487"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.471170"], ["updated_at", "2023-02-17 19:40:14.471170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.471969"], ["updated_at", "2023-02-17 19:40:14.471969"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.472729"], ["updated_at", "2023-02-17 19:40:14.472729"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.473426"], ["updated_at", "2023-02-17 19:40:14.473426"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.489535"], ["updated_at", "2023-02-17 19:40:14.489535"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.490505"], ["updated_at", "2023-02-17 19:40:14.490505"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.491262"], ["updated_at", "2023-02-17 19:40:14.491262"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.492018"], ["updated_at", "2023-02-17 19:40:14.492018"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.492809"], ["updated_at", "2023-02-17 19:40:14.492809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.493543"], ["updated_at", "2023-02-17 19:40:14.493543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.494235"], ["updated_at", "2023-02-17 19:40:14.494235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.494928"], ["updated_at", "2023-02-17 19:40:14.494928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.495770"], ["updated_at", "2023-02-17 19:40:14.495770"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.496762"], ["updated_at", "2023-02-17 19:40:14.496762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.497536"], ["updated_at", "2023-02-17 19:40:14.497536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.498251"], ["updated_at", "2023-02-17 19:40:14.498251"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.498942"], ["updated_at", "2023-02-17 19:40:14.498942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.499624"], ["updated_at", "2023-02-17 19:40:14.499624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.500294"], ["updated_at", "2023-02-17 19:40:14.500294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.500955"], ["updated_at", "2023-02-17 19:40:14.500955"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.517065"], ["updated_at", "2023-02-17 19:40:14.517065"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.518018"], ["updated_at", "2023-02-17 19:40:14.518018"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.518812"], ["updated_at", "2023-02-17 19:40:14.518812"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.519555"], ["updated_at", "2023-02-17 19:40:14.519555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.520366"], ["updated_at", "2023-02-17 19:40:14.520366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.521097"], ["updated_at", "2023-02-17 19:40:14.521097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.521794"], ["updated_at", "2023-02-17 19:40:14.521794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.522691"], ["updated_at", "2023-02-17 19:40:14.522691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.523423"], ["updated_at", "2023-02-17 19:40:14.523423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.524140"], ["updated_at", "2023-02-17 19:40:14.524140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.524819"], ["updated_at", "2023-02-17 19:40:14.524819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.525489"], ["updated_at", "2023-02-17 19:40:14.525489"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.526163"], ["updated_at", "2023-02-17 19:40:14.526163"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.526850"], ["updated_at", "2023-02-17 19:40:14.526850"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.527628"], ["updated_at", "2023-02-17 19:40:14.527628"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.528414"], ["updated_at", "2023-02-17 19:40:14.528414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:40:14 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:14.545996"], ["updated_at", "2023-02-17 19:40:14.545996"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:14.547445"], ["updated_at", "2023-02-17 19:40:14.547445"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:14.550298"], ["updated_at", "2023-02-17 19:40:14.550298"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:14.551517"], ["updated_at", "2023-02-17 19:40:14.551517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:14.554572"], ["updated_at", "2023-02-17 19:40:14.554572"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:14.555878"], ["updated_at", "2023-02-17 19:40:14.555878"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:14.558779"], ["updated_at", "2023-02-17 19:40:14.558779"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:14.560429"], ["updated_at", "2023-02-17 19:40:14.560429"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:14.562050"], ["updated_at", "2023-02-17 19:40:14.562050"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:14.563533"], ["updated_at", "2023-02-17 19:40:14.563533"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:14.565030"], ["updated_at", "2023-02-17 19:40:14.565030"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:14.566219"], ["updated_at", "2023-02-17 19:40:14.566219"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:14.567548"], ["updated_at", "2023-02-17 19:40:14.567548"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:14.568813"], ["updated_at", "2023-02-17 19:40:14.568813"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:14.570242"], ["updated_at", "2023-02-17 19:40:14.570242"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:14.571454"], ["updated_at", "2023-02-17 19:40:14.571454"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:14.573028"], ["updated_at", "2023-02-17 19:40:14.573028"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:14.574283"], ["updated_at", "2023-02-17 19:40:14.574283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:14.575660"], ["updated_at", "2023-02-17 19:40:14.575660"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:14.576831"], ["updated_at", "2023-02-17 19:40:14.576831"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:14.578169"], ["updated_at", "2023-02-17 19:40:14.578169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:14.579422"], ["updated_at", "2023-02-17 19:40:14.579422"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:14.580824"], ["updated_at", "2023-02-17 19:40:14.580824"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:14.582125"], ["updated_at", "2023-02-17 19:40:14.582125"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:14.583564"], ["updated_at", "2023-02-17 19:40:14.583564"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:14.584720"], ["updated_at", "2023-02-17 19:40:14.584720"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:14.586154"], ["updated_at", "2023-02-17 19:40:14.586154"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:14.587430"], ["updated_at", "2023-02-17 19:40:14.587430"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:14.588809"], ["updated_at", "2023-02-17 19:40:14.588809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:14.589973"], ["updated_at", "2023-02-17 19:40:14.589973"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:14.591364"], ["updated_at", "2023-02-17 19:40:14.591364"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:14.592597"], ["updated_at", "2023-02-17 19:40:14.592597"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:14.594116"], ["updated_at", "2023-02-17 19:40:14.594116"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:14.595375"], ["updated_at", "2023-02-17 19:40:14.595375"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:14.596722"], ["updated_at", "2023-02-17 19:40:14.596722"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:14.597922"], ["updated_at", "2023-02-17 19:40:14.597922"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:14.599249"], ["updated_at", "2023-02-17 19:40:14.599249"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:14.600373"], ["updated_at", "2023-02-17 19:40:14.600373"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:14.601926"], ["updated_at", "2023-02-17 19:40:14.601926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:14.603202"], ["updated_at", "2023-02-17 19:40:14.603202"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:14.604588"], ["updated_at", "2023-02-17 19:40:14.604588"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:14.606210"], ["updated_at", "2023-02-17 19:40:14.606210"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:14.607939"], ["updated_at", "2023-02-17 19:40:14.607939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:14.609377"], ["updated_at", "2023-02-17 19:40:14.609377"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:14.610844"], ["updated_at", "2023-02-17 19:40:14.610844"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:14.612174"], ["updated_at", "2023-02-17 19:40:14.612174"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:14.613636"], ["updated_at", "2023-02-17 19:40:14.613636"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:14.614876"], ["updated_at", "2023-02-17 19:40:14.614876"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:14.616235"], ["updated_at", "2023-02-17 19:40:14.616235"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:14.617558"], ["updated_at", "2023-02-17 19:40:14.617558"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:14.618981"], ["updated_at", "2023-02-17 19:40:14.618981"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:14.620184"], ["updated_at", "2023-02-17 19:40:14.620184"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:14.621636"], ["updated_at", "2023-02-17 19:40:14.621636"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:14.622871"], ["updated_at", "2023-02-17 19:40:14.622871"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:14.624306"], ["updated_at", "2023-02-17 19:40:14.624306"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:14.625585"], ["updated_at", "2023-02-17 19:40:14.625585"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:14.626926"], ["updated_at", "2023-02-17 19:40:14.626926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:14.628142"], ["updated_at", "2023-02-17 19:40:14.628142"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:14.629734"], ["updated_at", "2023-02-17 19:40:14.629734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:14.631062"], ["updated_at", "2023-02-17 19:40:14.631062"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:14.632538"], ["updated_at", "2023-02-17 19:40:14.632538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:14.633780"], ["updated_at", "2023-02-17 19:40:14.633780"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:14.635157"], ["updated_at", "2023-02-17 19:40:14.635157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:14.636362"], ["updated_at", "2023-02-17 19:40:14.636362"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:14.637890"], ["updated_at", "2023-02-17 19:40:14.637890"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:14.639135"], ["updated_at", "2023-02-17 19:40:14.639135"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:14.640440"], ["updated_at", "2023-02-17 19:40:14.640440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:14.641659"], ["updated_at", "2023-02-17 19:40:14.641659"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:14.643073"], ["updated_at", "2023-02-17 19:40:14.643073"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:14.644269"], ["updated_at", "2023-02-17 19:40:14.644269"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:14.645669"], ["updated_at", "2023-02-17 19:40:14.645669"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:14.646906"], ["updated_at", "2023-02-17 19:40:14.646906"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:14.648254"], ["updated_at", "2023-02-17 19:40:14.648254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:14.649476"], ["updated_at", "2023-02-17 19:40:14.649476"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:14.650844"], ["updated_at", "2023-02-17 19:40:14.650844"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:14.652142"], ["updated_at", "2023-02-17 19:40:14.652142"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:14.653721"], ["updated_at", "2023-02-17 19:40:14.653721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:14.654949"], ["updated_at", "2023-02-17 19:40:14.654949"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:14.656387"], ["updated_at", "2023-02-17 19:40:14.656387"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:14.657762"], ["updated_at", "2023-02-17 19:40:14.657762"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:14.659154"], ["updated_at", "2023-02-17 19:40:14.659154"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:14.660358"], ["updated_at", "2023-02-17 19:40:14.660358"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:14.661868"], ["updated_at", "2023-02-17 19:40:14.661868"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:14.663107"], ["updated_at", "2023-02-17 19:40:14.663107"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:14.664450"], ["updated_at", "2023-02-17 19:40:14.664450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:14.665639"], ["updated_at", "2023-02-17 19:40:14.665639"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:14.666963"], ["updated_at", "2023-02-17 19:40:14.666963"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:14.668249"], ["updated_at", "2023-02-17 19:40:14.668249"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:14.669705"], ["updated_at", "2023-02-17 19:40:14.669705"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:14.670876"], ["updated_at", "2023-02-17 19:40:14.670876"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:14.672382"], ["updated_at", "2023-02-17 19:40:14.672382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:14.673650"], ["updated_at", "2023-02-17 19:40:14.673650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:14.675100"], ["updated_at", "2023-02-17 19:40:14.675100"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:14.676362"], ["updated_at", "2023-02-17 19:40:14.676362"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:14.677739"], ["updated_at", "2023-02-17 19:40:14.677739"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:14.678790"], ["updated_at", "2023-02-17 19:40:14.678790"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:14.679986"], ["updated_at", "2023-02-17 19:40:14.679986"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:14.681339"], ["updated_at", "2023-02-17 19:40:14.681339"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:14.682944"], ["updated_at", "2023-02-17 19:40:14.682944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:14.684287"], ["updated_at", "2023-02-17 19:40:14.684287"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:14.685387"], ["updated_at", "2023-02-17 19:40:14.685387"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:14.697009"], ["updated_at", "2023-02-17 19:40:14.697009"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:14.698371"], ["updated_at", "2023-02-17 19:40:14.698371"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:14.699406"], ["updated_at", "2023-02-17 19:40:14.699406"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.700301"], ["updated_at", "2023-02-17 19:40:14.700301"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.701121"], ["updated_at", "2023-02-17 19:40:14.701121"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.701990"], ["updated_at", "2023-02-17 19:40:14.701990"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.702745"], ["updated_at", "2023-02-17 19:40:14.702745"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.703507"], ["updated_at", "2023-02-17 19:40:14.703507"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:14.704590"], ["updated_at", "2023-02-17 19:40:14.704590"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.705627"], ["updated_at", "2023-02-17 19:40:14.705627"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.706580"], ["updated_at", "2023-02-17 19:40:14.706580"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.707475"], ["updated_at", "2023-02-17 19:40:14.707475"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.708370"], ["updated_at", "2023-02-17 19:40:14.708370"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.709306"], ["updated_at", "2023-02-17 19:40:14.709306"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.710080"], ["updated_at", "2023-02-17 19:40:14.710080"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.710814"], ["updated_at", "2023-02-17 19:40:14.710814"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.711603"], ["updated_at", "2023-02-17 19:40:14.711603"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.712531"], ["updated_at", "2023-02-17 19:40:14.712531"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.713345"], ["updated_at", "2023-02-17 19:40:14.713345"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.714126"], ["updated_at", "2023-02-17 19:40:14.714126"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.714997"], ["updated_at", "2023-02-17 19:40:14.714997"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:14.726617"], ["updated_at", "2023-02-17 19:40:14.726617"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:14.727847"], ["updated_at", "2023-02-17 19:40:14.727847"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:14.728818"], ["updated_at", "2023-02-17 19:40:14.728818"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:14.729838"], ["updated_at", "2023-02-17 19:40:14.729838"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:14.730811"], ["updated_at", "2023-02-17 19:40:14.730811"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:14.731609"], ["updated_at", "2023-02-17 19:40:14.731609"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:14.732421"], ["updated_at", "2023-02-17 19:40:14.732421"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:14.733290"], ["updated_at", "2023-02-17 19:40:14.733290"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:14.734386"], ["updated_at", "2023-02-17 19:40:14.734386"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.735496"], ["updated_at", "2023-02-17 19:40:14.735496"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.736402"], ["updated_at", "2023-02-17 19:40:14.736402"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.737403"], ["updated_at", "2023-02-17 19:40:14.737403"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.738473"], ["updated_at", "2023-02-17 19:40:14.738473"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.739386"], ["updated_at", "2023-02-17 19:40:14.739386"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.740206"], ["updated_at", "2023-02-17 19:40:14.740206"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.740969"], ["updated_at", "2023-02-17 19:40:14.740969"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.741803"], ["updated_at", "2023-02-17 19:40:14.741803"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.742784"], ["updated_at", "2023-02-17 19:40:14.742784"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.743590"], ["updated_at", "2023-02-17 19:40:14.743590"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.744334"], ["updated_at", "2023-02-17 19:40:14.744334"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:14.745264"], ["updated_at", "2023-02-17 19:40:14.745264"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.762445"], ["updated_at", "2023-02-17 19:40:14.762445"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.763619"], ["updated_at", "2023-02-17 19:40:14.763619"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.764517"], ["updated_at", "2023-02-17 19:40:14.764517"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.765258"], ["updated_at", "2023-02-17 19:40:14.765258"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.766187"], ["updated_at", "2023-02-17 19:40:14.766187"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.767304"], ["updated_at", "2023-02-17 19:40:14.767304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.768069"], ["updated_at", "2023-02-17 19:40:14.768069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.768775"], ["updated_at", "2023-02-17 19:40:14.768775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.769489"], ["updated_at", "2023-02-17 19:40:14.769489"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.770206"], ["updated_at", "2023-02-17 19:40:14.770206"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.770951"], ["updated_at", "2023-02-17 19:40:14.770951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.771694"], ["updated_at", "2023-02-17 19:40:14.771694"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.772554"], ["updated_at", "2023-02-17 19:40:14.772554"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.773319"], ["updated_at", "2023-02-17 19:40:14.773319"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.774140"], ["updated_at", "2023-02-17 19:40:14.774140"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:14.774972"], ["updated_at", "2023-02-17 19:40:14.774972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.791323"], ["updated_at", "2023-02-17 19:40:14.791323"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.792390"], ["updated_at", "2023-02-17 19:40:14.792390"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.793304"], ["updated_at", "2023-02-17 19:40:14.793304"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.794141"], ["updated_at", "2023-02-17 19:40:14.794141"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.794951"], ["updated_at", "2023-02-17 19:40:14.794951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.795732"], ["updated_at", "2023-02-17 19:40:14.795732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.796471"], ["updated_at", "2023-02-17 19:40:14.796471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.797248"], ["updated_at", "2023-02-17 19:40:14.797248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.798013"], ["updated_at", "2023-02-17 19:40:14.798013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.798764"], ["updated_at", "2023-02-17 19:40:14.798764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.799751"], ["updated_at", "2023-02-17 19:40:14.799751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.800600"], ["updated_at", "2023-02-17 19:40:14.800600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.801389"], ["updated_at", "2023-02-17 19:40:14.801389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.802113"], ["updated_at", "2023-02-17 19:40:14.802113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.802954"], ["updated_at", "2023-02-17 19:40:14.802954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:14.803683"], ["updated_at", "2023-02-17 19:40:14.803683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.820360"], ["updated_at", "2023-02-17 19:40:14.820360"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.821356"], ["updated_at", "2023-02-17 19:40:14.821356"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.822127"], ["updated_at", "2023-02-17 19:40:14.822127"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.823095"], ["updated_at", "2023-02-17 19:40:14.823095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.823955"], ["updated_at", "2023-02-17 19:40:14.823955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.824733"], ["updated_at", "2023-02-17 19:40:14.824733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.825546"], ["updated_at", "2023-02-17 19:40:14.825546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.826357"], ["updated_at", "2023-02-17 19:40:14.826357"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.827236"], ["updated_at", "2023-02-17 19:40:14.827236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.828113"], ["updated_at", "2023-02-17 19:40:14.828113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.828963"], ["updated_at", "2023-02-17 19:40:14.828963"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.829829"], ["updated_at", "2023-02-17 19:40:14.829829"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.830670"], ["updated_at", "2023-02-17 19:40:14.830670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.831578"], ["updated_at", "2023-02-17 19:40:14.831578"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.832557"], ["updated_at", "2023-02-17 19:40:14.832557"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:14.833690"], ["updated_at", "2023-02-17 19:40:14.833690"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.851855"], ["updated_at", "2023-02-17 19:40:14.851855"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.853043"], ["updated_at", "2023-02-17 19:40:14.853043"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.854084"], ["updated_at", "2023-02-17 19:40:14.854084"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.854982"], ["updated_at", "2023-02-17 19:40:14.854982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.855936"], ["updated_at", "2023-02-17 19:40:14.855936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.856804"], ["updated_at", "2023-02-17 19:40:14.856804"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.857747"], ["updated_at", "2023-02-17 19:40:14.857747"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.858599"], ["updated_at", "2023-02-17 19:40:14.858599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.859474"], ["updated_at", "2023-02-17 19:40:14.859474"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.860435"], ["updated_at", "2023-02-17 19:40:14.860435"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.861312"], ["updated_at", "2023-02-17 19:40:14.861312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.862173"], ["updated_at", "2023-02-17 19:40:14.862173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.863215"], ["updated_at", "2023-02-17 19:40:14.863215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.864162"], ["updated_at", "2023-02-17 19:40:14.864162"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.865026"], ["updated_at", "2023-02-17 19:40:14.865026"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:14.865920"], ["updated_at", "2023-02-17 19:40:14.865920"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.884743"], ["updated_at", "2023-02-17 19:40:14.884743"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.885817"], ["updated_at", "2023-02-17 19:40:14.885817"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.886909"], ["updated_at", "2023-02-17 19:40:14.886909"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.887864"], ["updated_at", "2023-02-17 19:40:14.887864"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.888817"], ["updated_at", "2023-02-17 19:40:14.888817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.889745"], ["updated_at", "2023-02-17 19:40:14.889745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.890645"], ["updated_at", "2023-02-17 19:40:14.890645"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.891464"], ["updated_at", "2023-02-17 19:40:14.891464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.892296"], ["updated_at", "2023-02-17 19:40:14.892296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.893289"], ["updated_at", "2023-02-17 19:40:14.893289"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.894242"], ["updated_at", "2023-02-17 19:40:14.894242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.895142"], ["updated_at", "2023-02-17 19:40:14.895142"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.896014"], ["updated_at", "2023-02-17 19:40:14.896014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.896831"], ["updated_at", "2023-02-17 19:40:14.896831"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.897696"], ["updated_at", "2023-02-17 19:40:14.897696"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:14.898522"], ["updated_at", "2023-02-17 19:40:14.898522"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:14.917169"], ["updated_at", "2023-02-17 19:40:14.917169"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:14.918242"], ["updated_at", "2023-02-17 19:40:14.918242"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:14.919154"], ["updated_at", "2023-02-17 19:40:14.919154"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:14.920010"], ["updated_at", "2023-02-17 19:40:14.920010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.920936"], ["updated_at", "2023-02-17 19:40:14.920936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.921872"], ["updated_at", "2023-02-17 19:40:14.921872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.922827"], ["updated_at", "2023-02-17 19:40:14.922827"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.923672"], ["updated_at", "2023-02-17 19:40:14.923672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.924488"], ["updated_at", "2023-02-17 19:40:14.924488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.925211"], ["updated_at", "2023-02-17 19:40:14.925211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.926056"], ["updated_at", "2023-02-17 19:40:14.926056"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.926889"], ["updated_at", "2023-02-17 19:40:14.926889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.927680"], ["updated_at", "2023-02-17 19:40:14.927680"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.928459"], ["updated_at", "2023-02-17 19:40:14.928459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.929434"], ["updated_at", "2023-02-17 19:40:14.929434"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:14.930328"], ["updated_at", "2023-02-17 19:40:14.930328"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:40:14 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:14.939686"], ["updated_at", "2023-02-17 19:40:14.939686"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:14.941304"], ["updated_at", "2023-02-17 19:40:14.941304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:14.944488"], ["updated_at", "2023-02-17 19:40:14.944488"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:14.945733"], ["updated_at", "2023-02-17 19:40:14.945733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:14.948695"], ["updated_at", "2023-02-17 19:40:14.948695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:14.949961"], ["updated_at", "2023-02-17 19:40:14.949961"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:14.952149"], ["updated_at", "2023-02-17 19:40:14.952149"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:14.953850"], ["updated_at", "2023-02-17 19:40:14.953850"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:14.955584"], ["updated_at", "2023-02-17 19:40:14.955584"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:14.957035"], ["updated_at", "2023-02-17 19:40:14.957035"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:14.958469"], ["updated_at", "2023-02-17 19:40:14.958469"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:14.959911"], ["updated_at", "2023-02-17 19:40:14.959911"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:14.961511"], ["updated_at", "2023-02-17 19:40:14.961511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:14.962817"], ["updated_at", "2023-02-17 19:40:14.962817"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:14.964329"], ["updated_at", "2023-02-17 19:40:14.964329"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:14.965784"], ["updated_at", "2023-02-17 19:40:14.965784"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:14.967295"], ["updated_at", "2023-02-17 19:40:14.967295"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:14.968496"], ["updated_at", "2023-02-17 19:40:14.968496"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:14.970059"], ["updated_at", "2023-02-17 19:40:14.970059"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:14.971290"], ["updated_at", "2023-02-17 19:40:14.971290"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:14.972811"], ["updated_at", "2023-02-17 19:40:14.972811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:14.974383"], ["updated_at", "2023-02-17 19:40:14.974383"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:14.975829"], ["updated_at", "2023-02-17 19:40:14.975829"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:14.977113"], ["updated_at", "2023-02-17 19:40:14.977113"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:14.978476"], ["updated_at", "2023-02-17 19:40:14.978476"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:14.979605"], ["updated_at", "2023-02-17 19:40:14.979605"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:14.981064"], ["updated_at", "2023-02-17 19:40:14.981064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:14.982287"], ["updated_at", "2023-02-17 19:40:14.982287"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:14.983720"], ["updated_at", "2023-02-17 19:40:14.983720"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:14.985014"], ["updated_at", "2023-02-17 19:40:14.985014"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:14.986375"], ["updated_at", "2023-02-17 19:40:14.986375"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:14.987532"], ["updated_at", "2023-02-17 19:40:14.987532"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:14.988881"], ["updated_at", "2023-02-17 19:40:14.988881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:14.990054"], ["updated_at", "2023-02-17 19:40:14.990054"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:14.991392"], ["updated_at", "2023-02-17 19:40:14.991392"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:14.992656"], ["updated_at", "2023-02-17 19:40:14.992656"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:14.994298"], ["updated_at", "2023-02-17 19:40:14.994298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:14.995804"], ["updated_at", "2023-02-17 19:40:14.995804"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:14.997309"], ["updated_at", "2023-02-17 19:40:14.997309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:14.998493"], ["updated_at", "2023-02-17 19:40:14.998493"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:14.999960"], ["updated_at", "2023-02-17 19:40:14.999960"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:15.001177"], ["updated_at", "2023-02-17 19:40:15.001177"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:15.002579"], ["updated_at", "2023-02-17 19:40:15.002579"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.004187"], ["updated_at", "2023-02-17 19:40:15.004187"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:15.005681"], ["updated_at", "2023-02-17 19:40:15.005681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:15.006925"], ["updated_at", "2023-02-17 19:40:15.006925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:15.008324"], ["updated_at", "2023-02-17 19:40:15.008324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:15.009488"], ["updated_at", "2023-02-17 19:40:15.009488"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:15.010855"], ["updated_at", "2023-02-17 19:40:15.010855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:15.012079"], ["updated_at", "2023-02-17 19:40:15.012079"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:15.013544"], ["updated_at", "2023-02-17 19:40:15.013544"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:15.014925"], ["updated_at", "2023-02-17 19:40:15.014925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:15.016320"], ["updated_at", "2023-02-17 19:40:15.016320"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:15.017482"], ["updated_at", "2023-02-17 19:40:15.017482"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:15.018897"], ["updated_at", "2023-02-17 19:40:15.018897"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:15.020089"], ["updated_at", "2023-02-17 19:40:15.020089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:15.021523"], ["updated_at", "2023-02-17 19:40:15.021523"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:15.022820"], ["updated_at", "2023-02-17 19:40:15.022820"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:15.024299"], ["updated_at", "2023-02-17 19:40:15.024299"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:15.025546"], ["updated_at", "2023-02-17 19:40:15.025546"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:15.026987"], ["updated_at", "2023-02-17 19:40:15.026987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:15.028156"], ["updated_at", "2023-02-17 19:40:15.028156"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:15.029684"], ["updated_at", "2023-02-17 19:40:15.029684"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.030910"], ["updated_at", "2023-02-17 19:40:15.030910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:15.032315"], ["updated_at", "2023-02-17 19:40:15.032315"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:15.033736"], ["updated_at", "2023-02-17 19:40:15.033736"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:15.035431"], ["updated_at", "2023-02-17 19:40:15.035431"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:15.036833"], ["updated_at", "2023-02-17 19:40:15.036833"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:15.038223"], ["updated_at", "2023-02-17 19:40:15.038223"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.039512"], ["updated_at", "2023-02-17 19:40:15.039512"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:15.040978"], ["updated_at", "2023-02-17 19:40:15.040978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:15.042195"], ["updated_at", "2023-02-17 19:40:15.042195"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:15.043767"], ["updated_at", "2023-02-17 19:40:15.043767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:15.045025"], ["updated_at", "2023-02-17 19:40:15.045025"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:15.046495"], ["updated_at", "2023-02-17 19:40:15.046495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:15.047733"], ["updated_at", "2023-02-17 19:40:15.047733"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:15.049157"], ["updated_at", "2023-02-17 19:40:15.049157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:15.050458"], ["updated_at", "2023-02-17 19:40:15.050458"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:15.051933"], ["updated_at", "2023-02-17 19:40:15.051933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:15.053193"], ["updated_at", "2023-02-17 19:40:15.053193"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:15.055034"], ["updated_at", "2023-02-17 19:40:15.055034"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.056527"], ["updated_at", "2023-02-17 19:40:15.056527"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:15.058176"], ["updated_at", "2023-02-17 19:40:15.058176"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:15.059472"], ["updated_at", "2023-02-17 19:40:15.059472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:15.061044"], ["updated_at", "2023-02-17 19:40:15.061044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:15.062490"], ["updated_at", "2023-02-17 19:40:15.062490"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:15.064106"], ["updated_at", "2023-02-17 19:40:15.064106"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:15.065518"], ["updated_at", "2023-02-17 19:40:15.065518"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:15.067090"], ["updated_at", "2023-02-17 19:40:15.067090"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:15.068363"], ["updated_at", "2023-02-17 19:40:15.068363"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:15.070320"], ["updated_at", "2023-02-17 19:40:15.070320"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:15.072179"], ["updated_at", "2023-02-17 19:40:15.072179"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:15.074235"], ["updated_at", "2023-02-17 19:40:15.074235"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:15.076055"], ["updated_at", "2023-02-17 19:40:15.076055"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:15.077977"], ["updated_at", "2023-02-17 19:40:15.077977"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:15.079588"], ["updated_at", "2023-02-17 19:40:15.079588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:15.081565"], ["updated_at", "2023-02-17 19:40:15.081565"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:15.083478"], ["updated_at", "2023-02-17 19:40:15.083478"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:15.087465"], ["updated_at", "2023-02-17 19:40:15.087465"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:15.089101"], ["updated_at", "2023-02-17 19:40:15.089101"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:15.090498"], ["updated_at", "2023-02-17 19:40:15.090498"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:15.107011"], ["updated_at", "2023-02-17 19:40:15.107011"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:15.108642"], ["updated_at", "2023-02-17 19:40:15.108642"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:15.109951"], ["updated_at", "2023-02-17 19:40:15.109951"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.111122"], ["updated_at", "2023-02-17 19:40:15.111122"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.112312"], ["updated_at", "2023-02-17 19:40:15.112312"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.113430"], ["updated_at", "2023-02-17 19:40:15.113430"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.114605"], ["updated_at", "2023-02-17 19:40:15.114605"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.115616"], ["updated_at", "2023-02-17 19:40:15.115616"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:15.116652"], ["updated_at", "2023-02-17 19:40:15.116652"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.119418"], ["updated_at", "2023-02-17 19:40:15.119418"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.120693"], ["updated_at", "2023-02-17 19:40:15.120693"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.121880"], ["updated_at", "2023-02-17 19:40:15.121880"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.122905"], ["updated_at", "2023-02-17 19:40:15.122905"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.124029"], ["updated_at", "2023-02-17 19:40:15.124029"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.125500"], ["updated_at", "2023-02-17 19:40:15.125500"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.126665"], ["updated_at", "2023-02-17 19:40:15.126665"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.127693"], ["updated_at", "2023-02-17 19:40:15.127693"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.128702"], ["updated_at", "2023-02-17 19:40:15.128702"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.129817"], ["updated_at", "2023-02-17 19:40:15.129817"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.130892"], ["updated_at", "2023-02-17 19:40:15.130892"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.131936"], ["updated_at", "2023-02-17 19:40:15.131936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:15.148441"], ["updated_at", "2023-02-17 19:40:15.148441"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:15.149952"], ["updated_at", "2023-02-17 19:40:15.149952"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:15.151217"], ["updated_at", "2023-02-17 19:40:15.151217"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:15.153991"], ["updated_at", "2023-02-17 19:40:15.153991"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:15.155445"], ["updated_at", "2023-02-17 19:40:15.155445"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:15.156537"], ["updated_at", "2023-02-17 19:40:15.156537"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:15.157486"], ["updated_at", "2023-02-17 19:40:15.157486"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:15.158334"], ["updated_at", "2023-02-17 19:40:15.158334"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:15.159488"], ["updated_at", "2023-02-17 19:40:15.159488"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.160618"], ["updated_at", "2023-02-17 19:40:15.160618"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.161759"], ["updated_at", "2023-02-17 19:40:15.161759"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.162868"], ["updated_at", "2023-02-17 19:40:15.162868"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.164007"], ["updated_at", "2023-02-17 19:40:15.164007"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.165434"], ["updated_at", "2023-02-17 19:40:15.165434"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.166556"], ["updated_at", "2023-02-17 19:40:15.166556"]]
LikertScaleQuestion Create (1.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.167624"], ["updated_at", "2023-02-17 19:40:15.167624"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.169713"], ["updated_at", "2023-02-17 19:40:15.169713"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.170822"], ["updated_at", "2023-02-17 19:40:15.170822"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.172038"], ["updated_at", "2023-02-17 19:40:15.172038"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.173024"], ["updated_at", "2023-02-17 19:40:15.173024"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.173952"], ["updated_at", "2023-02-17 19:40:15.173952"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.4ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.193092"], ["updated_at", "2023-02-17 19:40:15.193092"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.194537"], ["updated_at", "2023-02-17 19:40:15.194537"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.195603"], ["updated_at", "2023-02-17 19:40:15.195603"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.196533"], ["updated_at", "2023-02-17 19:40:15.196533"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.197577"], ["updated_at", "2023-02-17 19:40:15.197577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.198587"], ["updated_at", "2023-02-17 19:40:15.198587"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.199473"], ["updated_at", "2023-02-17 19:40:15.199473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.200321"], ["updated_at", "2023-02-17 19:40:15.200321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.201184"], ["updated_at", "2023-02-17 19:40:15.201184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.202216"], ["updated_at", "2023-02-17 19:40:15.202216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.203137"], ["updated_at", "2023-02-17 19:40:15.203137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.204028"], ["updated_at", "2023-02-17 19:40:15.204028"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.204891"], ["updated_at", "2023-02-17 19:40:15.204891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.205888"], ["updated_at", "2023-02-17 19:40:15.205888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.206724"], ["updated_at", "2023-02-17 19:40:15.206724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.207538"], ["updated_at", "2023-02-17 19:40:15.207538"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.226264"], ["updated_at", "2023-02-17 19:40:15.226264"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.227386"], ["updated_at", "2023-02-17 19:40:15.227386"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.228408"], ["updated_at", "2023-02-17 19:40:15.228408"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.229312"], ["updated_at", "2023-02-17 19:40:15.229312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.230250"], ["updated_at", "2023-02-17 19:40:15.230250"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.231136"], ["updated_at", "2023-02-17 19:40:15.231136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.232205"], ["updated_at", "2023-02-17 19:40:15.232205"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.233133"], ["updated_at", "2023-02-17 19:40:15.233133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.233989"], ["updated_at", "2023-02-17 19:40:15.233989"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.234863"], ["updated_at", "2023-02-17 19:40:15.234863"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.235917"], ["updated_at", "2023-02-17 19:40:15.235917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.237242"], ["updated_at", "2023-02-17 19:40:15.237242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.238545"], ["updated_at", "2023-02-17 19:40:15.238545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.239473"], ["updated_at", "2023-02-17 19:40:15.239473"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.240496"], ["updated_at", "2023-02-17 19:40:15.240496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.241624"], ["updated_at", "2023-02-17 19:40:15.241624"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.259873"], ["updated_at", "2023-02-17 19:40:15.259873"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.261032"], ["updated_at", "2023-02-17 19:40:15.261032"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.262212"], ["updated_at", "2023-02-17 19:40:15.262212"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.263539"], ["updated_at", "2023-02-17 19:40:15.263539"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.264969"], ["updated_at", "2023-02-17 19:40:15.264969"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.265926"], ["updated_at", "2023-02-17 19:40:15.265926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.266794"], ["updated_at", "2023-02-17 19:40:15.266794"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.267768"], ["updated_at", "2023-02-17 19:40:15.267768"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.268735"], ["updated_at", "2023-02-17 19:40:15.268735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.269609"], ["updated_at", "2023-02-17 19:40:15.269609"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.270502"], ["updated_at", "2023-02-17 19:40:15.270502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.271503"], ["updated_at", "2023-02-17 19:40:15.271503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.272456"], ["updated_at", "2023-02-17 19:40:15.272456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.273469"], ["updated_at", "2023-02-17 19:40:15.273469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.274375"], ["updated_at", "2023-02-17 19:40:15.274375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.275367"], ["updated_at", "2023-02-17 19:40:15.275367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.298710"], ["updated_at", "2023-02-17 19:40:15.298710"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.299703"], ["updated_at", "2023-02-17 19:40:15.299703"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.300489"], ["updated_at", "2023-02-17 19:40:15.300489"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.301248"], ["updated_at", "2023-02-17 19:40:15.301248"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.302167"], ["updated_at", "2023-02-17 19:40:15.302167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.302966"], ["updated_at", "2023-02-17 19:40:15.302966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.303708"], ["updated_at", "2023-02-17 19:40:15.303708"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.304497"], ["updated_at", "2023-02-17 19:40:15.304497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.305254"], ["updated_at", "2023-02-17 19:40:15.305254"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.306184"], ["updated_at", "2023-02-17 19:40:15.306184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.306977"], ["updated_at", "2023-02-17 19:40:15.306977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.307711"], ["updated_at", "2023-02-17 19:40:15.307711"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.308424"], ["updated_at", "2023-02-17 19:40:15.308424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.309245"], ["updated_at", "2023-02-17 19:40:15.309245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.310045"], ["updated_at", "2023-02-17 19:40:15.310045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.310763"], ["updated_at", "2023-02-17 19:40:15.310763"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.328931"], ["updated_at", "2023-02-17 19:40:15.328931"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.330191"], ["updated_at", "2023-02-17 19:40:15.330191"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.331107"], ["updated_at", "2023-02-17 19:40:15.331107"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.331848"], ["updated_at", "2023-02-17 19:40:15.331848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.332668"], ["updated_at", "2023-02-17 19:40:15.332668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.333480"], ["updated_at", "2023-02-17 19:40:15.333480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.334432"], ["updated_at", "2023-02-17 19:40:15.334432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.335242"], ["updated_at", "2023-02-17 19:40:15.335242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.335983"], ["updated_at", "2023-02-17 19:40:15.335983"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.336688"], ["updated_at", "2023-02-17 19:40:15.336688"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.337416"], ["updated_at", "2023-02-17 19:40:15.337416"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.338430"], ["updated_at", "2023-02-17 19:40:15.338430"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.339339"], ["updated_at", "2023-02-17 19:40:15.339339"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.340095"], ["updated_at", "2023-02-17 19:40:15.340095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.340806"], ["updated_at", "2023-02-17 19:40:15.340806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.341638"], ["updated_at", "2023-02-17 19:40:15.341638"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.358576"], ["updated_at", "2023-02-17 19:40:15.358576"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.359557"], ["updated_at", "2023-02-17 19:40:15.359557"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.360462"], ["updated_at", "2023-02-17 19:40:15.360462"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.361267"], ["updated_at", "2023-02-17 19:40:15.361267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.362129"], ["updated_at", "2023-02-17 19:40:15.362129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.363180"], ["updated_at", "2023-02-17 19:40:15.363180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.364190"], ["updated_at", "2023-02-17 19:40:15.364190"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.365064"], ["updated_at", "2023-02-17 19:40:15.365064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.365933"], ["updated_at", "2023-02-17 19:40:15.365933"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.367058"], ["updated_at", "2023-02-17 19:40:15.367058"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.367809"], ["updated_at", "2023-02-17 19:40:15.367809"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.368512"], ["updated_at", "2023-02-17 19:40:15.368512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.369230"], ["updated_at", "2023-02-17 19:40:15.369230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.370087"], ["updated_at", "2023-02-17 19:40:15.370087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.370971"], ["updated_at", "2023-02-17 19:40:15.370971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.371723"], ["updated_at", "2023-02-17 19:40:15.371723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:40:15 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:15.381190"], ["updated_at", "2023-02-17 19:40:15.381190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:15.382789"], ["updated_at", "2023-02-17 19:40:15.382789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:15.385846"], ["updated_at", "2023-02-17 19:40:15.385846"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:15.387084"], ["updated_at", "2023-02-17 19:40:15.387084"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:15.390254"], ["updated_at", "2023-02-17 19:40:15.390254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:15.391437"], ["updated_at", "2023-02-17 19:40:15.391437"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:15.393803"], ["updated_at", "2023-02-17 19:40:15.393803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:15.395284"], ["updated_at", "2023-02-17 19:40:15.395284"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:15.397317"], ["updated_at", "2023-02-17 19:40:15.397317"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:15.398716"], ["updated_at", "2023-02-17 19:40:15.398716"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:15.400282"], ["updated_at", "2023-02-17 19:40:15.400282"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:15.401617"], ["updated_at", "2023-02-17 19:40:15.401617"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:15.403067"], ["updated_at", "2023-02-17 19:40:15.403067"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:15.404564"], ["updated_at", "2023-02-17 19:40:15.404564"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:15.406069"], ["updated_at", "2023-02-17 19:40:15.406069"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:15.407272"], ["updated_at", "2023-02-17 19:40:15.407272"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:15.408785"], ["updated_at", "2023-02-17 19:40:15.408785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:15.410023"], ["updated_at", "2023-02-17 19:40:15.410023"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:15.411555"], ["updated_at", "2023-02-17 19:40:15.411555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:15.413048"], ["updated_at", "2023-02-17 19:40:15.413048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:15.414711"], ["updated_at", "2023-02-17 19:40:15.414711"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:15.416089"], ["updated_at", "2023-02-17 19:40:15.416089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:15.417541"], ["updated_at", "2023-02-17 19:40:15.417541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:15.418769"], ["updated_at", "2023-02-17 19:40:15.418769"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:15.420494"], ["updated_at", "2023-02-17 19:40:15.420494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:15.421823"], ["updated_at", "2023-02-17 19:40:15.421823"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:15.423376"], ["updated_at", "2023-02-17 19:40:15.423376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:15.424561"], ["updated_at", "2023-02-17 19:40:15.424561"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:15.425877"], ["updated_at", "2023-02-17 19:40:15.425877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:15.427276"], ["updated_at", "2023-02-17 19:40:15.427276"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:15.428704"], ["updated_at", "2023-02-17 19:40:15.428704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:15.430327"], ["updated_at", "2023-02-17 19:40:15.430327"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:15.431797"], ["updated_at", "2023-02-17 19:40:15.431797"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:15.433044"], ["updated_at", "2023-02-17 19:40:15.433044"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:15.434671"], ["updated_at", "2023-02-17 19:40:15.434671"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:15.435921"], ["updated_at", "2023-02-17 19:40:15.435921"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:15.437293"], ["updated_at", "2023-02-17 19:40:15.437293"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:15.438782"], ["updated_at", "2023-02-17 19:40:15.438782"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:15.440889"], ["updated_at", "2023-02-17 19:40:15.440889"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:15.442218"], ["updated_at", "2023-02-17 19:40:15.442218"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:15.443688"], ["updated_at", "2023-02-17 19:40:15.443688"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:15.444917"], ["updated_at", "2023-02-17 19:40:15.444917"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:15.446458"], ["updated_at", "2023-02-17 19:40:15.446458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.448040"], ["updated_at", "2023-02-17 19:40:15.448040"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:15.449494"], ["updated_at", "2023-02-17 19:40:15.449494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:15.450646"], ["updated_at", "2023-02-17 19:40:15.450646"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:15.452178"], ["updated_at", "2023-02-17 19:40:15.452178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:15.453478"], ["updated_at", "2023-02-17 19:40:15.453478"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:15.455009"], ["updated_at", "2023-02-17 19:40:15.455009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:15.456285"], ["updated_at", "2023-02-17 19:40:15.456285"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:15.457667"], ["updated_at", "2023-02-17 19:40:15.457667"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:15.458951"], ["updated_at", "2023-02-17 19:40:15.458951"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:15.460360"], ["updated_at", "2023-02-17 19:40:15.460360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:15.461561"], ["updated_at", "2023-02-17 19:40:15.461561"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:15.463400"], ["updated_at", "2023-02-17 19:40:15.463400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:15.464768"], ["updated_at", "2023-02-17 19:40:15.464768"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:15.466220"], ["updated_at", "2023-02-17 19:40:15.466220"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:15.467826"], ["updated_at", "2023-02-17 19:40:15.467826"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:15.469310"], ["updated_at", "2023-02-17 19:40:15.469310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:15.470725"], ["updated_at", "2023-02-17 19:40:15.470725"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:15.472200"], ["updated_at", "2023-02-17 19:40:15.472200"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:15.473734"], ["updated_at", "2023-02-17 19:40:15.473734"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:15.475180"], ["updated_at", "2023-02-17 19:40:15.475180"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.476314"], ["updated_at", "2023-02-17 19:40:15.476314"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:15.477855"], ["updated_at", "2023-02-17 19:40:15.477855"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:15.479222"], ["updated_at", "2023-02-17 19:40:15.479222"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:15.480874"], ["updated_at", "2023-02-17 19:40:15.480874"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:15.482266"], ["updated_at", "2023-02-17 19:40:15.482266"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:15.483702"], ["updated_at", "2023-02-17 19:40:15.483702"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.484995"], ["updated_at", "2023-02-17 19:40:15.484995"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:15.486702"], ["updated_at", "2023-02-17 19:40:15.486702"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:15.487926"], ["updated_at", "2023-02-17 19:40:15.487926"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:15.489424"], ["updated_at", "2023-02-17 19:40:15.489424"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:15.490602"], ["updated_at", "2023-02-17 19:40:15.490602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:15.491915"], ["updated_at", "2023-02-17 19:40:15.491915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:15.493322"], ["updated_at", "2023-02-17 19:40:15.493322"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:15.494784"], ["updated_at", "2023-02-17 19:40:15.494784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:15.496035"], ["updated_at", "2023-02-17 19:40:15.496035"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:15.497944"], ["updated_at", "2023-02-17 19:40:15.497944"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:15.499279"], ["updated_at", "2023-02-17 19:40:15.499279"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:15.500883"], ["updated_at", "2023-02-17 19:40:15.500883"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.502242"], ["updated_at", "2023-02-17 19:40:15.502242"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:15.503974"], ["updated_at", "2023-02-17 19:40:15.503974"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:15.505331"], ["updated_at", "2023-02-17 19:40:15.505331"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:15.506711"], ["updated_at", "2023-02-17 19:40:15.506711"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:15.508145"], ["updated_at", "2023-02-17 19:40:15.508145"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:15.509675"], ["updated_at", "2023-02-17 19:40:15.509675"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:15.510904"], ["updated_at", "2023-02-17 19:40:15.510904"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:15.512469"], ["updated_at", "2023-02-17 19:40:15.512469"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:15.514086"], ["updated_at", "2023-02-17 19:40:15.514086"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:15.515785"], ["updated_at", "2023-02-17 19:40:15.515785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:15.517288"], ["updated_at", "2023-02-17 19:40:15.517288"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:15.519242"], ["updated_at", "2023-02-17 19:40:15.519242"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:15.520545"], ["updated_at", "2023-02-17 19:40:15.520545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:15.522197"], ["updated_at", "2023-02-17 19:40:15.522197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:15.523366"], ["updated_at", "2023-02-17 19:40:15.523366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:15.524769"], ["updated_at", "2023-02-17 19:40:15.524769"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:15.526414"], ["updated_at", "2023-02-17 19:40:15.526414"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:15.527978"], ["updated_at", "2023-02-17 19:40:15.527978"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:15.529287"], ["updated_at", "2023-02-17 19:40:15.529287"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:15.530301"], ["updated_at", "2023-02-17 19:40:15.530301"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:15.542625"], ["updated_at", "2023-02-17 19:40:15.542625"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:15.544055"], ["updated_at", "2023-02-17 19:40:15.544055"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:15.545141"], ["updated_at", "2023-02-17 19:40:15.545141"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.546030"], ["updated_at", "2023-02-17 19:40:15.546030"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.547065"], ["updated_at", "2023-02-17 19:40:15.547065"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.547924"], ["updated_at", "2023-02-17 19:40:15.547924"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.548642"], ["updated_at", "2023-02-17 19:40:15.548642"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.549328"], ["updated_at", "2023-02-17 19:40:15.549328"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:15.550153"], ["updated_at", "2023-02-17 19:40:15.550153"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.551138"], ["updated_at", "2023-02-17 19:40:15.551138"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.552008"], ["updated_at", "2023-02-17 19:40:15.552008"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.552870"], ["updated_at", "2023-02-17 19:40:15.552870"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.553936"], ["updated_at", "2023-02-17 19:40:15.553936"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.555272"], ["updated_at", "2023-02-17 19:40:15.555272"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.556274"], ["updated_at", "2023-02-17 19:40:15.556274"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.557097"], ["updated_at", "2023-02-17 19:40:15.557097"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.557869"], ["updated_at", "2023-02-17 19:40:15.557869"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.558762"], ["updated_at", "2023-02-17 19:40:15.558762"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.559516"], ["updated_at", "2023-02-17 19:40:15.559516"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.560258"], ["updated_at", "2023-02-17 19:40:15.560258"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.561016"], ["updated_at", "2023-02-17 19:40:15.561016"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:15.573321"], ["updated_at", "2023-02-17 19:40:15.573321"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:15.574849"], ["updated_at", "2023-02-17 19:40:15.574849"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:15.575891"], ["updated_at", "2023-02-17 19:40:15.575891"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:15.577012"], ["updated_at", "2023-02-17 19:40:15.577012"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:15.577832"], ["updated_at", "2023-02-17 19:40:15.577832"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:15.578547"], ["updated_at", "2023-02-17 19:40:15.578547"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:15.579198"], ["updated_at", "2023-02-17 19:40:15.579198"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:15.579952"], ["updated_at", "2023-02-17 19:40:15.579952"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:15.580755"], ["updated_at", "2023-02-17 19:40:15.580755"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.581629"], ["updated_at", "2023-02-17 19:40:15.581629"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.582431"], ["updated_at", "2023-02-17 19:40:15.582431"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.583186"], ["updated_at", "2023-02-17 19:40:15.583186"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.584168"], ["updated_at", "2023-02-17 19:40:15.584168"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.585044"], ["updated_at", "2023-02-17 19:40:15.585044"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.585803"], ["updated_at", "2023-02-17 19:40:15.585803"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.586536"], ["updated_at", "2023-02-17 19:40:15.586536"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.587287"], ["updated_at", "2023-02-17 19:40:15.587287"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.588177"], ["updated_at", "2023-02-17 19:40:15.588177"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.588921"], ["updated_at", "2023-02-17 19:40:15.588921"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.589654"], ["updated_at", "2023-02-17 19:40:15.589654"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:15.590367"], ["updated_at", "2023-02-17 19:40:15.590367"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.607024"], ["updated_at", "2023-02-17 19:40:15.607024"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.608139"], ["updated_at", "2023-02-17 19:40:15.608139"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.608970"], ["updated_at", "2023-02-17 19:40:15.608970"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.609779"], ["updated_at", "2023-02-17 19:40:15.609779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.610594"], ["updated_at", "2023-02-17 19:40:15.610594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.611395"], ["updated_at", "2023-02-17 19:40:15.611395"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.612104"], ["updated_at", "2023-02-17 19:40:15.612104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.612782"], ["updated_at", "2023-02-17 19:40:15.612782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.613694"], ["updated_at", "2023-02-17 19:40:15.613694"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.614530"], ["updated_at", "2023-02-17 19:40:15.614530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.615277"], ["updated_at", "2023-02-17 19:40:15.615277"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.615974"], ["updated_at", "2023-02-17 19:40:15.615974"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.616653"], ["updated_at", "2023-02-17 19:40:15.616653"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.617463"], ["updated_at", "2023-02-17 19:40:15.617463"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.618193"], ["updated_at", "2023-02-17 19:40:15.618193"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:15.618880"], ["updated_at", "2023-02-17 19:40:15.618880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.634905"], ["updated_at", "2023-02-17 19:40:15.634905"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.636046"], ["updated_at", "2023-02-17 19:40:15.636046"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.637141"], ["updated_at", "2023-02-17 19:40:15.637141"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.637958"], ["updated_at", "2023-02-17 19:40:15.637958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.638723"], ["updated_at", "2023-02-17 19:40:15.638723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.639442"], ["updated_at", "2023-02-17 19:40:15.639442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.640258"], ["updated_at", "2023-02-17 19:40:15.640258"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.641021"], ["updated_at", "2023-02-17 19:40:15.641021"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.642213"], ["updated_at", "2023-02-17 19:40:15.642213"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.643272"], ["updated_at", "2023-02-17 19:40:15.643272"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.644083"], ["updated_at", "2023-02-17 19:40:15.644083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.644781"], ["updated_at", "2023-02-17 19:40:15.644781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.645600"], ["updated_at", "2023-02-17 19:40:15.645600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.646341"], ["updated_at", "2023-02-17 19:40:15.646341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.647037"], ["updated_at", "2023-02-17 19:40:15.647037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:15.647719"], ["updated_at", "2023-02-17 19:40:15.647719"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.663715"], ["updated_at", "2023-02-17 19:40:15.663715"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.664839"], ["updated_at", "2023-02-17 19:40:15.664839"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.665661"], ["updated_at", "2023-02-17 19:40:15.665661"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.666374"], ["updated_at", "2023-02-17 19:40:15.666374"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.667115"], ["updated_at", "2023-02-17 19:40:15.667115"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.667816"], ["updated_at", "2023-02-17 19:40:15.667816"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.668613"], ["updated_at", "2023-02-17 19:40:15.668613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.669308"], ["updated_at", "2023-02-17 19:40:15.669308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.670217"], ["updated_at", "2023-02-17 19:40:15.670217"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.670978"], ["updated_at", "2023-02-17 19:40:15.670978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.671681"], ["updated_at", "2023-02-17 19:40:15.671681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.672617"], ["updated_at", "2023-02-17 19:40:15.672617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.673390"], ["updated_at", "2023-02-17 19:40:15.673390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.674132"], ["updated_at", "2023-02-17 19:40:15.674132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.674825"], ["updated_at", "2023-02-17 19:40:15.674825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:15.675519"], ["updated_at", "2023-02-17 19:40:15.675519"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.691628"], ["updated_at", "2023-02-17 19:40:15.691628"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.692579"], ["updated_at", "2023-02-17 19:40:15.692579"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.693340"], ["updated_at", "2023-02-17 19:40:15.693340"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.694064"], ["updated_at", "2023-02-17 19:40:15.694064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.695033"], ["updated_at", "2023-02-17 19:40:15.695033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.695859"], ["updated_at", "2023-02-17 19:40:15.695859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.696563"], ["updated_at", "2023-02-17 19:40:15.696563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.697283"], ["updated_at", "2023-02-17 19:40:15.697283"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.697976"], ["updated_at", "2023-02-17 19:40:15.697976"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.698766"], ["updated_at", "2023-02-17 19:40:15.698766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.699466"], ["updated_at", "2023-02-17 19:40:15.699466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.700143"], ["updated_at", "2023-02-17 19:40:15.700143"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.700801"], ["updated_at", "2023-02-17 19:40:15.700801"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.701494"], ["updated_at", "2023-02-17 19:40:15.701494"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.702276"], ["updated_at", "2023-02-17 19:40:15.702276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:15.703184"], ["updated_at", "2023-02-17 19:40:15.703184"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.722565"], ["updated_at", "2023-02-17 19:40:15.722565"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.723750"], ["updated_at", "2023-02-17 19:40:15.723750"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.724838"], ["updated_at", "2023-02-17 19:40:15.724838"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.725894"], ["updated_at", "2023-02-17 19:40:15.725894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.727066"], ["updated_at", "2023-02-17 19:40:15.727066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.728130"], ["updated_at", "2023-02-17 19:40:15.728130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.728987"], ["updated_at", "2023-02-17 19:40:15.728987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.729828"], ["updated_at", "2023-02-17 19:40:15.729828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.730608"], ["updated_at", "2023-02-17 19:40:15.730608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.731510"], ["updated_at", "2023-02-17 19:40:15.731510"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.732479"], ["updated_at", "2023-02-17 19:40:15.732479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.733295"], ["updated_at", "2023-02-17 19:40:15.733295"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.734276"], ["updated_at", "2023-02-17 19:40:15.734276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.735505"], ["updated_at", "2023-02-17 19:40:15.735505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.736458"], ["updated_at", "2023-02-17 19:40:15.736458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:15.737306"], ["updated_at", "2023-02-17 19:40:15.737306"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:15.755033"], ["updated_at", "2023-02-17 19:40:15.755033"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:15.756072"], ["updated_at", "2023-02-17 19:40:15.756072"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.756807"], ["updated_at", "2023-02-17 19:40:15.756807"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.757506"], ["updated_at", "2023-02-17 19:40:15.757506"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.758377"], ["updated_at", "2023-02-17 19:40:15.758377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.759099"], ["updated_at", "2023-02-17 19:40:15.759099"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.759766"], ["updated_at", "2023-02-17 19:40:15.759766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.760440"], ["updated_at", "2023-02-17 19:40:15.760440"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.761141"], ["updated_at", "2023-02-17 19:40:15.761141"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.762009"], ["updated_at", "2023-02-17 19:40:15.762009"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.762859"], ["updated_at", "2023-02-17 19:40:15.762859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.763590"], ["updated_at", "2023-02-17 19:40:15.763590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.764462"], ["updated_at", "2023-02-17 19:40:15.764462"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.765573"], ["updated_at", "2023-02-17 19:40:15.765573"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.766376"], ["updated_at", "2023-02-17 19:40:15.766376"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:15.767046"], ["updated_at", "2023-02-17 19:40:15.767046"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:40:15 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.3ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.3ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:15.777460"], ["updated_at", "2023-02-17 19:40:15.777460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:15.779016"], ["updated_at", "2023-02-17 19:40:15.779016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:15.782114"], ["updated_at", "2023-02-17 19:40:15.782114"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:15.783495"], ["updated_at", "2023-02-17 19:40:15.783495"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:15.792127"], ["updated_at", "2023-02-17 19:40:15.792127"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:15.793640"], ["updated_at", "2023-02-17 19:40:15.793640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:15.798497"], ["updated_at", "2023-02-17 19:40:15.798497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (2.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:15.800939"], ["updated_at", "2023-02-17 19:40:15.800939"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:15.806103"], ["updated_at", "2023-02-17 19:40:15.806103"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:15.807495"], ["updated_at", "2023-02-17 19:40:15.807495"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:15.808870"], ["updated_at", "2023-02-17 19:40:15.808870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:15.810460"], ["updated_at", "2023-02-17 19:40:15.810460"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:15.811900"], ["updated_at", "2023-02-17 19:40:15.811900"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:15.813387"], ["updated_at", "2023-02-17 19:40:15.813387"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:15.815764"], ["updated_at", "2023-02-17 19:40:15.815764"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:15.817298"], ["updated_at", "2023-02-17 19:40:15.817298"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:15.819430"], ["updated_at", "2023-02-17 19:40:15.819430"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:15.821165"], ["updated_at", "2023-02-17 19:40:15.821165"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:15.822736"], ["updated_at", "2023-02-17 19:40:15.822736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:15.823959"], ["updated_at", "2023-02-17 19:40:15.823959"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:15.826094"], ["updated_at", "2023-02-17 19:40:15.826094"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:15.827435"], ["updated_at", "2023-02-17 19:40:15.827435"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:15.828864"], ["updated_at", "2023-02-17 19:40:15.828864"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:15.830263"], ["updated_at", "2023-02-17 19:40:15.830263"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:15.831759"], ["updated_at", "2023-02-17 19:40:15.831759"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:15.833370"], ["updated_at", "2023-02-17 19:40:15.833370"], ["role_id", 34]]
TRANSACTION (0.8ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:15.836030"], ["updated_at", "2023-02-17 19:40:15.836030"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:15.837686"], ["updated_at", "2023-02-17 19:40:15.837686"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:15.839150"], ["updated_at", "2023-02-17 19:40:15.839150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:15.840576"], ["updated_at", "2023-02-17 19:40:15.840576"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:15.842009"], ["updated_at", "2023-02-17 19:40:15.842009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:15.843172"], ["updated_at", "2023-02-17 19:40:15.843172"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:15.846218"], ["updated_at", "2023-02-17 19:40:15.846218"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:15.847693"], ["updated_at", "2023-02-17 19:40:15.847693"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:15.849044"], ["updated_at", "2023-02-17 19:40:15.849044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:15.850225"], ["updated_at", "2023-02-17 19:40:15.850225"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:15.851555"], ["updated_at", "2023-02-17 19:40:15.851555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:15.853115"], ["updated_at", "2023-02-17 19:40:15.853115"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:15.855524"], ["updated_at", "2023-02-17 19:40:15.855524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:15.856826"], ["updated_at", "2023-02-17 19:40:15.856826"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:15.858188"], ["updated_at", "2023-02-17 19:40:15.858188"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:15.859342"], ["updated_at", "2023-02-17 19:40:15.859342"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:15.860820"], ["updated_at", "2023-02-17 19:40:15.860820"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.862253"], ["updated_at", "2023-02-17 19:40:15.862253"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:15.863878"], ["updated_at", "2023-02-17 19:40:15.863878"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:15.865284"], ["updated_at", "2023-02-17 19:40:15.865284"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:15.866663"], ["updated_at", "2023-02-17 19:40:15.866663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:15.867813"], ["updated_at", "2023-02-17 19:40:15.867813"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:15.869642"], ["updated_at", "2023-02-17 19:40:15.869642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:15.871151"], ["updated_at", "2023-02-17 19:40:15.871151"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:15.872851"], ["updated_at", "2023-02-17 19:40:15.872851"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:15.874843"], ["updated_at", "2023-02-17 19:40:15.874843"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:15.876527"], ["updated_at", "2023-02-17 19:40:15.876527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:15.877783"], ["updated_at", "2023-02-17 19:40:15.877783"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:15.879258"], ["updated_at", "2023-02-17 19:40:15.879258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:15.880515"], ["updated_at", "2023-02-17 19:40:15.880515"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:15.881896"], ["updated_at", "2023-02-17 19:40:15.881896"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:15.883044"], ["updated_at", "2023-02-17 19:40:15.883044"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:15.885055"], ["updated_at", "2023-02-17 19:40:15.885055"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:15.886571"], ["updated_at", "2023-02-17 19:40:15.886571"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:15.888823"], ["updated_at", "2023-02-17 19:40:15.888823"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:15.890214"], ["updated_at", "2023-02-17 19:40:15.890214"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:15.891972"], ["updated_at", "2023-02-17 19:40:15.891972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.893415"], ["updated_at", "2023-02-17 19:40:15.893415"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:15.895545"], ["updated_at", "2023-02-17 19:40:15.895545"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:15.896932"], ["updated_at", "2023-02-17 19:40:15.896932"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:15.898569"], ["updated_at", "2023-02-17 19:40:15.898569"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:15.899976"], ["updated_at", "2023-02-17 19:40:15.899976"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:15.901646"], ["updated_at", "2023-02-17 19:40:15.901646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.903172"], ["updated_at", "2023-02-17 19:40:15.903172"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:15.905229"], ["updated_at", "2023-02-17 19:40:15.905229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:15.906681"], ["updated_at", "2023-02-17 19:40:15.906681"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:15.908182"], ["updated_at", "2023-02-17 19:40:15.908182"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:15.909496"], ["updated_at", "2023-02-17 19:40:15.909496"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:15.910985"], ["updated_at", "2023-02-17 19:40:15.910985"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:15.912799"], ["updated_at", "2023-02-17 19:40:15.912799"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:15.915710"], ["updated_at", "2023-02-17 19:40:15.915710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:15.917341"], ["updated_at", "2023-02-17 19:40:15.917341"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:15.918833"], ["updated_at", "2023-02-17 19:40:15.918833"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:15.920047"], ["updated_at", "2023-02-17 19:40:15.920047"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:15.921970"], ["updated_at", "2023-02-17 19:40:15.921970"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:15.924340"], ["updated_at", "2023-02-17 19:40:15.924340"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:15.926078"], ["updated_at", "2023-02-17 19:40:15.926078"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:15.927937"], ["updated_at", "2023-02-17 19:40:15.927937"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:15.929789"], ["updated_at", "2023-02-17 19:40:15.929789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:15.931144"], ["updated_at", "2023-02-17 19:40:15.931144"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:15.932655"], ["updated_at", "2023-02-17 19:40:15.932655"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:15.934265"], ["updated_at", "2023-02-17 19:40:15.934265"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:15.936548"], ["updated_at", "2023-02-17 19:40:15.936548"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:15.937913"], ["updated_at", "2023-02-17 19:40:15.937913"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:15.939524"], ["updated_at", "2023-02-17 19:40:15.939524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:15.940880"], ["updated_at", "2023-02-17 19:40:15.940880"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:15.942397"], ["updated_at", "2023-02-17 19:40:15.942397"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:15.943926"], ["updated_at", "2023-02-17 19:40:15.943926"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:15.945751"], ["updated_at", "2023-02-17 19:40:15.945751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:15.947597"], ["updated_at", "2023-02-17 19:40:15.947597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:15.949290"], ["updated_at", "2023-02-17 19:40:15.949290"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:15.951037"], ["updated_at", "2023-02-17 19:40:15.951037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:15.952829"], ["updated_at", "2023-02-17 19:40:15.952829"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:15.954535"], ["updated_at", "2023-02-17 19:40:15.954535"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:15.955769"], ["updated_at", "2023-02-17 19:40:15.955769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:15.967813"], ["updated_at", "2023-02-17 19:40:15.967813"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:15.969357"], ["updated_at", "2023-02-17 19:40:15.969357"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:15.970379"], ["updated_at", "2023-02-17 19:40:15.970379"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.971341"], ["updated_at", "2023-02-17 19:40:15.971341"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.972487"], ["updated_at", "2023-02-17 19:40:15.972487"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.973594"], ["updated_at", "2023-02-17 19:40:15.973594"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.974891"], ["updated_at", "2023-02-17 19:40:15.974891"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:15.977052"], ["updated_at", "2023-02-17 19:40:15.977052"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:15.977945"], ["updated_at", "2023-02-17 19:40:15.977945"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.978930"], ["updated_at", "2023-02-17 19:40:15.978930"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.979800"], ["updated_at", "2023-02-17 19:40:15.979800"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.980554"], ["updated_at", "2023-02-17 19:40:15.980554"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.981311"], ["updated_at", "2023-02-17 19:40:15.981311"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.982212"], ["updated_at", "2023-02-17 19:40:15.982212"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.983065"], ["updated_at", "2023-02-17 19:40:15.983065"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.983910"], ["updated_at", "2023-02-17 19:40:15.983910"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.985012"], ["updated_at", "2023-02-17 19:40:15.985012"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.986089"], ["updated_at", "2023-02-17 19:40:15.986089"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.987062"], ["updated_at", "2023-02-17 19:40:15.987062"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.987848"], ["updated_at", "2023-02-17 19:40:15.987848"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:15.988591"], ["updated_at", "2023-02-17 19:40:15.988591"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:16.000504"], ["updated_at", "2023-02-17 19:40:16.000504"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:16.001966"], ["updated_at", "2023-02-17 19:40:16.001966"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:16.003282"], ["updated_at", "2023-02-17 19:40:16.003282"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:16.004537"], ["updated_at", "2023-02-17 19:40:16.004537"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:16.005505"], ["updated_at", "2023-02-17 19:40:16.005505"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:16.006248"], ["updated_at", "2023-02-17 19:40:16.006248"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:16.006939"], ["updated_at", "2023-02-17 19:40:16.006939"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:16.007616"], ["updated_at", "2023-02-17 19:40:16.007616"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:16.008373"], ["updated_at", "2023-02-17 19:40:16.008373"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.009256"], ["updated_at", "2023-02-17 19:40:16.009256"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.010092"], ["updated_at", "2023-02-17 19:40:16.010092"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.010832"], ["updated_at", "2023-02-17 19:40:16.010832"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.011551"], ["updated_at", "2023-02-17 19:40:16.011551"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.012368"], ["updated_at", "2023-02-17 19:40:16.012368"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.013226"], ["updated_at", "2023-02-17 19:40:16.013226"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.014067"], ["updated_at", "2023-02-17 19:40:16.014067"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.015321"], ["updated_at", "2023-02-17 19:40:16.015321"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.016117"], ["updated_at", "2023-02-17 19:40:16.016117"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.016871"], ["updated_at", "2023-02-17 19:40:16.016871"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.017627"], ["updated_at", "2023-02-17 19:40:16.017627"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:16.018352"], ["updated_at", "2023-02-17 19:40:16.018352"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:16.036364"], ["updated_at", "2023-02-17 19:40:16.036364"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:16.037719"], ["updated_at", "2023-02-17 19:40:16.037719"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:16.038612"], ["updated_at", "2023-02-17 19:40:16.038612"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:16.039362"], ["updated_at", "2023-02-17 19:40:16.039362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.040145"], ["updated_at", "2023-02-17 19:40:16.040145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.040957"], ["updated_at", "2023-02-17 19:40:16.040957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.041664"], ["updated_at", "2023-02-17 19:40:16.041664"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.042441"], ["updated_at", "2023-02-17 19:40:16.042441"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.043202"], ["updated_at", "2023-02-17 19:40:16.043202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.043925"], ["updated_at", "2023-02-17 19:40:16.043925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.044799"], ["updated_at", "2023-02-17 19:40:16.044799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.045525"], ["updated_at", "2023-02-17 19:40:16.045525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.046238"], ["updated_at", "2023-02-17 19:40:16.046238"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.047164"], ["updated_at", "2023-02-17 19:40:16.047164"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.048746"], ["updated_at", "2023-02-17 19:40:16.048746"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:16.049613"], ["updated_at", "2023-02-17 19:40:16.049613"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:16.065985"], ["updated_at", "2023-02-17 19:40:16.065985"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:16.067058"], ["updated_at", "2023-02-17 19:40:16.067058"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:16.067820"], ["updated_at", "2023-02-17 19:40:16.067820"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:16.068542"], ["updated_at", "2023-02-17 19:40:16.068542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.069366"], ["updated_at", "2023-02-17 19:40:16.069366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.070288"], ["updated_at", "2023-02-17 19:40:16.070288"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.071200"], ["updated_at", "2023-02-17 19:40:16.071200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.071941"], ["updated_at", "2023-02-17 19:40:16.071941"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.072851"], ["updated_at", "2023-02-17 19:40:16.072851"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.073764"], ["updated_at", "2023-02-17 19:40:16.073764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.074661"], ["updated_at", "2023-02-17 19:40:16.074661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.075420"], ["updated_at", "2023-02-17 19:40:16.075420"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.076177"], ["updated_at", "2023-02-17 19:40:16.076177"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.076917"], ["updated_at", "2023-02-17 19:40:16.076917"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.077715"], ["updated_at", "2023-02-17 19:40:16.077715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:16.078450"], ["updated_at", "2023-02-17 19:40:16.078450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:16.094743"], ["updated_at", "2023-02-17 19:40:16.094743"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:16.095786"], ["updated_at", "2023-02-17 19:40:16.095786"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:16.096564"], ["updated_at", "2023-02-17 19:40:16.096564"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:16.097301"], ["updated_at", "2023-02-17 19:40:16.097301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.098054"], ["updated_at", "2023-02-17 19:40:16.098054"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.098784"], ["updated_at", "2023-02-17 19:40:16.098784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.099508"], ["updated_at", "2023-02-17 19:40:16.099508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.100276"], ["updated_at", "2023-02-17 19:40:16.100276"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.101097"], ["updated_at", "2023-02-17 19:40:16.101097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.101960"], ["updated_at", "2023-02-17 19:40:16.101960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.102747"], ["updated_at", "2023-02-17 19:40:16.102747"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.103583"], ["updated_at", "2023-02-17 19:40:16.103583"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.104455"], ["updated_at", "2023-02-17 19:40:16.104455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.105476"], ["updated_at", "2023-02-17 19:40:16.105476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.106307"], ["updated_at", "2023-02-17 19:40:16.106307"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:16.107027"], ["updated_at", "2023-02-17 19:40:16.107027"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:16.123275"], ["updated_at", "2023-02-17 19:40:16.123275"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:16.124628"], ["updated_at", "2023-02-17 19:40:16.124628"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:16.125657"], ["updated_at", "2023-02-17 19:40:16.125657"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:16.126553"], ["updated_at", "2023-02-17 19:40:16.126553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.127416"], ["updated_at", "2023-02-17 19:40:16.127416"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.128176"], ["updated_at", "2023-02-17 19:40:16.128176"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.128994"], ["updated_at", "2023-02-17 19:40:16.128994"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.129798"], ["updated_at", "2023-02-17 19:40:16.129798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.130511"], ["updated_at", "2023-02-17 19:40:16.130511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.131192"], ["updated_at", "2023-02-17 19:40:16.131192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.131857"], ["updated_at", "2023-02-17 19:40:16.131857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.132561"], ["updated_at", "2023-02-17 19:40:16.132561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.133297"], ["updated_at", "2023-02-17 19:40:16.133297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.134225"], ["updated_at", "2023-02-17 19:40:16.134225"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.135084"], ["updated_at", "2023-02-17 19:40:16.135084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:16.135850"], ["updated_at", "2023-02-17 19:40:16.135850"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:16.152126"], ["updated_at", "2023-02-17 19:40:16.152126"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:16.153128"], ["updated_at", "2023-02-17 19:40:16.153128"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:16.154238"], ["updated_at", "2023-02-17 19:40:16.154238"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:16.155230"], ["updated_at", "2023-02-17 19:40:16.155230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.156050"], ["updated_at", "2023-02-17 19:40:16.156050"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.156774"], ["updated_at", "2023-02-17 19:40:16.156774"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.157480"], ["updated_at", "2023-02-17 19:40:16.157480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.158199"], ["updated_at", "2023-02-17 19:40:16.158199"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.158877"], ["updated_at", "2023-02-17 19:40:16.158877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.159555"], ["updated_at", "2023-02-17 19:40:16.159555"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.160233"], ["updated_at", "2023-02-17 19:40:16.160233"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.160972"], ["updated_at", "2023-02-17 19:40:16.160972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.161776"], ["updated_at", "2023-02-17 19:40:16.161776"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.162503"], ["updated_at", "2023-02-17 19:40:16.162503"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.163195"], ["updated_at", "2023-02-17 19:40:16.163195"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:16.164028"], ["updated_at", "2023-02-17 19:40:16.164028"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:16.180199"], ["updated_at", "2023-02-17 19:40:16.180199"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:16.181160"], ["updated_at", "2023-02-17 19:40:16.181160"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:16.181907"], ["updated_at", "2023-02-17 19:40:16.181907"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:16.182584"], ["updated_at", "2023-02-17 19:40:16.182584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.183325"], ["updated_at", "2023-02-17 19:40:16.183325"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.184392"], ["updated_at", "2023-02-17 19:40:16.184392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.185396"], ["updated_at", "2023-02-17 19:40:16.185396"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.186157"], ["updated_at", "2023-02-17 19:40:16.186157"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.186861"], ["updated_at", "2023-02-17 19:40:16.186861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.187571"], ["updated_at", "2023-02-17 19:40:16.187571"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.188290"], ["updated_at", "2023-02-17 19:40:16.188290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.188979"], ["updated_at", "2023-02-17 19:40:16.188979"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.189679"], ["updated_at", "2023-02-17 19:40:16.189679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.190371"], ["updated_at", "2023-02-17 19:40:16.190371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.191097"], ["updated_at", "2023-02-17 19:40:16.191097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:16.191848"], ["updated_at", "2023-02-17 19:40:16.191848"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:40:16 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:40:16 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.1ms | Allocations: 175)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:40:16 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.1ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.3ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.7ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:48.578023"], ["updated_at", "2023-02-17 19:40:48.578023"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:48.594246"], ["updated_at", "2023-02-17 19:40:48.594246"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:40:48.601800"], ["updated_at", "2023-02-17 19:40:48.601800"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.5ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:48.612857"], ["updated_at", "2023-02-17 19:40:48.612857"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:48.621514"], ["updated_at", "2023-02-17 19:40:48.621514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:40:48.624760"], ["updated_at", "2023-02-17 19:40:48.624760"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:48.627260"], ["updated_at", "2023-02-17 19:40:48.627260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 60ms (Views: 0.2ms | ActiveRecord: 6.1ms | Allocations: 28615)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:40:48.645063"], ["updated_at", "2023-02-17 19:40:48.645063"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 12ms (Views: 6.3ms | ActiveRecord: 0.9ms | Allocations: 4604)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000560d63caa730>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms | Allocations: 658)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#index as HTML

Parameters: {"id"=>"1"}

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms | Allocations: 1528)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}

Processing by ScrapperController#show as HTML

Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction

Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.3ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:48.716288"], ["updated_at", "2023-02-17 19:40:48.716288"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:48.718534"], ["updated_at", "2023-02-17 19:40:48.718534"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:48.721586"], ["updated_at", "2023-02-17 19:40:48.721586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:48.722885"], ["updated_at", "2023-02-17 19:40:48.722885"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:48.725733"], ["updated_at", "2023-02-17 19:40:48.725733"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:48.727296"], ["updated_at", "2023-02-17 19:40:48.727296"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:48.727151"], ["updated_at", "2023-02-17 19:40:48.727151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 14ms (ActiveRecord: 1.5ms | Allocations: 6189)

TRANSACTION (0.0ms)  rollback transaction
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:48.730052"], ["updated_at", "2023-02-17 19:40:48.730052"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:48.732133"], ["updated_at", "2023-02-17 19:40:48.732133"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:48.733771"], ["updated_at", "2023-02-17 19:40:48.733771"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:48.735734"], ["updated_at", "2023-02-17 19:40:48.735734"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:48.737894"], ["updated_at", "2023-02-17 19:40:48.737894"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:48.739230"], ["updated_at", "2023-02-17 19:40:48.739230"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:48.740674"], ["updated_at", "2023-02-17 19:40:48.740674"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:48.741976"], ["updated_at", "2023-02-17 19:40:48.741976"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:48.743416"], ["updated_at", "2023-02-17 19:40:48.743416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:48.744701"], ["updated_at", "2023-02-17 19:40:48.744701"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:48.746600"], ["updated_at", "2023-02-17 19:40:48.746600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:48.748577"], ["updated_at", "2023-02-17 19:40:48.748577"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:48.750041"], ["updated_at", "2023-02-17 19:40:48.750041"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:48.751919"], ["updated_at", "2023-02-17 19:40:48.751919"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:40:48.752633"], ["updated_at", "2023-02-17 19:40:48.752633"], ["role_id", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.9ms | Allocations: 5710)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:48.753702"], ["updated_at", "2023-02-17 19:40:48.753702"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:48.755017"], ["updated_at", "2023-02-17 19:40:48.755017"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:48.756762"], ["updated_at", "2023-02-17 19:40:48.756762"]]

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00005569515fc1d8>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:48.758500"], ["updated_at", "2023-02-17 19:40:48.758500"], ["role_id", 34]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:48.760140"], ["updated_at", "2023-02-17 19:40:48.760140"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.4ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:48.761635"], ["updated_at", "2023-02-17 19:40:48.761635"], ["role_id", 34]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:48.764211"], ["updated_at", "2023-02-17 19:40:48.764211"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:48.765768"], ["updated_at", "2023-02-17 19:40:48.765768"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:48.767994"], ["updated_at", "2023-02-17 19:40:48.767994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:48.769539"], ["updated_at", "2023-02-17 19:40:48.769539"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:48.771123"], ["updated_at", "2023-02-17 19:40:48.771123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:48.772419"], ["updated_at", "2023-02-17 19:40:48.772419"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms | Allocations: 3026)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:48.773967"], ["updated_at", "2023-02-17 19:40:48.773967"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:48.775368"], ["updated_at", "2023-02-17 19:40:48.775368"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:48.777104"], ["updated_at", "2023-02-17 19:40:48.777104"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:48.778502"], ["updated_at", "2023-02-17 19:40:48.778502"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:48.780505"], ["updated_at", "2023-02-17 19:40:48.780505"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#index as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:48.781932"], ["updated_at", "2023-02-17 19:40:48.781932"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:48.783472"], ["updated_at", "2023-02-17 19:40:48.783472"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms | Allocations: 1528)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:48.785131"], ["updated_at", "2023-02-17 19:40:48.785131"], ["role_id", 34]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:48.787153"], ["updated_at", "2023-02-17 19:40:48.787153"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:48.788836"], ["updated_at", "2023-02-17 19:40:48.788836"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:48.790644"], ["updated_at", "2023-02-17 19:40:48.790644"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:48.792171"], ["updated_at", "2023-02-17 19:40:48.792171"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:48.794334"], ["updated_at", "2023-02-17 19:40:48.794334"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:48.796413"], ["updated_at", "2023-02-17 19:40:48.796413"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:48.798312"], ["updated_at", "2023-02-17 19:40:48.798312"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:48.799922"], ["updated_at", "2023-02-17 19:40:48.799922"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:48.802143"], ["updated_at", "2023-02-17 19:40:48.802143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:48.804054"], ["updated_at", "2023-02-17 19:40:48.804054"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:48.805489"], ["updated_at", "2023-02-17 19:40:48.805489"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:48.806786"], ["updated_at", "2023-02-17 19:40:48.806786"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 6053)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:48.808352"], ["updated_at", "2023-02-17 19:40:48.808352"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:48.809609"], ["updated_at", "2023-02-17 19:40:48.809609"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:48.811062"], ["updated_at", "2023-02-17 19:40:48.811062"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:48.812482"], ["updated_at", "2023-02-17 19:40:48.812482"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:48.814448"], ["updated_at", "2023-02-17 19:40:48.814448"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:48.815759"], ["updated_at", "2023-02-17 19:40:48.815759"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:48.817580"], ["updated_at", "2023-02-17 19:40:48.817580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:48.819028"], ["updated_at", "2023-02-17 19:40:48.819028"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.6ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:48.820556"], ["updated_at", "2023-02-17 19:40:48.820556"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:48.823405"], ["updated_at", "2023-02-17 19:40:48.823405"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:48.823648"], ["updated_at", "2023-02-17 19:40:48.823648"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:48.825581"], ["updated_at", "2023-02-17 19:40:48.825581"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:48.827116"], ["updated_at", "2023-02-17 19:40:48.827116"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:48.828669"], ["updated_at", "2023-02-17 19:40:48.828669"]]
TRANSACTION (0.3ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:48.828772"], ["updated_at", "2023-02-17 19:40:48.828772"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:48.831112"], ["updated_at", "2023-02-17 19:40:48.831112"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:48.832784"], ["updated_at", "2023-02-17 19:40:48.832784"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:48.833527"], ["updated_at", "2023-02-17 19:40:48.833527"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:48.834169"], ["updated_at", "2023-02-17 19:40:48.834169"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:48.835680"], ["updated_at", "2023-02-17 19:40:48.835680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:48.837136"], ["updated_at", "2023-02-17 19:40:48.837136"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:48.838719"], ["updated_at", "2023-02-17 19:40:48.838719"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:48.839933"], ["updated_at", "2023-02-17 19:40:48.839933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:48.841343"], ["updated_at", "2023-02-17 19:40:48.841343"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:48.842792"], ["updated_at", "2023-02-17 19:40:48.842792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:48.843528"], ["updated_at", "2023-02-17 19:40:48.843528"]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:48.844006"], ["updated_at", "2023-02-17 19:40:48.844006"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:48.845500"], ["updated_at", "2023-02-17 19:40:48.845500"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:48.847489"], ["updated_at", "2023-02-17 19:40:48.847489"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:48.848469"], ["updated_at", "2023-02-17 19:40:48.848469"]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:48.849063"], ["updated_at", "2023-02-17 19:40:48.849063"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:48.850432"], ["updated_at", "2023-02-17 19:40:48.850432"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:48.851985"], ["updated_at", "2023-02-17 19:40:48.851985"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:48.853330"], ["updated_at", "2023-02-17 19:40:48.853330"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:48.855112"], ["updated_at", "2023-02-17 19:40:48.855112"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:48.855391"], ["updated_at", "2023-02-17 19:40:48.855391"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:48.857187"], ["updated_at", "2023-02-17 19:40:48.857187"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:48.858988"], ["updated_at", "2023-02-17 19:40:48.858988"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:48.860290"], ["updated_at", "2023-02-17 19:40:48.860290"], ["role_id", 34]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:48.860458"], ["updated_at", "2023-02-17 19:40:48.860458"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:48.861742"], ["updated_at", "2023-02-17 19:40:48.861742"]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:48.863771"], ["updated_at", "2023-02-17 19:40:48.863771"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:48.865405"], ["updated_at", "2023-02-17 19:40:48.865405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:48.866854"], ["updated_at", "2023-02-17 19:40:48.866854"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:48.868432"], ["updated_at", "2023-02-17 19:40:48.868432"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:40:48 -0300

Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:48.869697"], ["updated_at", "2023-02-17 19:40:48.869697"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:48.871559"], ["updated_at", "2023-02-17 19:40:48.871559"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:48.874842"], ["updated_at", "2023-02-17 19:40:48.874842"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:48.876400"], ["updated_at", "2023-02-17 19:40:48.876400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:48.878031"], ["updated_at", "2023-02-17 19:40:48.878031"], ["role_id", 34]]
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 232)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:48.880046"], ["updated_at", "2023-02-17 19:40:48.880046"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:48.881919"], ["updated_at", "2023-02-17 19:40:48.881919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:48.883427"], ["updated_at", "2023-02-17 19:40:48.883427"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:48.885014"], ["updated_at", "2023-02-17 19:40:48.885014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:40:48 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 180)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:48.890433"], ["updated_at", "2023-02-17 19:40:48.890433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:48.891892"], ["updated_at", "2023-02-17 19:40:48.891892"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:48.892918"], ["updated_at", "2023-02-17 19:40:48.892918"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:48.922937"], ["updated_at", "2023-02-17 19:40:48.922937"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:48.924826"], ["updated_at", "2023-02-17 19:40:48.924826"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:48.926292"], ["updated_at", "2023-02-17 19:40:48.926292"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:48.927455"], ["updated_at", "2023-02-17 19:40:48.927455"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:48.928515"], ["updated_at", "2023-02-17 19:40:48.928515"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:48.929758"], ["updated_at", "2023-02-17 19:40:48.929758"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:48.930727"], ["updated_at", "2023-02-17 19:40:48.930727"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:48.931607"], ["updated_at", "2023-02-17 19:40:48.931607"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:48.932487"], ["updated_at", "2023-02-17 19:40:48.932487"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.933625"], ["updated_at", "2023-02-17 19:40:48.933625"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.934788"], ["updated_at", "2023-02-17 19:40:48.934788"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.935831"], ["updated_at", "2023-02-17 19:40:48.935831"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.936797"], ["updated_at", "2023-02-17 19:40:48.936797"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.937950"], ["updated_at", "2023-02-17 19:40:48.937950"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.939013"], ["updated_at", "2023-02-17 19:40:48.939013"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.939964"], ["updated_at", "2023-02-17 19:40:48.939964"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.940854"], ["updated_at", "2023-02-17 19:40:48.940854"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.941754"], ["updated_at", "2023-02-17 19:40:48.941754"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.942641"], ["updated_at", "2023-02-17 19:40:48.942641"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.943587"], ["updated_at", "2023-02-17 19:40:48.943587"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:48.944514"], ["updated_at", "2023-02-17 19:40:48.944514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:48.957626"], ["updated_at", "2023-02-17 19:40:48.957626"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:48.959041"], ["updated_at", "2023-02-17 19:40:48.959041"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:48.960273"], ["updated_at", "2023-02-17 19:40:48.960273"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:48.961578"], ["updated_at", "2023-02-17 19:40:48.961578"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:48.962797"], ["updated_at", "2023-02-17 19:40:48.962797"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:48.964034"], ["updated_at", "2023-02-17 19:40:48.964034"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:48.965088"], ["updated_at", "2023-02-17 19:40:48.965088"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:48.965943"], ["updated_at", "2023-02-17 19:40:48.965943"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:48.966891"], ["updated_at", "2023-02-17 19:40:48.966891"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.968169"], ["updated_at", "2023-02-17 19:40:48.968169"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.969278"], ["updated_at", "2023-02-17 19:40:48.969278"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.970225"], ["updated_at", "2023-02-17 19:40:48.970225"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.971094"], ["updated_at", "2023-02-17 19:40:48.971094"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.971959"], ["updated_at", "2023-02-17 19:40:48.971959"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.972854"], ["updated_at", "2023-02-17 19:40:48.972854"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.973840"], ["updated_at", "2023-02-17 19:40:48.973840"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.974732"], ["updated_at", "2023-02-17 19:40:48.974732"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.975595"], ["updated_at", "2023-02-17 19:40:48.975595"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.976493"], ["updated_at", "2023-02-17 19:40:48.976493"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.977685"], ["updated_at", "2023-02-17 19:40:48.977685"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:48.978773"], ["updated_at", "2023-02-17 19:40:48.978773"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.023542"], ["updated_at", "2023-02-17 19:40:49.023542"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.024818"], ["updated_at", "2023-02-17 19:40:49.024818"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.025912"], ["updated_at", "2023-02-17 19:40:49.025912"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.026832"], ["updated_at", "2023-02-17 19:40:49.026832"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.028051"], ["updated_at", "2023-02-17 19:40:49.028051"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.030019"], ["updated_at", "2023-02-17 19:40:49.030019"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.030978"], ["updated_at", "2023-02-17 19:40:49.030978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.031782"], ["updated_at", "2023-02-17 19:40:49.031782"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.032584"], ["updated_at", "2023-02-17 19:40:49.032584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.033350"], ["updated_at", "2023-02-17 19:40:49.033350"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.034073"], ["updated_at", "2023-02-17 19:40:49.034073"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.034763"], ["updated_at", "2023-02-17 19:40:49.034763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.035606"], ["updated_at", "2023-02-17 19:40:49.035606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.036354"], ["updated_at", "2023-02-17 19:40:49.036354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.037072"], ["updated_at", "2023-02-17 19:40:49.037072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.038186"], ["updated_at", "2023-02-17 19:40:49.038186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.055606"], ["updated_at", "2023-02-17 19:40:49.055606"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.056658"], ["updated_at", "2023-02-17 19:40:49.056658"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.057636"], ["updated_at", "2023-02-17 19:40:49.057636"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.058512"], ["updated_at", "2023-02-17 19:40:49.058512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.059673"], ["updated_at", "2023-02-17 19:40:49.059673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.060647"], ["updated_at", "2023-02-17 19:40:49.060647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.061405"], ["updated_at", "2023-02-17 19:40:49.061405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.062144"], ["updated_at", "2023-02-17 19:40:49.062144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.062974"], ["updated_at", "2023-02-17 19:40:49.062974"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.063675"], ["updated_at", "2023-02-17 19:40:49.063675"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.064382"], ["updated_at", "2023-02-17 19:40:49.064382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.065129"], ["updated_at", "2023-02-17 19:40:49.065129"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.065846"], ["updated_at", "2023-02-17 19:40:49.065846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.066583"], ["updated_at", "2023-02-17 19:40:49.066583"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.067294"], ["updated_at", "2023-02-17 19:40:49.067294"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.068393"], ["updated_at", "2023-02-17 19:40:49.068393"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.085222"], ["updated_at", "2023-02-17 19:40:49.085222"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.086185"], ["updated_at", "2023-02-17 19:40:49.086185"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.086973"], ["updated_at", "2023-02-17 19:40:49.086973"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.087955"], ["updated_at", "2023-02-17 19:40:49.087955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.089005"], ["updated_at", "2023-02-17 19:40:49.089005"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.089807"], ["updated_at", "2023-02-17 19:40:49.089807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.090577"], ["updated_at", "2023-02-17 19:40:49.090577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.091290"], ["updated_at", "2023-02-17 19:40:49.091290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.092017"], ["updated_at", "2023-02-17 19:40:49.092017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.092721"], ["updated_at", "2023-02-17 19:40:49.092721"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.093416"], ["updated_at", "2023-02-17 19:40:49.093416"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.094147"], ["updated_at", "2023-02-17 19:40:49.094147"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.094848"], ["updated_at", "2023-02-17 19:40:49.094848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.095563"], ["updated_at", "2023-02-17 19:40:49.095563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.096372"], ["updated_at", "2023-02-17 19:40:49.096372"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.097088"], ["updated_at", "2023-02-17 19:40:49.097088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.112816"], ["updated_at", "2023-02-17 19:40:49.112816"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.113860"], ["updated_at", "2023-02-17 19:40:49.113860"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.114665"], ["updated_at", "2023-02-17 19:40:49.114665"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.115401"], ["updated_at", "2023-02-17 19:40:49.115401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.116158"], ["updated_at", "2023-02-17 19:40:49.116158"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.116913"], ["updated_at", "2023-02-17 19:40:49.116913"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.117641"], ["updated_at", "2023-02-17 19:40:49.117641"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.118346"], ["updated_at", "2023-02-17 19:40:49.118346"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.119042"], ["updated_at", "2023-02-17 19:40:49.119042"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.119759"], ["updated_at", "2023-02-17 19:40:49.119759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.120456"], ["updated_at", "2023-02-17 19:40:49.120456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.121279"], ["updated_at", "2023-02-17 19:40:49.121279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.122083"], ["updated_at", "2023-02-17 19:40:49.122083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.122832"], ["updated_at", "2023-02-17 19:40:49.122832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.123544"], ["updated_at", "2023-02-17 19:40:49.123544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.124236"], ["updated_at", "2023-02-17 19:40:49.124236"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.142583"], ["updated_at", "2023-02-17 19:40:49.142583"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.143565"], ["updated_at", "2023-02-17 19:40:49.143565"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.144366"], ["updated_at", "2023-02-17 19:40:49.144366"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.145085"], ["updated_at", "2023-02-17 19:40:49.145085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.146013"], ["updated_at", "2023-02-17 19:40:49.146013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.147627"], ["updated_at", "2023-02-17 19:40:49.147627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.148485"], ["updated_at", "2023-02-17 19:40:49.148485"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.149247"], ["updated_at", "2023-02-17 19:40:49.149247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.150025"], ["updated_at", "2023-02-17 19:40:49.150025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.150902"], ["updated_at", "2023-02-17 19:40:49.150902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.152037"], ["updated_at", "2023-02-17 19:40:49.152037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.152968"], ["updated_at", "2023-02-17 19:40:49.152968"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.153717"], ["updated_at", "2023-02-17 19:40:49.153717"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.154433"], ["updated_at", "2023-02-17 19:40:49.154433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.156318"], ["updated_at", "2023-02-17 19:40:49.156318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.157398"], ["updated_at", "2023-02-17 19:40:49.157398"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.175567"], ["updated_at", "2023-02-17 19:40:49.175567"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.176561"], ["updated_at", "2023-02-17 19:40:49.176561"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.177355"], ["updated_at", "2023-02-17 19:40:49.177355"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.178096"], ["updated_at", "2023-02-17 19:40:49.178096"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.178868"], ["updated_at", "2023-02-17 19:40:49.178868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.180640"], ["updated_at", "2023-02-17 19:40:49.180640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.181708"], ["updated_at", "2023-02-17 19:40:49.181708"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.182496"], ["updated_at", "2023-02-17 19:40:49.182496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.183287"], ["updated_at", "2023-02-17 19:40:49.183287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.184107"], ["updated_at", "2023-02-17 19:40:49.184107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.184842"], ["updated_at", "2023-02-17 19:40:49.184842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.185566"], ["updated_at", "2023-02-17 19:40:49.185566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.186278"], ["updated_at", "2023-02-17 19:40:49.186278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.187014"], ["updated_at", "2023-02-17 19:40:49.187014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.187733"], ["updated_at", "2023-02-17 19:40:49.187733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.188896"], ["updated_at", "2023-02-17 19:40:49.188896"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:40:49 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.3ms | Allocations: 3127)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:49.213884"], ["updated_at", "2023-02-17 19:40:49.213884"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:49.215344"], ["updated_at", "2023-02-17 19:40:49.215344"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:49.218253"], ["updated_at", "2023-02-17 19:40:49.218253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:49.219490"], ["updated_at", "2023-02-17 19:40:49.219490"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:49.222355"], ["updated_at", "2023-02-17 19:40:49.222355"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:49.223561"], ["updated_at", "2023-02-17 19:40:49.223561"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:49.225692"], ["updated_at", "2023-02-17 19:40:49.225692"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:49.227181"], ["updated_at", "2023-02-17 19:40:49.227181"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:49.228728"], ["updated_at", "2023-02-17 19:40:49.228728"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:49.230341"], ["updated_at", "2023-02-17 19:40:49.230341"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:49.231810"], ["updated_at", "2023-02-17 19:40:49.231810"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:49.233123"], ["updated_at", "2023-02-17 19:40:49.233123"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:49.234610"], ["updated_at", "2023-02-17 19:40:49.234610"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:49.235831"], ["updated_at", "2023-02-17 19:40:49.235831"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:49.237291"], ["updated_at", "2023-02-17 19:40:49.237291"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:49.238611"], ["updated_at", "2023-02-17 19:40:49.238611"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:49.240024"], ["updated_at", "2023-02-17 19:40:49.240024"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:49.241274"], ["updated_at", "2023-02-17 19:40:49.241274"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:49.242761"], ["updated_at", "2023-02-17 19:40:49.242761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:49.244029"], ["updated_at", "2023-02-17 19:40:49.244029"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:49.245443"], ["updated_at", "2023-02-17 19:40:49.245443"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:49.246850"], ["updated_at", "2023-02-17 19:40:49.246850"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:49.248276"], ["updated_at", "2023-02-17 19:40:49.248276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:49.249540"], ["updated_at", "2023-02-17 19:40:49.249540"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:49.251047"], ["updated_at", "2023-02-17 19:40:49.251047"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:49.252363"], ["updated_at", "2023-02-17 19:40:49.252363"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:49.253783"], ["updated_at", "2023-02-17 19:40:49.253783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:49.255074"], ["updated_at", "2023-02-17 19:40:49.255074"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:49.256528"], ["updated_at", "2023-02-17 19:40:49.256528"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:49.257811"], ["updated_at", "2023-02-17 19:40:49.257811"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:49.259306"], ["updated_at", "2023-02-17 19:40:49.259306"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:49.260567"], ["updated_at", "2023-02-17 19:40:49.260567"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:49.261988"], ["updated_at", "2023-02-17 19:40:49.261988"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:49.263395"], ["updated_at", "2023-02-17 19:40:49.263395"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:49.264832"], ["updated_at", "2023-02-17 19:40:49.264832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:49.266115"], ["updated_at", "2023-02-17 19:40:49.266115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:49.267614"], ["updated_at", "2023-02-17 19:40:49.267614"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:49.268874"], ["updated_at", "2023-02-17 19:40:49.268874"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:49.270440"], ["updated_at", "2023-02-17 19:40:49.270440"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:49.272008"], ["updated_at", "2023-02-17 19:40:49.272008"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:49.273896"], ["updated_at", "2023-02-17 19:40:49.273896"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:49.275686"], ["updated_at", "2023-02-17 19:40:49.275686"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:49.277590"], ["updated_at", "2023-02-17 19:40:49.277590"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:49.279196"], ["updated_at", "2023-02-17 19:40:49.279196"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:49.281269"], ["updated_at", "2023-02-17 19:40:49.281269"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:49.283048"], ["updated_at", "2023-02-17 19:40:49.283048"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:49.285002"], ["updated_at", "2023-02-17 19:40:49.285002"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:49.286808"], ["updated_at", "2023-02-17 19:40:49.286808"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:49.288658"], ["updated_at", "2023-02-17 19:40:49.288658"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:49.290080"], ["updated_at", "2023-02-17 19:40:49.290080"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:49.291577"], ["updated_at", "2023-02-17 19:40:49.291577"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:49.293255"], ["updated_at", "2023-02-17 19:40:49.293255"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.5ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:49.295395"], ["updated_at", "2023-02-17 19:40:49.295395"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:49.297677"], ["updated_at", "2023-02-17 19:40:49.297677"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:49.300037"], ["updated_at", "2023-02-17 19:40:49.300037"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:49.301575"], ["updated_at", "2023-02-17 19:40:49.301575"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:49.303543"], ["updated_at", "2023-02-17 19:40:49.303543"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:49.305395"], ["updated_at", "2023-02-17 19:40:49.305395"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:49.307126"], ["updated_at", "2023-02-17 19:40:49.307126"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:49.308398"], ["updated_at", "2023-02-17 19:40:49.308398"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:49.309965"], ["updated_at", "2023-02-17 19:40:49.309965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:49.311244"], ["updated_at", "2023-02-17 19:40:49.311244"], ["role_id", 34]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:49.313200"], ["updated_at", "2023-02-17 19:40:49.313200"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:49.326327"], ["updated_at", "2023-02-17 19:40:49.326327"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:49.327831"], ["updated_at", "2023-02-17 19:40:49.327831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:49.329497"], ["updated_at", "2023-02-17 19:40:49.329497"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:49.331754"], ["updated_at", "2023-02-17 19:40:49.331754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:49.333100"], ["updated_at", "2023-02-17 19:40:49.333100"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:49.335134"], ["updated_at", "2023-02-17 19:40:49.335134"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:49.336769"], ["updated_at", "2023-02-17 19:40:49.336769"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:49.338532"], ["updated_at", "2023-02-17 19:40:49.338532"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:49.339839"], ["updated_at", "2023-02-17 19:40:49.339839"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:49.341259"], ["updated_at", "2023-02-17 19:40:49.341259"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:49.342504"], ["updated_at", "2023-02-17 19:40:49.342504"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:49.343850"], ["updated_at", "2023-02-17 19:40:49.343850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:49.345063"], ["updated_at", "2023-02-17 19:40:49.345063"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:49.347673"], ["updated_at", "2023-02-17 19:40:49.347673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:49.349108"], ["updated_at", "2023-02-17 19:40:49.349108"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:49.350913"], ["updated_at", "2023-02-17 19:40:49.350913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:49.352579"], ["updated_at", "2023-02-17 19:40:49.352579"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:49.354219"], ["updated_at", "2023-02-17 19:40:49.354219"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:49.355691"], ["updated_at", "2023-02-17 19:40:49.355691"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:49.357324"], ["updated_at", "2023-02-17 19:40:49.357324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:49.358577"], ["updated_at", "2023-02-17 19:40:49.358577"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:49.359987"], ["updated_at", "2023-02-17 19:40:49.359987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:49.361190"], ["updated_at", "2023-02-17 19:40:49.361190"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:49.362907"], ["updated_at", "2023-02-17 19:40:49.362907"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:49.364941"], ["updated_at", "2023-02-17 19:40:49.364941"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:49.366749"], ["updated_at", "2023-02-17 19:40:49.366749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:49.368512"], ["updated_at", "2023-02-17 19:40:49.368512"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:49.370068"], ["updated_at", "2023-02-17 19:40:49.370068"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:49.371306"], ["updated_at", "2023-02-17 19:40:49.371306"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:49.372714"], ["updated_at", "2023-02-17 19:40:49.372714"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:49.373972"], ["updated_at", "2023-02-17 19:40:49.373972"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:49.375490"], ["updated_at", "2023-02-17 19:40:49.375490"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:49.376722"], ["updated_at", "2023-02-17 19:40:49.376722"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:49.377953"], ["updated_at", "2023-02-17 19:40:49.377953"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:49.379767"], ["updated_at", "2023-02-17 19:40:49.379767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:49.381822"], ["updated_at", "2023-02-17 19:40:49.381822"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:49.383025"], ["updated_at", "2023-02-17 19:40:49.383025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:49.384443"], ["updated_at", "2023-02-17 19:40:49.384443"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:49.396734"], ["updated_at", "2023-02-17 19:40:49.396734"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:49.398127"], ["updated_at", "2023-02-17 19:40:49.398127"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:49.399103"], ["updated_at", "2023-02-17 19:40:49.399103"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.399951"], ["updated_at", "2023-02-17 19:40:49.399951"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.400770"], ["updated_at", "2023-02-17 19:40:49.400770"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.401522"], ["updated_at", "2023-02-17 19:40:49.401522"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.402206"], ["updated_at", "2023-02-17 19:40:49.402206"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.403118"], ["updated_at", "2023-02-17 19:40:49.403118"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:49.404009"], ["updated_at", "2023-02-17 19:40:49.404009"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.404946"], ["updated_at", "2023-02-17 19:40:49.404946"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.405962"], ["updated_at", "2023-02-17 19:40:49.405962"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.406759"], ["updated_at", "2023-02-17 19:40:49.406759"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.407489"], ["updated_at", "2023-02-17 19:40:49.407489"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.408217"], ["updated_at", "2023-02-17 19:40:49.408217"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.408973"], ["updated_at", "2023-02-17 19:40:49.408973"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.409714"], ["updated_at", "2023-02-17 19:40:49.409714"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.410470"], ["updated_at", "2023-02-17 19:40:49.410470"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.411216"], ["updated_at", "2023-02-17 19:40:49.411216"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.411943"], ["updated_at", "2023-02-17 19:40:49.411943"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.412802"], ["updated_at", "2023-02-17 19:40:49.412802"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.413613"], ["updated_at", "2023-02-17 19:40:49.413613"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:49.425162"], ["updated_at", "2023-02-17 19:40:49.425162"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:49.426641"], ["updated_at", "2023-02-17 19:40:49.426641"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:49.427585"], ["updated_at", "2023-02-17 19:40:49.427585"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:49.428445"], ["updated_at", "2023-02-17 19:40:49.428445"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:49.429320"], ["updated_at", "2023-02-17 19:40:49.429320"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:49.430026"], ["updated_at", "2023-02-17 19:40:49.430026"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:49.430717"], ["updated_at", "2023-02-17 19:40:49.430717"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:49.431379"], ["updated_at", "2023-02-17 19:40:49.431379"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:49.432146"], ["updated_at", "2023-02-17 19:40:49.432146"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.433034"], ["updated_at", "2023-02-17 19:40:49.433034"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.433856"], ["updated_at", "2023-02-17 19:40:49.433856"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.434588"], ["updated_at", "2023-02-17 19:40:49.434588"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.435376"], ["updated_at", "2023-02-17 19:40:49.435376"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.436265"], ["updated_at", "2023-02-17 19:40:49.436265"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.437021"], ["updated_at", "2023-02-17 19:40:49.437021"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.437789"], ["updated_at", "2023-02-17 19:40:49.437789"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.438516"], ["updated_at", "2023-02-17 19:40:49.438516"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.439236"], ["updated_at", "2023-02-17 19:40:49.439236"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.439992"], ["updated_at", "2023-02-17 19:40:49.439992"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.440736"], ["updated_at", "2023-02-17 19:40:49.440736"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.441460"], ["updated_at", "2023-02-17 19:40:49.441460"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.459550"], ["updated_at", "2023-02-17 19:40:49.459550"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.460629"], ["updated_at", "2023-02-17 19:40:49.460629"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.461499"], ["updated_at", "2023-02-17 19:40:49.461499"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.462243"], ["updated_at", "2023-02-17 19:40:49.462243"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.463146"], ["updated_at", "2023-02-17 19:40:49.463146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.463962"], ["updated_at", "2023-02-17 19:40:49.463962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.464660"], ["updated_at", "2023-02-17 19:40:49.464660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.465382"], ["updated_at", "2023-02-17 19:40:49.465382"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.466237"], ["updated_at", "2023-02-17 19:40:49.466237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.466962"], ["updated_at", "2023-02-17 19:40:49.466962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.467669"], ["updated_at", "2023-02-17 19:40:49.467669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.468367"], ["updated_at", "2023-02-17 19:40:49.468367"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.469065"], ["updated_at", "2023-02-17 19:40:49.469065"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.469781"], ["updated_at", "2023-02-17 19:40:49.469781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.470482"], ["updated_at", "2023-02-17 19:40:49.470482"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.471202"], ["updated_at", "2023-02-17 19:40:49.471202"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.488745"], ["updated_at", "2023-02-17 19:40:49.488745"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.489747"], ["updated_at", "2023-02-17 19:40:49.489747"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.490507"], ["updated_at", "2023-02-17 19:40:49.490507"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.491214"], ["updated_at", "2023-02-17 19:40:49.491214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.491963"], ["updated_at", "2023-02-17 19:40:49.491963"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.492703"], ["updated_at", "2023-02-17 19:40:49.492703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.493418"], ["updated_at", "2023-02-17 19:40:49.493418"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.494118"], ["updated_at", "2023-02-17 19:40:49.494118"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.494810"], ["updated_at", "2023-02-17 19:40:49.494810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.495500"], ["updated_at", "2023-02-17 19:40:49.495500"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.496484"], ["updated_at", "2023-02-17 19:40:49.496484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.497259"], ["updated_at", "2023-02-17 19:40:49.497259"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.497963"], ["updated_at", "2023-02-17 19:40:49.497963"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.498657"], ["updated_at", "2023-02-17 19:40:49.498657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.499374"], ["updated_at", "2023-02-17 19:40:49.499374"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.500125"], ["updated_at", "2023-02-17 19:40:49.500125"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.516626"], ["updated_at", "2023-02-17 19:40:49.516626"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.517843"], ["updated_at", "2023-02-17 19:40:49.517843"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.518838"], ["updated_at", "2023-02-17 19:40:49.518838"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.519590"], ["updated_at", "2023-02-17 19:40:49.519590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.520354"], ["updated_at", "2023-02-17 19:40:49.520354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.521118"], ["updated_at", "2023-02-17 19:40:49.521118"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.521997"], ["updated_at", "2023-02-17 19:40:49.521997"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.522990"], ["updated_at", "2023-02-17 19:40:49.522990"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.523790"], ["updated_at", "2023-02-17 19:40:49.523790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.524527"], ["updated_at", "2023-02-17 19:40:49.524527"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.525447"], ["updated_at", "2023-02-17 19:40:49.525447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.526444"], ["updated_at", "2023-02-17 19:40:49.526444"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.527424"], ["updated_at", "2023-02-17 19:40:49.527424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.528290"], ["updated_at", "2023-02-17 19:40:49.528290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.529097"], ["updated_at", "2023-02-17 19:40:49.529097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.529835"], ["updated_at", "2023-02-17 19:40:49.529835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.547505"], ["updated_at", "2023-02-17 19:40:49.547505"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.548517"], ["updated_at", "2023-02-17 19:40:49.548517"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.549268"], ["updated_at", "2023-02-17 19:40:49.549268"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.550006"], ["updated_at", "2023-02-17 19:40:49.550006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.550862"], ["updated_at", "2023-02-17 19:40:49.550862"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.551631"], ["updated_at", "2023-02-17 19:40:49.551631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.552342"], ["updated_at", "2023-02-17 19:40:49.552342"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.553061"], ["updated_at", "2023-02-17 19:40:49.553061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.553848"], ["updated_at", "2023-02-17 19:40:49.553848"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.554925"], ["updated_at", "2023-02-17 19:40:49.554925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.555667"], ["updated_at", "2023-02-17 19:40:49.555667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.556520"], ["updated_at", "2023-02-17 19:40:49.556520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.557290"], ["updated_at", "2023-02-17 19:40:49.557290"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.558033"], ["updated_at", "2023-02-17 19:40:49.558033"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.558754"], ["updated_at", "2023-02-17 19:40:49.558754"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.560144"], ["updated_at", "2023-02-17 19:40:49.560144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.578170"], ["updated_at", "2023-02-17 19:40:49.578170"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.579295"], ["updated_at", "2023-02-17 19:40:49.579295"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.580597"], ["updated_at", "2023-02-17 19:40:49.580597"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.581384"], ["updated_at", "2023-02-17 19:40:49.581384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.582180"], ["updated_at", "2023-02-17 19:40:49.582180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.582966"], ["updated_at", "2023-02-17 19:40:49.582966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.583832"], ["updated_at", "2023-02-17 19:40:49.583832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.584569"], ["updated_at", "2023-02-17 19:40:49.584569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.585280"], ["updated_at", "2023-02-17 19:40:49.585280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.586003"], ["updated_at", "2023-02-17 19:40:49.586003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.586846"], ["updated_at", "2023-02-17 19:40:49.586846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.587566"], ["updated_at", "2023-02-17 19:40:49.587566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.588246"], ["updated_at", "2023-02-17 19:40:49.588246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.588955"], ["updated_at", "2023-02-17 19:40:49.588955"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.589666"], ["updated_at", "2023-02-17 19:40:49.589666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.590340"], ["updated_at", "2023-02-17 19:40:49.590340"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.606529"], ["updated_at", "2023-02-17 19:40:49.606529"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.607546"], ["updated_at", "2023-02-17 19:40:49.607546"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.608328"], ["updated_at", "2023-02-17 19:40:49.608328"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.609033"], ["updated_at", "2023-02-17 19:40:49.609033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.609798"], ["updated_at", "2023-02-17 19:40:49.609798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.610520"], ["updated_at", "2023-02-17 19:40:49.610520"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.611220"], ["updated_at", "2023-02-17 19:40:49.611220"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.611957"], ["updated_at", "2023-02-17 19:40:49.611957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.612777"], ["updated_at", "2023-02-17 19:40:49.612777"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.613501"], ["updated_at", "2023-02-17 19:40:49.613501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.614215"], ["updated_at", "2023-02-17 19:40:49.614215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.614915"], ["updated_at", "2023-02-17 19:40:49.614915"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.615608"], ["updated_at", "2023-02-17 19:40:49.615608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.616304"], ["updated_at", "2023-02-17 19:40:49.616304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.617017"], ["updated_at", "2023-02-17 19:40:49.617017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.617721"], ["updated_at", "2023-02-17 19:40:49.617721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:40:49 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:49.626673"], ["updated_at", "2023-02-17 19:40:49.626673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:49.628112"], ["updated_at", "2023-02-17 19:40:49.628112"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:49.631094"], ["updated_at", "2023-02-17 19:40:49.631094"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:49.632264"], ["updated_at", "2023-02-17 19:40:49.632264"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:49.635039"], ["updated_at", "2023-02-17 19:40:49.635039"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:49.636212"], ["updated_at", "2023-02-17 19:40:49.636212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:49.638348"], ["updated_at", "2023-02-17 19:40:49.638348"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:49.639808"], ["updated_at", "2023-02-17 19:40:49.639808"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:49.641346"], ["updated_at", "2023-02-17 19:40:49.641346"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:49.642605"], ["updated_at", "2023-02-17 19:40:49.642605"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:49.643976"], ["updated_at", "2023-02-17 19:40:49.643976"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:49.645152"], ["updated_at", "2023-02-17 19:40:49.645152"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:49.646676"], ["updated_at", "2023-02-17 19:40:49.646676"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:49.647865"], ["updated_at", "2023-02-17 19:40:49.647865"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:49.649195"], ["updated_at", "2023-02-17 19:40:49.649195"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:49.650360"], ["updated_at", "2023-02-17 19:40:49.650360"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:49.651697"], ["updated_at", "2023-02-17 19:40:49.651697"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:49.652886"], ["updated_at", "2023-02-17 19:40:49.652886"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:49.654294"], ["updated_at", "2023-02-17 19:40:49.654294"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:49.655459"], ["updated_at", "2023-02-17 19:40:49.655459"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:49.656809"], ["updated_at", "2023-02-17 19:40:49.656809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:49.658057"], ["updated_at", "2023-02-17 19:40:49.658057"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:49.659433"], ["updated_at", "2023-02-17 19:40:49.659433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:49.660662"], ["updated_at", "2023-02-17 19:40:49.660662"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:49.662090"], ["updated_at", "2023-02-17 19:40:49.662090"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:49.663387"], ["updated_at", "2023-02-17 19:40:49.663387"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:49.664749"], ["updated_at", "2023-02-17 19:40:49.664749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:49.665931"], ["updated_at", "2023-02-17 19:40:49.665931"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:49.667322"], ["updated_at", "2023-02-17 19:40:49.667322"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:49.668576"], ["updated_at", "2023-02-17 19:40:49.668576"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:49.669964"], ["updated_at", "2023-02-17 19:40:49.669964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:49.671163"], ["updated_at", "2023-02-17 19:40:49.671163"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:49.672528"], ["updated_at", "2023-02-17 19:40:49.672528"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:49.673737"], ["updated_at", "2023-02-17 19:40:49.673737"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:49.675112"], ["updated_at", "2023-02-17 19:40:49.675112"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:49.676328"], ["updated_at", "2023-02-17 19:40:49.676328"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:49.677746"], ["updated_at", "2023-02-17 19:40:49.677746"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:49.678950"], ["updated_at", "2023-02-17 19:40:49.678950"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:49.680478"], ["updated_at", "2023-02-17 19:40:49.680478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:49.681683"], ["updated_at", "2023-02-17 19:40:49.681683"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:49.683080"], ["updated_at", "2023-02-17 19:40:49.683080"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:49.684320"], ["updated_at", "2023-02-17 19:40:49.684320"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:49.685688"], ["updated_at", "2023-02-17 19:40:49.685688"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:49.686903"], ["updated_at", "2023-02-17 19:40:49.686903"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:49.688281"], ["updated_at", "2023-02-17 19:40:49.688281"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:49.689479"], ["updated_at", "2023-02-17 19:40:49.689479"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:49.690834"], ["updated_at", "2023-02-17 19:40:49.690834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:49.691985"], ["updated_at", "2023-02-17 19:40:49.691985"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:49.693443"], ["updated_at", "2023-02-17 19:40:49.693443"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:49.694658"], ["updated_at", "2023-02-17 19:40:49.694658"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:49.696105"], ["updated_at", "2023-02-17 19:40:49.696105"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:49.697343"], ["updated_at", "2023-02-17 19:40:49.697343"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:49.698757"], ["updated_at", "2023-02-17 19:40:49.698757"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:49.700019"], ["updated_at", "2023-02-17 19:40:49.700019"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:49.701646"], ["updated_at", "2023-02-17 19:40:49.701646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:49.702907"], ["updated_at", "2023-02-17 19:40:49.702907"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:49.704304"], ["updated_at", "2023-02-17 19:40:49.704304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:49.705536"], ["updated_at", "2023-02-17 19:40:49.705536"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:49.706994"], ["updated_at", "2023-02-17 19:40:49.706994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:49.708358"], ["updated_at", "2023-02-17 19:40:49.708358"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:49.709889"], ["updated_at", "2023-02-17 19:40:49.709889"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:49.711152"], ["updated_at", "2023-02-17 19:40:49.711152"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:49.712627"], ["updated_at", "2023-02-17 19:40:49.712627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:49.713925"], ["updated_at", "2023-02-17 19:40:49.713925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:49.715372"], ["updated_at", "2023-02-17 19:40:49.715372"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:49.716720"], ["updated_at", "2023-02-17 19:40:49.716720"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:49.718569"], ["updated_at", "2023-02-17 19:40:49.718569"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:49.719882"], ["updated_at", "2023-02-17 19:40:49.719882"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:49.721260"], ["updated_at", "2023-02-17 19:40:49.721260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:49.722545"], ["updated_at", "2023-02-17 19:40:49.722545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:49.724018"], ["updated_at", "2023-02-17 19:40:49.724018"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:49.725226"], ["updated_at", "2023-02-17 19:40:49.725226"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:49.726745"], ["updated_at", "2023-02-17 19:40:49.726745"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:49.728321"], ["updated_at", "2023-02-17 19:40:49.728321"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:49.730091"], ["updated_at", "2023-02-17 19:40:49.730091"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:49.731475"], ["updated_at", "2023-02-17 19:40:49.731475"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:49.732852"], ["updated_at", "2023-02-17 19:40:49.732852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:49.734058"], ["updated_at", "2023-02-17 19:40:49.734058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:49.735539"], ["updated_at", "2023-02-17 19:40:49.735539"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:49.736824"], ["updated_at", "2023-02-17 19:40:49.736824"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:49.738413"], ["updated_at", "2023-02-17 19:40:49.738413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:49.739694"], ["updated_at", "2023-02-17 19:40:49.739694"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:49.741139"], ["updated_at", "2023-02-17 19:40:49.741139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:49.742325"], ["updated_at", "2023-02-17 19:40:49.742325"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:49.743826"], ["updated_at", "2023-02-17 19:40:49.743826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:49.745077"], ["updated_at", "2023-02-17 19:40:49.745077"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:49.746591"], ["updated_at", "2023-02-17 19:40:49.746591"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:49.748232"], ["updated_at", "2023-02-17 19:40:49.748232"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:49.749914"], ["updated_at", "2023-02-17 19:40:49.749914"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:49.751267"], ["updated_at", "2023-02-17 19:40:49.751267"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:49.752754"], ["updated_at", "2023-02-17 19:40:49.752754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:49.754031"], ["updated_at", "2023-02-17 19:40:49.754031"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:49.755440"], ["updated_at", "2023-02-17 19:40:49.755440"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:49.757411"], ["updated_at", "2023-02-17 19:40:49.757411"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:49.759147"], ["updated_at", "2023-02-17 19:40:49.759147"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:49.760280"], ["updated_at", "2023-02-17 19:40:49.760280"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:49.761582"], ["updated_at", "2023-02-17 19:40:49.761582"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:49.763093"], ["updated_at", "2023-02-17 19:40:49.763093"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:49.764560"], ["updated_at", "2023-02-17 19:40:49.764560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:49.765788"], ["updated_at", "2023-02-17 19:40:49.765788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:49.766880"], ["updated_at", "2023-02-17 19:40:49.766880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:49.780101"], ["updated_at", "2023-02-17 19:40:49.780101"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:49.781817"], ["updated_at", "2023-02-17 19:40:49.781817"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:49.782897"], ["updated_at", "2023-02-17 19:40:49.782897"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.783831"], ["updated_at", "2023-02-17 19:40:49.783831"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.784981"], ["updated_at", "2023-02-17 19:40:49.784981"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.785793"], ["updated_at", "2023-02-17 19:40:49.785793"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.786511"], ["updated_at", "2023-02-17 19:40:49.786511"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.787581"], ["updated_at", "2023-02-17 19:40:49.787581"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:49.788540"], ["updated_at", "2023-02-17 19:40:49.788540"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.789514"], ["updated_at", "2023-02-17 19:40:49.789514"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.790373"], ["updated_at", "2023-02-17 19:40:49.790373"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.791140"], ["updated_at", "2023-02-17 19:40:49.791140"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.791892"], ["updated_at", "2023-02-17 19:40:49.791892"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.792643"], ["updated_at", "2023-02-17 19:40:49.792643"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.793401"], ["updated_at", "2023-02-17 19:40:49.793401"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.794144"], ["updated_at", "2023-02-17 19:40:49.794144"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.794862"], ["updated_at", "2023-02-17 19:40:49.794862"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.795609"], ["updated_at", "2023-02-17 19:40:49.795609"]]
LikertScaleQuestion Create (0.4ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.797741"], ["updated_at", "2023-02-17 19:40:49.797741"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.799112"], ["updated_at", "2023-02-17 19:40:49.799112"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.799957"], ["updated_at", "2023-02-17 19:40:49.799957"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:49.811715"], ["updated_at", "2023-02-17 19:40:49.811715"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:49.813339"], ["updated_at", "2023-02-17 19:40:49.813339"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:49.814263"], ["updated_at", "2023-02-17 19:40:49.814263"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:49.815092"], ["updated_at", "2023-02-17 19:40:49.815092"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:49.815805"], ["updated_at", "2023-02-17 19:40:49.815805"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:49.816484"], ["updated_at", "2023-02-17 19:40:49.816484"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:49.817253"], ["updated_at", "2023-02-17 19:40:49.817253"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:49.817969"], ["updated_at", "2023-02-17 19:40:49.817969"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:49.818867"], ["updated_at", "2023-02-17 19:40:49.818867"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.819750"], ["updated_at", "2023-02-17 19:40:49.819750"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.820538"], ["updated_at", "2023-02-17 19:40:49.820538"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.821322"], ["updated_at", "2023-02-17 19:40:49.821322"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.822082"], ["updated_at", "2023-02-17 19:40:49.822082"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.822808"], ["updated_at", "2023-02-17 19:40:49.822808"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.823546"], ["updated_at", "2023-02-17 19:40:49.823546"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.824288"], ["updated_at", "2023-02-17 19:40:49.824288"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.825046"], ["updated_at", "2023-02-17 19:40:49.825046"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.825865"], ["updated_at", "2023-02-17 19:40:49.825865"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.826664"], ["updated_at", "2023-02-17 19:40:49.826664"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.827414"], ["updated_at", "2023-02-17 19:40:49.827414"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:49.828151"], ["updated_at", "2023-02-17 19:40:49.828151"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.844573"], ["updated_at", "2023-02-17 19:40:49.844573"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.845795"], ["updated_at", "2023-02-17 19:40:49.845795"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.846678"], ["updated_at", "2023-02-17 19:40:49.846678"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.847370"], ["updated_at", "2023-02-17 19:40:49.847370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.848179"], ["updated_at", "2023-02-17 19:40:49.848179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.849034"], ["updated_at", "2023-02-17 19:40:49.849034"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.849842"], ["updated_at", "2023-02-17 19:40:49.849842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.850571"], ["updated_at", "2023-02-17 19:40:49.850571"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.851273"], ["updated_at", "2023-02-17 19:40:49.851273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.851968"], ["updated_at", "2023-02-17 19:40:49.851968"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.852661"], ["updated_at", "2023-02-17 19:40:49.852661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.853348"], ["updated_at", "2023-02-17 19:40:49.853348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.854053"], ["updated_at", "2023-02-17 19:40:49.854053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.854751"], ["updated_at", "2023-02-17 19:40:49.854751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.855429"], ["updated_at", "2023-02-17 19:40:49.855429"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:49.856127"], ["updated_at", "2023-02-17 19:40:49.856127"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.872466"], ["updated_at", "2023-02-17 19:40:49.872466"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.873445"], ["updated_at", "2023-02-17 19:40:49.873445"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.874244"], ["updated_at", "2023-02-17 19:40:49.874244"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.875016"], ["updated_at", "2023-02-17 19:40:49.875016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.875859"], ["updated_at", "2023-02-17 19:40:49.875859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.876624"], ["updated_at", "2023-02-17 19:40:49.876624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.877384"], ["updated_at", "2023-02-17 19:40:49.877384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.878123"], ["updated_at", "2023-02-17 19:40:49.878123"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.878882"], ["updated_at", "2023-02-17 19:40:49.878882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.879831"], ["updated_at", "2023-02-17 19:40:49.879831"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.880572"], ["updated_at", "2023-02-17 19:40:49.880572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.881295"], ["updated_at", "2023-02-17 19:40:49.881295"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.881998"], ["updated_at", "2023-02-17 19:40:49.881998"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.882744"], ["updated_at", "2023-02-17 19:40:49.882744"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.883564"], ["updated_at", "2023-02-17 19:40:49.883564"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:49.884403"], ["updated_at", "2023-02-17 19:40:49.884403"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.6ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.902097"], ["updated_at", "2023-02-17 19:40:49.902097"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.903121"], ["updated_at", "2023-02-17 19:40:49.903121"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.903888"], ["updated_at", "2023-02-17 19:40:49.903888"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.904681"], ["updated_at", "2023-02-17 19:40:49.904681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.905548"], ["updated_at", "2023-02-17 19:40:49.905548"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.906300"], ["updated_at", "2023-02-17 19:40:49.906300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.907023"], ["updated_at", "2023-02-17 19:40:49.907023"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.907750"], ["updated_at", "2023-02-17 19:40:49.907750"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.908476"], ["updated_at", "2023-02-17 19:40:49.908476"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.909321"], ["updated_at", "2023-02-17 19:40:49.909321"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.910119"], ["updated_at", "2023-02-17 19:40:49.910119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.910840"], ["updated_at", "2023-02-17 19:40:49.910840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.911543"], ["updated_at", "2023-02-17 19:40:49.911543"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.912237"], ["updated_at", "2023-02-17 19:40:49.912237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.913843"], ["updated_at", "2023-02-17 19:40:49.913843"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:49.914695"], ["updated_at", "2023-02-17 19:40:49.914695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.932379"], ["updated_at", "2023-02-17 19:40:49.932379"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.933411"], ["updated_at", "2023-02-17 19:40:49.933411"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.934272"], ["updated_at", "2023-02-17 19:40:49.934272"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.935185"], ["updated_at", "2023-02-17 19:40:49.935185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.936324"], ["updated_at", "2023-02-17 19:40:49.936324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.937126"], ["updated_at", "2023-02-17 19:40:49.937126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.938062"], ["updated_at", "2023-02-17 19:40:49.938062"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.938916"], ["updated_at", "2023-02-17 19:40:49.938916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.939670"], ["updated_at", "2023-02-17 19:40:49.939670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.940372"], ["updated_at", "2023-02-17 19:40:49.940372"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.941055"], ["updated_at", "2023-02-17 19:40:49.941055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.941828"], ["updated_at", "2023-02-17 19:40:49.941828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.942679"], ["updated_at", "2023-02-17 19:40:49.942679"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.943445"], ["updated_at", "2023-02-17 19:40:49.943445"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.944173"], ["updated_at", "2023-02-17 19:40:49.944173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:49.944872"], ["updated_at", "2023-02-17 19:40:49.944872"]]
TRANSACTION (0.4ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.962176"], ["updated_at", "2023-02-17 19:40:49.962176"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.964136"], ["updated_at", "2023-02-17 19:40:49.964136"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.965014"], ["updated_at", "2023-02-17 19:40:49.965014"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.965790"], ["updated_at", "2023-02-17 19:40:49.965790"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.966577"], ["updated_at", "2023-02-17 19:40:49.966577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.967405"], ["updated_at", "2023-02-17 19:40:49.967405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.968693"], ["updated_at", "2023-02-17 19:40:49.968693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.969598"], ["updated_at", "2023-02-17 19:40:49.969598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.970312"], ["updated_at", "2023-02-17 19:40:49.970312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.971071"], ["updated_at", "2023-02-17 19:40:49.971071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.971868"], ["updated_at", "2023-02-17 19:40:49.971868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.972596"], ["updated_at", "2023-02-17 19:40:49.972596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.973292"], ["updated_at", "2023-02-17 19:40:49.973292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.974016"], ["updated_at", "2023-02-17 19:40:49.974016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.974720"], ["updated_at", "2023-02-17 19:40:49.974720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:49.975509"], ["updated_at", "2023-02-17 19:40:49.975509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:49.993386"], ["updated_at", "2023-02-17 19:40:49.993386"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:49.994452"], ["updated_at", "2023-02-17 19:40:49.994452"]]
QuestionAnswer Create (0.5ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:49.995281"], ["updated_at", "2023-02-17 19:40:49.995281"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:49.996526"], ["updated_at", "2023-02-17 19:40:49.996526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.998170"], ["updated_at", "2023-02-17 19:40:49.998170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.999018"], ["updated_at", "2023-02-17 19:40:49.999018"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:49.999736"], ["updated_at", "2023-02-17 19:40:49.999736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.000542"], ["updated_at", "2023-02-17 19:40:50.000542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.001461"], ["updated_at", "2023-02-17 19:40:50.001461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.002501"], ["updated_at", "2023-02-17 19:40:50.002501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.003273"], ["updated_at", "2023-02-17 19:40:50.003273"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.004033"], ["updated_at", "2023-02-17 19:40:50.004033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.004802"], ["updated_at", "2023-02-17 19:40:50.004802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.005551"], ["updated_at", "2023-02-17 19:40:50.005551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.006307"], ["updated_at", "2023-02-17 19:40:50.006307"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.007020"], ["updated_at", "2023-02-17 19:40:50.007020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:40:50 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 16ms (Views: 11.4ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:50.033527"], ["updated_at", "2023-02-17 19:40:50.033527"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:50.035190"], ["updated_at", "2023-02-17 19:40:50.035190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:50.038711"], ["updated_at", "2023-02-17 19:40:50.038711"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:50.039974"], ["updated_at", "2023-02-17 19:40:50.039974"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:50.042759"], ["updated_at", "2023-02-17 19:40:50.042759"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:50.044026"], ["updated_at", "2023-02-17 19:40:50.044026"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:50.046759"], ["updated_at", "2023-02-17 19:40:50.046759"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:50.048729"], ["updated_at", "2023-02-17 19:40:50.048729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:50.050378"], ["updated_at", "2023-02-17 19:40:50.050378"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:50.051944"], ["updated_at", "2023-02-17 19:40:50.051944"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:50.054138"], ["updated_at", "2023-02-17 19:40:50.054138"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:50.055524"], ["updated_at", "2023-02-17 19:40:50.055524"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:50.056971"], ["updated_at", "2023-02-17 19:40:50.056971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:50.058279"], ["updated_at", "2023-02-17 19:40:50.058279"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:50.059850"], ["updated_at", "2023-02-17 19:40:50.059850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:50.061099"], ["updated_at", "2023-02-17 19:40:50.061099"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:50.062911"], ["updated_at", "2023-02-17 19:40:50.062911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:50.064736"], ["updated_at", "2023-02-17 19:40:50.064736"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:50.066230"], ["updated_at", "2023-02-17 19:40:50.066230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:50.067814"], ["updated_at", "2023-02-17 19:40:50.067814"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:50.069766"], ["updated_at", "2023-02-17 19:40:50.069766"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:50.071099"], ["updated_at", "2023-02-17 19:40:50.071099"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:50.072534"], ["updated_at", "2023-02-17 19:40:50.072534"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:50.073724"], ["updated_at", "2023-02-17 19:40:50.073724"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:50.075254"], ["updated_at", "2023-02-17 19:40:50.075254"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:50.076556"], ["updated_at", "2023-02-17 19:40:50.076556"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:50.077999"], ["updated_at", "2023-02-17 19:40:50.077999"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:50.079624"], ["updated_at", "2023-02-17 19:40:50.079624"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:50.081673"], ["updated_at", "2023-02-17 19:40:50.081673"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:50.083075"], ["updated_at", "2023-02-17 19:40:50.083075"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:50.084640"], ["updated_at", "2023-02-17 19:40:50.084640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:50.086376"], ["updated_at", "2023-02-17 19:40:50.086376"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:50.087871"], ["updated_at", "2023-02-17 19:40:50.087871"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:50.089122"], ["updated_at", "2023-02-17 19:40:50.089122"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:50.090613"], ["updated_at", "2023-02-17 19:40:50.090613"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:50.091906"], ["updated_at", "2023-02-17 19:40:50.091906"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:50.093337"], ["updated_at", "2023-02-17 19:40:50.093337"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:50.094510"], ["updated_at", "2023-02-17 19:40:50.094510"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:50.096357"], ["updated_at", "2023-02-17 19:40:50.096357"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:50.098212"], ["updated_at", "2023-02-17 19:40:50.098212"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:50.099701"], ["updated_at", "2023-02-17 19:40:50.099701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:50.101023"], ["updated_at", "2023-02-17 19:40:50.101023"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:50.102764"], ["updated_at", "2023-02-17 19:40:50.102764"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:50.104066"], ["updated_at", "2023-02-17 19:40:50.104066"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:50.105625"], ["updated_at", "2023-02-17 19:40:50.105625"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:50.106919"], ["updated_at", "2023-02-17 19:40:50.106919"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:50.108377"], ["updated_at", "2023-02-17 19:40:50.108377"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:50.109721"], ["updated_at", "2023-02-17 19:40:50.109721"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:50.111243"], ["updated_at", "2023-02-17 19:40:50.111243"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:50.113092"], ["updated_at", "2023-02-17 19:40:50.113092"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:50.114972"], ["updated_at", "2023-02-17 19:40:50.114972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:50.116294"], ["updated_at", "2023-02-17 19:40:50.116294"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:50.118061"], ["updated_at", "2023-02-17 19:40:50.118061"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:50.120105"], ["updated_at", "2023-02-17 19:40:50.120105"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:50.121811"], ["updated_at", "2023-02-17 19:40:50.121811"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:50.123041"], ["updated_at", "2023-02-17 19:40:50.123041"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:50.124433"], ["updated_at", "2023-02-17 19:40:50.124433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:50.125708"], ["updated_at", "2023-02-17 19:40:50.125708"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:50.127123"], ["updated_at", "2023-02-17 19:40:50.127123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:50.128316"], ["updated_at", "2023-02-17 19:40:50.128316"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:50.130333"], ["updated_at", "2023-02-17 19:40:50.130333"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:50.131675"], ["updated_at", "2023-02-17 19:40:50.131675"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:50.133135"], ["updated_at", "2023-02-17 19:40:50.133135"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:50.134567"], ["updated_at", "2023-02-17 19:40:50.134567"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:50.136041"], ["updated_at", "2023-02-17 19:40:50.136041"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:50.137526"], ["updated_at", "2023-02-17 19:40:50.137526"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:50.138957"], ["updated_at", "2023-02-17 19:40:50.138957"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:50.140138"], ["updated_at", "2023-02-17 19:40:50.140138"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:50.141652"], ["updated_at", "2023-02-17 19:40:50.141652"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:50.143110"], ["updated_at", "2023-02-17 19:40:50.143110"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:50.144487"], ["updated_at", "2023-02-17 19:40:50.144487"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:50.145903"], ["updated_at", "2023-02-17 19:40:50.145903"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:50.147933"], ["updated_at", "2023-02-17 19:40:50.147933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:50.149394"], ["updated_at", "2023-02-17 19:40:50.149394"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:50.150911"], ["updated_at", "2023-02-17 19:40:50.150911"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:50.152118"], ["updated_at", "2023-02-17 19:40:50.152118"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:50.153551"], ["updated_at", "2023-02-17 19:40:50.153551"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:50.154883"], ["updated_at", "2023-02-17 19:40:50.154883"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:50.156664"], ["updated_at", "2023-02-17 19:40:50.156664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:50.158303"], ["updated_at", "2023-02-17 19:40:50.158303"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:50.159745"], ["updated_at", "2023-02-17 19:40:50.159745"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:50.161149"], ["updated_at", "2023-02-17 19:40:50.161149"], ["role_id", 34]]
TRANSACTION (0.4ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:50.163251"], ["updated_at", "2023-02-17 19:40:50.163251"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:50.165123"], ["updated_at", "2023-02-17 19:40:50.165123"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:50.166999"], ["updated_at", "2023-02-17 19:40:50.166999"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:50.168244"], ["updated_at", "2023-02-17 19:40:50.168244"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:50.169638"], ["updated_at", "2023-02-17 19:40:50.169638"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:50.170948"], ["updated_at", "2023-02-17 19:40:50.170948"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:50.172704"], ["updated_at", "2023-02-17 19:40:50.172704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:50.174316"], ["updated_at", "2023-02-17 19:40:50.174316"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:50.175875"], ["updated_at", "2023-02-17 19:40:50.175875"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:50.177196"], ["updated_at", "2023-02-17 19:40:50.177196"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:50.178693"], ["updated_at", "2023-02-17 19:40:50.178693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:50.181189"], ["updated_at", "2023-02-17 19:40:50.181189"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:50.183025"], ["updated_at", "2023-02-17 19:40:50.183025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:50.184262"], ["updated_at", "2023-02-17 19:40:50.184262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:50.185550"], ["updated_at", "2023-02-17 19:40:50.185550"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:50.187061"], ["updated_at", "2023-02-17 19:40:50.187061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:50.188616"], ["updated_at", "2023-02-17 19:40:50.188616"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:50.190356"], ["updated_at", "2023-02-17 19:40:50.190356"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:50.191540"], ["updated_at", "2023-02-17 19:40:50.191540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:50.204120"], ["updated_at", "2023-02-17 19:40:50.204120"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:50.205447"], ["updated_at", "2023-02-17 19:40:50.205447"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:50.207065"], ["updated_at", "2023-02-17 19:40:50.207065"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.208066"], ["updated_at", "2023-02-17 19:40:50.208066"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.208853"], ["updated_at", "2023-02-17 19:40:50.208853"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.209585"], ["updated_at", "2023-02-17 19:40:50.209585"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.210313"], ["updated_at", "2023-02-17 19:40:50.210313"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.211002"], ["updated_at", "2023-02-17 19:40:50.211002"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:50.211754"], ["updated_at", "2023-02-17 19:40:50.211754"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.213141"], ["updated_at", "2023-02-17 19:40:50.213141"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.214726"], ["updated_at", "2023-02-17 19:40:50.214726"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.215563"], ["updated_at", "2023-02-17 19:40:50.215563"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.216310"], ["updated_at", "2023-02-17 19:40:50.216310"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.217043"], ["updated_at", "2023-02-17 19:40:50.217043"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.217822"], ["updated_at", "2023-02-17 19:40:50.217822"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.218566"], ["updated_at", "2023-02-17 19:40:50.218566"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.219296"], ["updated_at", "2023-02-17 19:40:50.219296"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.220047"], ["updated_at", "2023-02-17 19:40:50.220047"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.220836"], ["updated_at", "2023-02-17 19:40:50.220836"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.221598"], ["updated_at", "2023-02-17 19:40:50.221598"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.222785"], ["updated_at", "2023-02-17 19:40:50.222785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:50.235614"], ["updated_at", "2023-02-17 19:40:50.235614"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:50.236864"], ["updated_at", "2023-02-17 19:40:50.236864"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:50.237760"], ["updated_at", "2023-02-17 19:40:50.237760"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:50.238582"], ["updated_at", "2023-02-17 19:40:50.238582"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:50.239913"], ["updated_at", "2023-02-17 19:40:50.239913"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:50.240873"], ["updated_at", "2023-02-17 19:40:50.240873"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:50.241619"], ["updated_at", "2023-02-17 19:40:50.241619"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:50.242304"], ["updated_at", "2023-02-17 19:40:50.242304"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:50.243062"], ["updated_at", "2023-02-17 19:40:50.243062"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.243923"], ["updated_at", "2023-02-17 19:40:50.243923"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.244727"], ["updated_at", "2023-02-17 19:40:50.244727"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.245476"], ["updated_at", "2023-02-17 19:40:50.245476"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.246609"], ["updated_at", "2023-02-17 19:40:50.246609"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.247369"], ["updated_at", "2023-02-17 19:40:50.247369"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.248093"], ["updated_at", "2023-02-17 19:40:50.248093"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.248807"], ["updated_at", "2023-02-17 19:40:50.248807"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.249538"], ["updated_at", "2023-02-17 19:40:50.249538"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.250248"], ["updated_at", "2023-02-17 19:40:50.250248"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.250953"], ["updated_at", "2023-02-17 19:40:50.250953"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.251672"], ["updated_at", "2023-02-17 19:40:50.251672"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.252386"], ["updated_at", "2023-02-17 19:40:50.252386"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.270888"], ["updated_at", "2023-02-17 19:40:50.270888"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.272077"], ["updated_at", "2023-02-17 19:40:50.272077"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.273175"], ["updated_at", "2023-02-17 19:40:50.273175"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.274065"], ["updated_at", "2023-02-17 19:40:50.274065"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.274981"], ["updated_at", "2023-02-17 19:40:50.274981"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.275958"], ["updated_at", "2023-02-17 19:40:50.275958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.276865"], ["updated_at", "2023-02-17 19:40:50.276865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.277872"], ["updated_at", "2023-02-17 19:40:50.277872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.278684"], ["updated_at", "2023-02-17 19:40:50.278684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.279633"], ["updated_at", "2023-02-17 19:40:50.279633"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.280456"], ["updated_at", "2023-02-17 19:40:50.280456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.281322"], ["updated_at", "2023-02-17 19:40:50.281322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.282070"], ["updated_at", "2023-02-17 19:40:50.282070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.282784"], ["updated_at", "2023-02-17 19:40:50.282784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.283511"], ["updated_at", "2023-02-17 19:40:50.283511"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.284354"], ["updated_at", "2023-02-17 19:40:50.284354"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.302542"], ["updated_at", "2023-02-17 19:40:50.302542"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.303736"], ["updated_at", "2023-02-17 19:40:50.303736"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.304564"], ["updated_at", "2023-02-17 19:40:50.304564"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.305304"], ["updated_at", "2023-02-17 19:40:50.305304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.306089"], ["updated_at", "2023-02-17 19:40:50.306089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.306840"], ["updated_at", "2023-02-17 19:40:50.306840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.307572"], ["updated_at", "2023-02-17 19:40:50.307572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.308281"], ["updated_at", "2023-02-17 19:40:50.308281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.308934"], ["updated_at", "2023-02-17 19:40:50.308934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.309630"], ["updated_at", "2023-02-17 19:40:50.309630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.310356"], ["updated_at", "2023-02-17 19:40:50.310356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.311090"], ["updated_at", "2023-02-17 19:40:50.311090"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.311792"], ["updated_at", "2023-02-17 19:40:50.311792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.312876"], ["updated_at", "2023-02-17 19:40:50.312876"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.314413"], ["updated_at", "2023-02-17 19:40:50.314413"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.315520"], ["updated_at", "2023-02-17 19:40:50.315520"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.3ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.334667"], ["updated_at", "2023-02-17 19:40:50.334667"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.335828"], ["updated_at", "2023-02-17 19:40:50.335828"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.336825"], ["updated_at", "2023-02-17 19:40:50.336825"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.337613"], ["updated_at", "2023-02-17 19:40:50.337613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.338385"], ["updated_at", "2023-02-17 19:40:50.338385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.339105"], ["updated_at", "2023-02-17 19:40:50.339105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.339859"], ["updated_at", "2023-02-17 19:40:50.339859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.340584"], ["updated_at", "2023-02-17 19:40:50.340584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.341297"], ["updated_at", "2023-02-17 19:40:50.341297"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.342027"], ["updated_at", "2023-02-17 19:40:50.342027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.342738"], ["updated_at", "2023-02-17 19:40:50.342738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.344069"], ["updated_at", "2023-02-17 19:40:50.344069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.345017"], ["updated_at", "2023-02-17 19:40:50.345017"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.346131"], ["updated_at", "2023-02-17 19:40:50.346131"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.347505"], ["updated_at", "2023-02-17 19:40:50.347505"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.348382"], ["updated_at", "2023-02-17 19:40:50.348382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.375163"], ["updated_at", "2023-02-17 19:40:50.375163"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.376242"], ["updated_at", "2023-02-17 19:40:50.376242"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.377601"], ["updated_at", "2023-02-17 19:40:50.377601"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.378592"], ["updated_at", "2023-02-17 19:40:50.378592"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.379765"], ["updated_at", "2023-02-17 19:40:50.379765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.381348"], ["updated_at", "2023-02-17 19:40:50.381348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.382278"], ["updated_at", "2023-02-17 19:40:50.382278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.383209"], ["updated_at", "2023-02-17 19:40:50.383209"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.384153"], ["updated_at", "2023-02-17 19:40:50.384153"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.385043"], ["updated_at", "2023-02-17 19:40:50.385043"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.385900"], ["updated_at", "2023-02-17 19:40:50.385900"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.386969"], ["updated_at", "2023-02-17 19:40:50.386969"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.387829"], ["updated_at", "2023-02-17 19:40:50.387829"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.388655"], ["updated_at", "2023-02-17 19:40:50.388655"]]
LikertScaleAnswer Create (1.0ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.389601"], ["updated_at", "2023-02-17 19:40:50.389601"]]
LikertScaleAnswer Create (0.5ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.391533"], ["updated_at", "2023-02-17 19:40:50.391533"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.3ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.423229"], ["updated_at", "2023-02-17 19:40:50.423229"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.424493"], ["updated_at", "2023-02-17 19:40:50.424493"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.425626"], ["updated_at", "2023-02-17 19:40:50.425626"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.426845"], ["updated_at", "2023-02-17 19:40:50.426845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.427961"], ["updated_at", "2023-02-17 19:40:50.427961"]]
LikertScaleAnswer Create (0.6ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.429161"], ["updated_at", "2023-02-17 19:40:50.429161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.430749"], ["updated_at", "2023-02-17 19:40:50.430749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.431846"], ["updated_at", "2023-02-17 19:40:50.431846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.433544"], ["updated_at", "2023-02-17 19:40:50.433544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.434773"], ["updated_at", "2023-02-17 19:40:50.434773"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.435840"], ["updated_at", "2023-02-17 19:40:50.435840"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.436887"], ["updated_at", "2023-02-17 19:40:50.436887"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.437918"], ["updated_at", "2023-02-17 19:40:50.437918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.438961"], ["updated_at", "2023-02-17 19:40:50.438961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.439999"], ["updated_at", "2023-02-17 19:40:50.439999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.441036"], ["updated_at", "2023-02-17 19:40:50.441036"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.460621"], ["updated_at", "2023-02-17 19:40:50.460621"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.461758"], ["updated_at", "2023-02-17 19:40:50.461758"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.462904"], ["updated_at", "2023-02-17 19:40:50.462904"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.464061"], ["updated_at", "2023-02-17 19:40:50.464061"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.467552"], ["updated_at", "2023-02-17 19:40:50.467552"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.469398"], ["updated_at", "2023-02-17 19:40:50.469398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.470687"], ["updated_at", "2023-02-17 19:40:50.470687"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.471874"], ["updated_at", "2023-02-17 19:40:50.471874"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.472973"], ["updated_at", "2023-02-17 19:40:50.472973"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.474093"], ["updated_at", "2023-02-17 19:40:50.474093"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.475209"], ["updated_at", "2023-02-17 19:40:50.475209"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.476267"], ["updated_at", "2023-02-17 19:40:50.476267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.477553"], ["updated_at", "2023-02-17 19:40:50.477553"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.478546"], ["updated_at", "2023-02-17 19:40:50.478546"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.479563"], ["updated_at", "2023-02-17 19:40:50.479563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.481154"], ["updated_at", "2023-02-17 19:40:50.481154"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:40:50 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.7ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (1.9ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:50.501126"], ["updated_at", "2023-02-17 19:40:50.501126"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:50.504506"], ["updated_at", "2023-02-17 19:40:50.504506"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:50.508942"], ["updated_at", "2023-02-17 19:40:50.508942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:50.510415"], ["updated_at", "2023-02-17 19:40:50.510415"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:50.514009"], ["updated_at", "2023-02-17 19:40:50.514009"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:50.515576"], ["updated_at", "2023-02-17 19:40:50.515576"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:50.518229"], ["updated_at", "2023-02-17 19:40:50.518229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (1.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:50.520358"], ["updated_at", "2023-02-17 19:40:50.520358"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (1.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:50.523480"], ["updated_at", "2023-02-17 19:40:50.523480"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:50.526348"], ["updated_at", "2023-02-17 19:40:50.526348"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:50.528293"], ["updated_at", "2023-02-17 19:40:50.528293"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:50.530483"], ["updated_at", "2023-02-17 19:40:50.530483"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:50.532383"], ["updated_at", "2023-02-17 19:40:50.532383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:50.533978"], ["updated_at", "2023-02-17 19:40:50.533978"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:50.535712"], ["updated_at", "2023-02-17 19:40:50.535712"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:50.537279"], ["updated_at", "2023-02-17 19:40:50.537279"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:50.539095"], ["updated_at", "2023-02-17 19:40:50.539095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:50.541048"], ["updated_at", "2023-02-17 19:40:50.541048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:50.543098"], ["updated_at", "2023-02-17 19:40:50.543098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:50.544688"], ["updated_at", "2023-02-17 19:40:50.544688"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:50.546852"], ["updated_at", "2023-02-17 19:40:50.546852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:50.548444"], ["updated_at", "2023-02-17 19:40:50.548444"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:50.550384"], ["updated_at", "2023-02-17 19:40:50.550384"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:50.552799"], ["updated_at", "2023-02-17 19:40:50.552799"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:50.554931"], ["updated_at", "2023-02-17 19:40:50.554931"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:50.556622"], ["updated_at", "2023-02-17 19:40:50.556622"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:50.558436"], ["updated_at", "2023-02-17 19:40:50.558436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:50.559909"], ["updated_at", "2023-02-17 19:40:50.559909"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:50.561496"], ["updated_at", "2023-02-17 19:40:50.561496"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:50.562918"], ["updated_at", "2023-02-17 19:40:50.562918"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:50.564451"], ["updated_at", "2023-02-17 19:40:50.564451"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:50.565858"], ["updated_at", "2023-02-17 19:40:50.565858"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:50.567313"], ["updated_at", "2023-02-17 19:40:50.567313"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:50.568511"], ["updated_at", "2023-02-17 19:40:50.568511"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:50.570555"], ["updated_at", "2023-02-17 19:40:50.570555"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:50.572257"], ["updated_at", "2023-02-17 19:40:50.572257"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:50.574029"], ["updated_at", "2023-02-17 19:40:50.574029"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:50.575275"], ["updated_at", "2023-02-17 19:40:50.575275"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:50.576696"], ["updated_at", "2023-02-17 19:40:50.576696"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:50.578115"], ["updated_at", "2023-02-17 19:40:50.578115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:50.579486"], ["updated_at", "2023-02-17 19:40:50.579486"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:50.580619"], ["updated_at", "2023-02-17 19:40:50.580619"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:50.582138"], ["updated_at", "2023-02-17 19:40:50.582138"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:50.583336"], ["updated_at", "2023-02-17 19:40:50.583336"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:50.585056"], ["updated_at", "2023-02-17 19:40:50.585056"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:50.586372"], ["updated_at", "2023-02-17 19:40:50.586372"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:50.587732"], ["updated_at", "2023-02-17 19:40:50.587732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:50.589003"], ["updated_at", "2023-02-17 19:40:50.589003"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:50.590454"], ["updated_at", "2023-02-17 19:40:50.590454"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:50.591619"], ["updated_at", "2023-02-17 19:40:50.591619"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:50.593269"], ["updated_at", "2023-02-17 19:40:50.593269"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:50.594563"], ["updated_at", "2023-02-17 19:40:50.594563"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:50.596006"], ["updated_at", "2023-02-17 19:40:50.596006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:50.597280"], ["updated_at", "2023-02-17 19:40:50.597280"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:50.598741"], ["updated_at", "2023-02-17 19:40:50.598741"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:50.600126"], ["updated_at", "2023-02-17 19:40:50.600126"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:50.601672"], ["updated_at", "2023-02-17 19:40:50.601672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:50.602870"], ["updated_at", "2023-02-17 19:40:50.602870"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:50.604324"], ["updated_at", "2023-02-17 19:40:50.604324"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:50.605543"], ["updated_at", "2023-02-17 19:40:50.605543"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:50.606926"], ["updated_at", "2023-02-17 19:40:50.606926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:50.608290"], ["updated_at", "2023-02-17 19:40:50.608290"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:50.609680"], ["updated_at", "2023-02-17 19:40:50.609680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:50.610917"], ["updated_at", "2023-02-17 19:40:50.610917"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:50.612436"], ["updated_at", "2023-02-17 19:40:50.612436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:50.613667"], ["updated_at", "2023-02-17 19:40:50.613667"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:50.615336"], ["updated_at", "2023-02-17 19:40:50.615336"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:50.616687"], ["updated_at", "2023-02-17 19:40:50.616687"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:50.618128"], ["updated_at", "2023-02-17 19:40:50.618128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:50.619429"], ["updated_at", "2023-02-17 19:40:50.619429"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:50.620773"], ["updated_at", "2023-02-17 19:40:50.620773"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:50.621945"], ["updated_at", "2023-02-17 19:40:50.621945"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:50.623491"], ["updated_at", "2023-02-17 19:40:50.623491"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:50.624699"], ["updated_at", "2023-02-17 19:40:50.624699"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:50.626159"], ["updated_at", "2023-02-17 19:40:50.626159"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:50.627404"], ["updated_at", "2023-02-17 19:40:50.627404"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:50.628721"], ["updated_at", "2023-02-17 19:40:50.628721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:50.629959"], ["updated_at", "2023-02-17 19:40:50.629959"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:50.631599"], ["updated_at", "2023-02-17 19:40:50.631599"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:50.632977"], ["updated_at", "2023-02-17 19:40:50.632977"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:50.634683"], ["updated_at", "2023-02-17 19:40:50.634683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:50.637835"], ["updated_at", "2023-02-17 19:40:50.637835"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:50.640478"], ["updated_at", "2023-02-17 19:40:50.640478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:50.642468"], ["updated_at", "2023-02-17 19:40:50.642468"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:50.645097"], ["updated_at", "2023-02-17 19:40:50.645097"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:50.646682"], ["updated_at", "2023-02-17 19:40:50.646682"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:50.648261"], ["updated_at", "2023-02-17 19:40:50.648261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:50.649492"], ["updated_at", "2023-02-17 19:40:50.649492"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:50.650857"], ["updated_at", "2023-02-17 19:40:50.650857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:50.652389"], ["updated_at", "2023-02-17 19:40:50.652389"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:50.654654"], ["updated_at", "2023-02-17 19:40:50.654654"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:50.655917"], ["updated_at", "2023-02-17 19:40:50.655917"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:50.657561"], ["updated_at", "2023-02-17 19:40:50.657561"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:50.658909"], ["updated_at", "2023-02-17 19:40:50.658909"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:50.660253"], ["updated_at", "2023-02-17 19:40:50.660253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:50.661568"], ["updated_at", "2023-02-17 19:40:50.661568"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:50.662810"], ["updated_at", "2023-02-17 19:40:50.662810"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:50.664151"], ["updated_at", "2023-02-17 19:40:50.664151"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:50.665805"], ["updated_at", "2023-02-17 19:40:50.665805"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:50.666972"], ["updated_at", "2023-02-17 19:40:50.666972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:50.667966"], ["updated_at", "2023-02-17 19:40:50.667966"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:50.679570"], ["updated_at", "2023-02-17 19:40:50.679570"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:50.681057"], ["updated_at", "2023-02-17 19:40:50.681057"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:50.682048"], ["updated_at", "2023-02-17 19:40:50.682048"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.682886"], ["updated_at", "2023-02-17 19:40:50.682886"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.683784"], ["updated_at", "2023-02-17 19:40:50.683784"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.684571"], ["updated_at", "2023-02-17 19:40:50.684571"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.685286"], ["updated_at", "2023-02-17 19:40:50.685286"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.686028"], ["updated_at", "2023-02-17 19:40:50.686028"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:50.686816"], ["updated_at", "2023-02-17 19:40:50.686816"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.687839"], ["updated_at", "2023-02-17 19:40:50.687839"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.688736"], ["updated_at", "2023-02-17 19:40:50.688736"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.689510"], ["updated_at", "2023-02-17 19:40:50.689510"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.690243"], ["updated_at", "2023-02-17 19:40:50.690243"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.690999"], ["updated_at", "2023-02-17 19:40:50.690999"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.691840"], ["updated_at", "2023-02-17 19:40:50.691840"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.692564"], ["updated_at", "2023-02-17 19:40:50.692564"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.693298"], ["updated_at", "2023-02-17 19:40:50.693298"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.694039"], ["updated_at", "2023-02-17 19:40:50.694039"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.694964"], ["updated_at", "2023-02-17 19:40:50.694964"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.695837"], ["updated_at", "2023-02-17 19:40:50.695837"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.696641"], ["updated_at", "2023-02-17 19:40:50.696641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:50.708559"], ["updated_at", "2023-02-17 19:40:50.708559"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:50.709880"], ["updated_at", "2023-02-17 19:40:50.709880"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:50.710908"], ["updated_at", "2023-02-17 19:40:50.710908"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:50.711768"], ["updated_at", "2023-02-17 19:40:50.711768"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:50.712528"], ["updated_at", "2023-02-17 19:40:50.712528"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:50.713253"], ["updated_at", "2023-02-17 19:40:50.713253"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:50.714066"], ["updated_at", "2023-02-17 19:40:50.714066"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:50.714751"], ["updated_at", "2023-02-17 19:40:50.714751"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:50.715502"], ["updated_at", "2023-02-17 19:40:50.715502"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.716402"], ["updated_at", "2023-02-17 19:40:50.716402"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.717233"], ["updated_at", "2023-02-17 19:40:50.717233"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.718239"], ["updated_at", "2023-02-17 19:40:50.718239"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.719032"], ["updated_at", "2023-02-17 19:40:50.719032"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.719767"], ["updated_at", "2023-02-17 19:40:50.719767"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.720491"], ["updated_at", "2023-02-17 19:40:50.720491"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.721300"], ["updated_at", "2023-02-17 19:40:50.721300"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.722081"], ["updated_at", "2023-02-17 19:40:50.722081"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.722807"], ["updated_at", "2023-02-17 19:40:50.722807"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.723540"], ["updated_at", "2023-02-17 19:40:50.723540"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.724255"], ["updated_at", "2023-02-17 19:40:50.724255"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:50.725142"], ["updated_at", "2023-02-17 19:40:50.725142"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.741808"], ["updated_at", "2023-02-17 19:40:50.741808"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.742904"], ["updated_at", "2023-02-17 19:40:50.742904"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.743834"], ["updated_at", "2023-02-17 19:40:50.743834"]]
QuestionAnswer Create (0.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.744632"], ["updated_at", "2023-02-17 19:40:50.744632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.745984"], ["updated_at", "2023-02-17 19:40:50.745984"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.746916"], ["updated_at", "2023-02-17 19:40:50.746916"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.747807"], ["updated_at", "2023-02-17 19:40:50.747807"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.748559"], ["updated_at", "2023-02-17 19:40:50.748559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.749296"], ["updated_at", "2023-02-17 19:40:50.749296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.750020"], ["updated_at", "2023-02-17 19:40:50.750020"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.750699"], ["updated_at", "2023-02-17 19:40:50.750699"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.751559"], ["updated_at", "2023-02-17 19:40:50.751559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.752348"], ["updated_at", "2023-02-17 19:40:50.752348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.753055"], ["updated_at", "2023-02-17 19:40:50.753055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.754208"], ["updated_at", "2023-02-17 19:40:50.754208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:50.755452"], ["updated_at", "2023-02-17 19:40:50.755452"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.774427"], ["updated_at", "2023-02-17 19:40:50.774427"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.775427"], ["updated_at", "2023-02-17 19:40:50.775427"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.776215"], ["updated_at", "2023-02-17 19:40:50.776215"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.777434"], ["updated_at", "2023-02-17 19:40:50.777434"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.778334"], ["updated_at", "2023-02-17 19:40:50.778334"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.779095"], ["updated_at", "2023-02-17 19:40:50.779095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.779777"], ["updated_at", "2023-02-17 19:40:50.779777"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.780709"], ["updated_at", "2023-02-17 19:40:50.780709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.781521"], ["updated_at", "2023-02-17 19:40:50.781521"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.782244"], ["updated_at", "2023-02-17 19:40:50.782244"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.782949"], ["updated_at", "2023-02-17 19:40:50.782949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.783650"], ["updated_at", "2023-02-17 19:40:50.783650"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.784692"], ["updated_at", "2023-02-17 19:40:50.784692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.785718"], ["updated_at", "2023-02-17 19:40:50.785718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.786592"], ["updated_at", "2023-02-17 19:40:50.786592"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:50.787433"], ["updated_at", "2023-02-17 19:40:50.787433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.804817"], ["updated_at", "2023-02-17 19:40:50.804817"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.805830"], ["updated_at", "2023-02-17 19:40:50.805830"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.806920"], ["updated_at", "2023-02-17 19:40:50.806920"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.807932"], ["updated_at", "2023-02-17 19:40:50.807932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.808762"], ["updated_at", "2023-02-17 19:40:50.808762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.809507"], ["updated_at", "2023-02-17 19:40:50.809507"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.810260"], ["updated_at", "2023-02-17 19:40:50.810260"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.811162"], ["updated_at", "2023-02-17 19:40:50.811162"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.811883"], ["updated_at", "2023-02-17 19:40:50.811883"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.812662"], ["updated_at", "2023-02-17 19:40:50.812662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.813525"], ["updated_at", "2023-02-17 19:40:50.813525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.814544"], ["updated_at", "2023-02-17 19:40:50.814544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.815484"], ["updated_at", "2023-02-17 19:40:50.815484"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.816393"], ["updated_at", "2023-02-17 19:40:50.816393"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.817363"], ["updated_at", "2023-02-17 19:40:50.817363"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:50.818395"], ["updated_at", "2023-02-17 19:40:50.818395"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.835096"], ["updated_at", "2023-02-17 19:40:50.835096"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.836215"], ["updated_at", "2023-02-17 19:40:50.836215"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.837271"], ["updated_at", "2023-02-17 19:40:50.837271"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.838466"], ["updated_at", "2023-02-17 19:40:50.838466"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.839517"], ["updated_at", "2023-02-17 19:40:50.839517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.840291"], ["updated_at", "2023-02-17 19:40:50.840291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.841144"], ["updated_at", "2023-02-17 19:40:50.841144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.841882"], ["updated_at", "2023-02-17 19:40:50.841882"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.842595"], ["updated_at", "2023-02-17 19:40:50.842595"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.843272"], ["updated_at", "2023-02-17 19:40:50.843272"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.843958"], ["updated_at", "2023-02-17 19:40:50.843958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.844806"], ["updated_at", "2023-02-17 19:40:50.844806"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.845625"], ["updated_at", "2023-02-17 19:40:50.845625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.846907"], ["updated_at", "2023-02-17 19:40:50.846907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.847692"], ["updated_at", "2023-02-17 19:40:50.847692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:50.848499"], ["updated_at", "2023-02-17 19:40:50.848499"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.865656"], ["updated_at", "2023-02-17 19:40:50.865656"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.866755"], ["updated_at", "2023-02-17 19:40:50.866755"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.867591"], ["updated_at", "2023-02-17 19:40:50.867591"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.868315"], ["updated_at", "2023-02-17 19:40:50.868315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.869095"], ["updated_at", "2023-02-17 19:40:50.869095"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.869797"], ["updated_at", "2023-02-17 19:40:50.869797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.870690"], ["updated_at", "2023-02-17 19:40:50.870690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.871441"], ["updated_at", "2023-02-17 19:40:50.871441"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.872174"], ["updated_at", "2023-02-17 19:40:50.872174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.872881"], ["updated_at", "2023-02-17 19:40:50.872881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.873579"], ["updated_at", "2023-02-17 19:40:50.873579"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.874403"], ["updated_at", "2023-02-17 19:40:50.874403"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.875099"], ["updated_at", "2023-02-17 19:40:50.875099"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.875808"], ["updated_at", "2023-02-17 19:40:50.875808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.876539"], ["updated_at", "2023-02-17 19:40:50.876539"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:50.877275"], ["updated_at", "2023-02-17 19:40:50.877275"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:50.893735"], ["updated_at", "2023-02-17 19:40:50.893735"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:50.894768"], ["updated_at", "2023-02-17 19:40:50.894768"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:50.895666"], ["updated_at", "2023-02-17 19:40:50.895666"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:50.896526"], ["updated_at", "2023-02-17 19:40:50.896526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.897667"], ["updated_at", "2023-02-17 19:40:50.897667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.898631"], ["updated_at", "2023-02-17 19:40:50.898631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.899409"], ["updated_at", "2023-02-17 19:40:50.899409"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.900135"], ["updated_at", "2023-02-17 19:40:50.900135"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.901154"], ["updated_at", "2023-02-17 19:40:50.901154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.902175"], ["updated_at", "2023-02-17 19:40:50.902175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.902966"], ["updated_at", "2023-02-17 19:40:50.902966"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.903642"], ["updated_at", "2023-02-17 19:40:50.903642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.904535"], ["updated_at", "2023-02-17 19:40:50.904535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.905316"], ["updated_at", "2023-02-17 19:40:50.905316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.906033"], ["updated_at", "2023-02-17 19:40:50.906033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:50.906764"], ["updated_at", "2023-02-17 19:40:50.906764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:40:50 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:50.915595"], ["updated_at", "2023-02-17 19:40:50.915595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:50.917143"], ["updated_at", "2023-02-17 19:40:50.917143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:50.920479"], ["updated_at", "2023-02-17 19:40:50.920479"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:50.921687"], ["updated_at", "2023-02-17 19:40:50.921687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:50.924503"], ["updated_at", "2023-02-17 19:40:50.924503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:50.925691"], ["updated_at", "2023-02-17 19:40:50.925691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:50.928186"], ["updated_at", "2023-02-17 19:40:50.928186"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:50.929738"], ["updated_at", "2023-02-17 19:40:50.929738"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:50.931380"], ["updated_at", "2023-02-17 19:40:50.931380"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:50.932648"], ["updated_at", "2023-02-17 19:40:50.932648"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:50.934125"], ["updated_at", "2023-02-17 19:40:50.934125"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:50.935792"], ["updated_at", "2023-02-17 19:40:50.935792"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:50.937301"], ["updated_at", "2023-02-17 19:40:50.937301"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:50.938651"], ["updated_at", "2023-02-17 19:40:50.938651"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:50.940021"], ["updated_at", "2023-02-17 19:40:50.940021"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:50.941181"], ["updated_at", "2023-02-17 19:40:50.941181"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:50.942741"], ["updated_at", "2023-02-17 19:40:50.942741"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:50.943981"], ["updated_at", "2023-02-17 19:40:50.943981"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:50.945341"], ["updated_at", "2023-02-17 19:40:50.945341"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:50.946661"], ["updated_at", "2023-02-17 19:40:50.946661"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:50.948089"], ["updated_at", "2023-02-17 19:40:50.948089"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:50.950073"], ["updated_at", "2023-02-17 19:40:50.950073"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:50.951680"], ["updated_at", "2023-02-17 19:40:50.951680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:50.953135"], ["updated_at", "2023-02-17 19:40:50.953135"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:50.954674"], ["updated_at", "2023-02-17 19:40:50.954674"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:50.955971"], ["updated_at", "2023-02-17 19:40:50.955971"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:50.958868"], ["updated_at", "2023-02-17 19:40:50.958868"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:50.960240"], ["updated_at", "2023-02-17 19:40:50.960240"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:50.961723"], ["updated_at", "2023-02-17 19:40:50.961723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:50.962944"], ["updated_at", "2023-02-17 19:40:50.962944"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:50.964280"], ["updated_at", "2023-02-17 19:40:50.964280"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:50.965634"], ["updated_at", "2023-02-17 19:40:50.965634"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:50.967261"], ["updated_at", "2023-02-17 19:40:50.967261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:50.968637"], ["updated_at", "2023-02-17 19:40:50.968637"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:50.970247"], ["updated_at", "2023-02-17 19:40:50.970247"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:50.971460"], ["updated_at", "2023-02-17 19:40:50.971460"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:50.973009"], ["updated_at", "2023-02-17 19:40:50.973009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:50.974546"], ["updated_at", "2023-02-17 19:40:50.974546"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:50.975932"], ["updated_at", "2023-02-17 19:40:50.975932"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:50.977305"], ["updated_at", "2023-02-17 19:40:50.977305"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:50.978754"], ["updated_at", "2023-02-17 19:40:50.978754"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:50.979925"], ["updated_at", "2023-02-17 19:40:50.979925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:50.981679"], ["updated_at", "2023-02-17 19:40:50.981679"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:50.982928"], ["updated_at", "2023-02-17 19:40:50.982928"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:50.984541"], ["updated_at", "2023-02-17 19:40:50.984541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:50.985980"], ["updated_at", "2023-02-17 19:40:50.985980"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:50.987396"], ["updated_at", "2023-02-17 19:40:50.987396"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:50.988808"], ["updated_at", "2023-02-17 19:40:50.988808"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:50.990495"], ["updated_at", "2023-02-17 19:40:50.990495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:50.992050"], ["updated_at", "2023-02-17 19:40:50.992050"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:50.993731"], ["updated_at", "2023-02-17 19:40:50.993731"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:50.995251"], ["updated_at", "2023-02-17 19:40:50.995251"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:50.997116"], ["updated_at", "2023-02-17 19:40:50.997116"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:50.998563"], ["updated_at", "2023-02-17 19:40:50.998563"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:51.000334"], ["updated_at", "2023-02-17 19:40:51.000334"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:51.001831"], ["updated_at", "2023-02-17 19:40:51.001831"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:51.003585"], ["updated_at", "2023-02-17 19:40:51.003585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:51.005041"], ["updated_at", "2023-02-17 19:40:51.005041"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:51.006915"], ["updated_at", "2023-02-17 19:40:51.006915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:51.008322"], ["updated_at", "2023-02-17 19:40:51.008322"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:51.009700"], ["updated_at", "2023-02-17 19:40:51.009700"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:51.011034"], ["updated_at", "2023-02-17 19:40:51.011034"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:51.012466"], ["updated_at", "2023-02-17 19:40:51.012466"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.013654"], ["updated_at", "2023-02-17 19:40:51.013654"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:51.015262"], ["updated_at", "2023-02-17 19:40:51.015262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:51.016518"], ["updated_at", "2023-02-17 19:40:51.016518"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:51.018270"], ["updated_at", "2023-02-17 19:40:51.018270"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:51.019745"], ["updated_at", "2023-02-17 19:40:51.019745"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:51.021111"], ["updated_at", "2023-02-17 19:40:51.021111"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.022432"], ["updated_at", "2023-02-17 19:40:51.022432"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:51.024118"], ["updated_at", "2023-02-17 19:40:51.024118"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:51.025383"], ["updated_at", "2023-02-17 19:40:51.025383"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:51.027022"], ["updated_at", "2023-02-17 19:40:51.027022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:51.028237"], ["updated_at", "2023-02-17 19:40:51.028237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:51.029683"], ["updated_at", "2023-02-17 19:40:51.029683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:51.030933"], ["updated_at", "2023-02-17 19:40:51.030933"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:51.032329"], ["updated_at", "2023-02-17 19:40:51.032329"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:51.033741"], ["updated_at", "2023-02-17 19:40:51.033741"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:51.035511"], ["updated_at", "2023-02-17 19:40:51.035511"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:51.036818"], ["updated_at", "2023-02-17 19:40:51.036818"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:51.038497"], ["updated_at", "2023-02-17 19:40:51.038497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.039843"], ["updated_at", "2023-02-17 19:40:51.039843"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:51.041661"], ["updated_at", "2023-02-17 19:40:51.041661"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:51.042948"], ["updated_at", "2023-02-17 19:40:51.042948"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:51.044279"], ["updated_at", "2023-02-17 19:40:51.044279"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:51.045616"], ["updated_at", "2023-02-17 19:40:51.045616"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:51.047025"], ["updated_at", "2023-02-17 19:40:51.047025"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:51.048351"], ["updated_at", "2023-02-17 19:40:51.048351"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:51.050184"], ["updated_at", "2023-02-17 19:40:51.050184"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:51.051716"], ["updated_at", "2023-02-17 19:40:51.051716"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:51.053360"], ["updated_at", "2023-02-17 19:40:51.053360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:51.054592"], ["updated_at", "2023-02-17 19:40:51.054592"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:51.056132"], ["updated_at", "2023-02-17 19:40:51.056132"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:51.057749"], ["updated_at", "2023-02-17 19:40:51.057749"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:51.059476"], ["updated_at", "2023-02-17 19:40:51.059476"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:51.060939"], ["updated_at", "2023-02-17 19:40:51.060939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:51.062211"], ["updated_at", "2023-02-17 19:40:51.062211"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:51.063796"], ["updated_at", "2023-02-17 19:40:51.063796"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:51.065359"], ["updated_at", "2023-02-17 19:40:51.065359"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:51.066624"], ["updated_at", "2023-02-17 19:40:51.066624"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:51.067749"], ["updated_at", "2023-02-17 19:40:51.067749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:51.080248"], ["updated_at", "2023-02-17 19:40:51.080248"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:51.081618"], ["updated_at", "2023-02-17 19:40:51.081618"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:51.082688"], ["updated_at", "2023-02-17 19:40:51.082688"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.083777"], ["updated_at", "2023-02-17 19:40:51.083777"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.084664"], ["updated_at", "2023-02-17 19:40:51.084664"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.085578"], ["updated_at", "2023-02-17 19:40:51.085578"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.086338"], ["updated_at", "2023-02-17 19:40:51.086338"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.087034"], ["updated_at", "2023-02-17 19:40:51.087034"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:51.087790"], ["updated_at", "2023-02-17 19:40:51.087790"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.088656"], ["updated_at", "2023-02-17 19:40:51.088656"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.089879"], ["updated_at", "2023-02-17 19:40:51.089879"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.090780"], ["updated_at", "2023-02-17 19:40:51.090780"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.091546"], ["updated_at", "2023-02-17 19:40:51.091546"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.092283"], ["updated_at", "2023-02-17 19:40:51.092283"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.093209"], ["updated_at", "2023-02-17 19:40:51.093209"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.094031"], ["updated_at", "2023-02-17 19:40:51.094031"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.094792"], ["updated_at", "2023-02-17 19:40:51.094792"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.095543"], ["updated_at", "2023-02-17 19:40:51.095543"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.096315"], ["updated_at", "2023-02-17 19:40:51.096315"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.097193"], ["updated_at", "2023-02-17 19:40:51.097193"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.097949"], ["updated_at", "2023-02-17 19:40:51.097949"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:51.111810"], ["updated_at", "2023-02-17 19:40:51.111810"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:51.113177"], ["updated_at", "2023-02-17 19:40:51.113177"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:51.114140"], ["updated_at", "2023-02-17 19:40:51.114140"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.115151"], ["updated_at", "2023-02-17 19:40:51.115151"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.115969"], ["updated_at", "2023-02-17 19:40:51.115969"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.116732"], ["updated_at", "2023-02-17 19:40:51.116732"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.117776"], ["updated_at", "2023-02-17 19:40:51.117776"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.118963"], ["updated_at", "2023-02-17 19:40:51.118963"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:51.120107"], ["updated_at", "2023-02-17 19:40:51.120107"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.121339"], ["updated_at", "2023-02-17 19:40:51.121339"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.122527"], ["updated_at", "2023-02-17 19:40:51.122527"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.123451"], ["updated_at", "2023-02-17 19:40:51.123451"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.124225"], ["updated_at", "2023-02-17 19:40:51.124225"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.124984"], ["updated_at", "2023-02-17 19:40:51.124984"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.125732"], ["updated_at", "2023-02-17 19:40:51.125732"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.126581"], ["updated_at", "2023-02-17 19:40:51.126581"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.127350"], ["updated_at", "2023-02-17 19:40:51.127350"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.128108"], ["updated_at", "2023-02-17 19:40:51.128108"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.128893"], ["updated_at", "2023-02-17 19:40:51.128893"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.129652"], ["updated_at", "2023-02-17 19:40:51.129652"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.130582"], ["updated_at", "2023-02-17 19:40:51.130582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.147596"], ["updated_at", "2023-02-17 19:40:51.147596"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.148711"], ["updated_at", "2023-02-17 19:40:51.148711"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.149734"], ["updated_at", "2023-02-17 19:40:51.149734"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.150810"], ["updated_at", "2023-02-17 19:40:51.150810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.151758"], ["updated_at", "2023-02-17 19:40:51.151758"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.152599"], ["updated_at", "2023-02-17 19:40:51.152599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.153347"], ["updated_at", "2023-02-17 19:40:51.153347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.154031"], ["updated_at", "2023-02-17 19:40:51.154031"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.154911"], ["updated_at", "2023-02-17 19:40:51.154911"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.155669"], ["updated_at", "2023-02-17 19:40:51.155669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.156416"], ["updated_at", "2023-02-17 19:40:51.156416"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.157158"], ["updated_at", "2023-02-17 19:40:51.157158"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.157914"], ["updated_at", "2023-02-17 19:40:51.157914"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.158751"], ["updated_at", "2023-02-17 19:40:51.158751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.159742"], ["updated_at", "2023-02-17 19:40:51.159742"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.160874"], ["updated_at", "2023-02-17 19:40:51.160874"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.178408"], ["updated_at", "2023-02-17 19:40:51.178408"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.179647"], ["updated_at", "2023-02-17 19:40:51.179647"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.180596"], ["updated_at", "2023-02-17 19:40:51.180596"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.181490"], ["updated_at", "2023-02-17 19:40:51.181490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.182392"], ["updated_at", "2023-02-17 19:40:51.182392"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.183437"], ["updated_at", "2023-02-17 19:40:51.183437"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.184405"], ["updated_at", "2023-02-17 19:40:51.184405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.185427"], ["updated_at", "2023-02-17 19:40:51.185427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.186280"], ["updated_at", "2023-02-17 19:40:51.186280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.187102"], ["updated_at", "2023-02-17 19:40:51.187102"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.187846"], ["updated_at", "2023-02-17 19:40:51.187846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.188550"], ["updated_at", "2023-02-17 19:40:51.188550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.189268"], ["updated_at", "2023-02-17 19:40:51.189268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.189970"], ["updated_at", "2023-02-17 19:40:51.189970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.190796"], ["updated_at", "2023-02-17 19:40:51.190796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.191577"], ["updated_at", "2023-02-17 19:40:51.191577"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.207882"], ["updated_at", "2023-02-17 19:40:51.207882"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.208951"], ["updated_at", "2023-02-17 19:40:51.208951"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.209932"], ["updated_at", "2023-02-17 19:40:51.209932"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.210694"], ["updated_at", "2023-02-17 19:40:51.210694"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.211444"], ["updated_at", "2023-02-17 19:40:51.211444"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.212163"], ["updated_at", "2023-02-17 19:40:51.212163"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.212863"], ["updated_at", "2023-02-17 19:40:51.212863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.213749"], ["updated_at", "2023-02-17 19:40:51.213749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.214479"], ["updated_at", "2023-02-17 19:40:51.214479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.215211"], ["updated_at", "2023-02-17 19:40:51.215211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.215953"], ["updated_at", "2023-02-17 19:40:51.215953"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.216709"], ["updated_at", "2023-02-17 19:40:51.216709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.217789"], ["updated_at", "2023-02-17 19:40:51.217789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.218693"], ["updated_at", "2023-02-17 19:40:51.218693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.219469"], ["updated_at", "2023-02-17 19:40:51.219469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.220216"], ["updated_at", "2023-02-17 19:40:51.220216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.236604"], ["updated_at", "2023-02-17 19:40:51.236604"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.237679"], ["updated_at", "2023-02-17 19:40:51.237679"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.238474"], ["updated_at", "2023-02-17 19:40:51.238474"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.239179"], ["updated_at", "2023-02-17 19:40:51.239179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.240079"], ["updated_at", "2023-02-17 19:40:51.240079"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.240817"], ["updated_at", "2023-02-17 19:40:51.240817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.241544"], ["updated_at", "2023-02-17 19:40:51.241544"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.242232"], ["updated_at", "2023-02-17 19:40:51.242232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.242934"], ["updated_at", "2023-02-17 19:40:51.242934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.243808"], ["updated_at", "2023-02-17 19:40:51.243808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.244563"], ["updated_at", "2023-02-17 19:40:51.244563"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.245279"], ["updated_at", "2023-02-17 19:40:51.245279"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.246033"], ["updated_at", "2023-02-17 19:40:51.246033"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.246754"], ["updated_at", "2023-02-17 19:40:51.246754"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.247545"], ["updated_at", "2023-02-17 19:40:51.247545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.248277"], ["updated_at", "2023-02-17 19:40:51.248277"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.267483"], ["updated_at", "2023-02-17 19:40:51.267483"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.268767"], ["updated_at", "2023-02-17 19:40:51.268767"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.269991"], ["updated_at", "2023-02-17 19:40:51.269991"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.270951"], ["updated_at", "2023-02-17 19:40:51.270951"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.271753"], ["updated_at", "2023-02-17 19:40:51.271753"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.272486"], ["updated_at", "2023-02-17 19:40:51.272486"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.273246"], ["updated_at", "2023-02-17 19:40:51.273246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.274126"], ["updated_at", "2023-02-17 19:40:51.274126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.274877"], ["updated_at", "2023-02-17 19:40:51.274877"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.275612"], ["updated_at", "2023-02-17 19:40:51.275612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.276322"], ["updated_at", "2023-02-17 19:40:51.276322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.277064"], ["updated_at", "2023-02-17 19:40:51.277064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.277893"], ["updated_at", "2023-02-17 19:40:51.277893"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.278618"], ["updated_at", "2023-02-17 19:40:51.278618"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.279312"], ["updated_at", "2023-02-17 19:40:51.279312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.280007"], ["updated_at", "2023-02-17 19:40:51.280007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.296240"], ["updated_at", "2023-02-17 19:40:51.296240"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.297257"], ["updated_at", "2023-02-17 19:40:51.297257"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.298035"], ["updated_at", "2023-02-17 19:40:51.298035"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.298751"], ["updated_at", "2023-02-17 19:40:51.298751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.299508"], ["updated_at", "2023-02-17 19:40:51.299508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.300354"], ["updated_at", "2023-02-17 19:40:51.300354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.301150"], ["updated_at", "2023-02-17 19:40:51.301150"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.302128"], ["updated_at", "2023-02-17 19:40:51.302128"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.302957"], ["updated_at", "2023-02-17 19:40:51.302957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.303708"], ["updated_at", "2023-02-17 19:40:51.303708"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.304411"], ["updated_at", "2023-02-17 19:40:51.304411"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.305141"], ["updated_at", "2023-02-17 19:40:51.305141"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.305939"], ["updated_at", "2023-02-17 19:40:51.305939"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.306718"], ["updated_at", "2023-02-17 19:40:51.306718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.307428"], ["updated_at", "2023-02-17 19:40:51.307428"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.308163"], ["updated_at", "2023-02-17 19:40:51.308163"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:40:51 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:51.317639"], ["updated_at", "2023-02-17 19:40:51.317639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:51.319208"], ["updated_at", "2023-02-17 19:40:51.319208"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:51.322200"], ["updated_at", "2023-02-17 19:40:51.322200"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:51.323409"], ["updated_at", "2023-02-17 19:40:51.323409"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:51.326273"], ["updated_at", "2023-02-17 19:40:51.326273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:51.327453"], ["updated_at", "2023-02-17 19:40:51.327453"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:51.329635"], ["updated_at", "2023-02-17 19:40:51.329635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:51.331031"], ["updated_at", "2023-02-17 19:40:51.331031"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:51.332693"], ["updated_at", "2023-02-17 19:40:51.332693"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:51.334237"], ["updated_at", "2023-02-17 19:40:51.334237"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:51.335955"], ["updated_at", "2023-02-17 19:40:51.335955"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:51.337272"], ["updated_at", "2023-02-17 19:40:51.337272"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:51.338672"], ["updated_at", "2023-02-17 19:40:51.338672"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:51.340008"], ["updated_at", "2023-02-17 19:40:51.340008"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:51.341435"], ["updated_at", "2023-02-17 19:40:51.341435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:51.342625"], ["updated_at", "2023-02-17 19:40:51.342625"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:51.344099"], ["updated_at", "2023-02-17 19:40:51.344099"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:51.345339"], ["updated_at", "2023-02-17 19:40:51.345339"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:51.346721"], ["updated_at", "2023-02-17 19:40:51.346721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:51.348094"], ["updated_at", "2023-02-17 19:40:51.348094"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:51.349469"], ["updated_at", "2023-02-17 19:40:51.349469"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:51.350684"], ["updated_at", "2023-02-17 19:40:51.350684"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:51.352258"], ["updated_at", "2023-02-17 19:40:51.352258"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:51.353716"], ["updated_at", "2023-02-17 19:40:51.353716"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:51.355379"], ["updated_at", "2023-02-17 19:40:51.355379"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:51.356788"], ["updated_at", "2023-02-17 19:40:51.356788"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:51.358383"], ["updated_at", "2023-02-17 19:40:51.358383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:51.359910"], ["updated_at", "2023-02-17 19:40:51.359910"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:51.361507"], ["updated_at", "2023-02-17 19:40:51.361507"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:51.363101"], ["updated_at", "2023-02-17 19:40:51.363101"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:51.365082"], ["updated_at", "2023-02-17 19:40:51.365082"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:51.366602"], ["updated_at", "2023-02-17 19:40:51.366602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:51.368280"], ["updated_at", "2023-02-17 19:40:51.368280"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:51.369574"], ["updated_at", "2023-02-17 19:40:51.369574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:51.370938"], ["updated_at", "2023-02-17 19:40:51.370938"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:51.372281"], ["updated_at", "2023-02-17 19:40:51.372281"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:51.373690"], ["updated_at", "2023-02-17 19:40:51.373690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:51.374892"], ["updated_at", "2023-02-17 19:40:51.374892"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:51.376396"], ["updated_at", "2023-02-17 19:40:51.376396"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:51.377602"], ["updated_at", "2023-02-17 19:40:51.377602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:51.378942"], ["updated_at", "2023-02-17 19:40:51.378942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:51.380296"], ["updated_at", "2023-02-17 19:40:51.380296"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:51.381689"], ["updated_at", "2023-02-17 19:40:51.381689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.383020"], ["updated_at", "2023-02-17 19:40:51.383020"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:51.384529"], ["updated_at", "2023-02-17 19:40:51.384529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:51.385763"], ["updated_at", "2023-02-17 19:40:51.385763"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:51.387307"], ["updated_at", "2023-02-17 19:40:51.387307"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:51.388540"], ["updated_at", "2023-02-17 19:40:51.388540"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:51.389934"], ["updated_at", "2023-02-17 19:40:51.389934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:51.391229"], ["updated_at", "2023-02-17 19:40:51.391229"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:51.392618"], ["updated_at", "2023-02-17 19:40:51.392618"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:51.393803"], ["updated_at", "2023-02-17 19:40:51.393803"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:51.395355"], ["updated_at", "2023-02-17 19:40:51.395355"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:51.396602"], ["updated_at", "2023-02-17 19:40:51.396602"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:51.398119"], ["updated_at", "2023-02-17 19:40:51.398119"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:51.399381"], ["updated_at", "2023-02-17 19:40:51.399381"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:51.400832"], ["updated_at", "2023-02-17 19:40:51.400832"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:51.402203"], ["updated_at", "2023-02-17 19:40:51.402203"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:51.403634"], ["updated_at", "2023-02-17 19:40:51.403634"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:51.404842"], ["updated_at", "2023-02-17 19:40:51.404842"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:51.406373"], ["updated_at", "2023-02-17 19:40:51.406373"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:51.407624"], ["updated_at", "2023-02-17 19:40:51.407624"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:51.409035"], ["updated_at", "2023-02-17 19:40:51.409035"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.410480"], ["updated_at", "2023-02-17 19:40:51.410480"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:51.412013"], ["updated_at", "2023-02-17 19:40:51.412013"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:51.413358"], ["updated_at", "2023-02-17 19:40:51.413358"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:51.414780"], ["updated_at", "2023-02-17 19:40:51.414780"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:51.416044"], ["updated_at", "2023-02-17 19:40:51.416044"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:51.417634"], ["updated_at", "2023-02-17 19:40:51.417634"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.418919"], ["updated_at", "2023-02-17 19:40:51.418919"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:51.420298"], ["updated_at", "2023-02-17 19:40:51.420298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:51.421633"], ["updated_at", "2023-02-17 19:40:51.421633"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:51.423012"], ["updated_at", "2023-02-17 19:40:51.423012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:51.424198"], ["updated_at", "2023-02-17 19:40:51.424198"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:51.425812"], ["updated_at", "2023-02-17 19:40:51.425812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:51.427036"], ["updated_at", "2023-02-17 19:40:51.427036"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:51.428478"], ["updated_at", "2023-02-17 19:40:51.428478"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:51.429715"], ["updated_at", "2023-02-17 19:40:51.429715"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:51.431089"], ["updated_at", "2023-02-17 19:40:51.431089"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:51.437533"], ["updated_at", "2023-02-17 19:40:51.437533"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:51.439238"], ["updated_at", "2023-02-17 19:40:51.439238"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.440624"], ["updated_at", "2023-02-17 19:40:51.440624"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:51.442063"], ["updated_at", "2023-02-17 19:40:51.442063"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:51.443224"], ["updated_at", "2023-02-17 19:40:51.443224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:51.444677"], ["updated_at", "2023-02-17 19:40:51.444677"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:51.445897"], ["updated_at", "2023-02-17 19:40:51.445897"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:51.447348"], ["updated_at", "2023-02-17 19:40:51.447348"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:51.448561"], ["updated_at", "2023-02-17 19:40:51.448561"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:51.449952"], ["updated_at", "2023-02-17 19:40:51.449952"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:51.451319"], ["updated_at", "2023-02-17 19:40:51.451319"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:51.452711"], ["updated_at", "2023-02-17 19:40:51.452711"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:51.454476"], ["updated_at", "2023-02-17 19:40:51.454476"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:51.456135"], ["updated_at", "2023-02-17 19:40:51.456135"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:51.457492"], ["updated_at", "2023-02-17 19:40:51.457492"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:51.458847"], ["updated_at", "2023-02-17 19:40:51.458847"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:51.459916"], ["updated_at", "2023-02-17 19:40:51.459916"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:51.461278"], ["updated_at", "2023-02-17 19:40:51.461278"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:51.462662"], ["updated_at", "2023-02-17 19:40:51.462662"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:51.464109"], ["updated_at", "2023-02-17 19:40:51.464109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:51.465426"], ["updated_at", "2023-02-17 19:40:51.465426"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:51.467109"], ["updated_at", "2023-02-17 19:40:51.467109"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:51.478939"], ["updated_at", "2023-02-17 19:40:51.478939"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:51.480212"], ["updated_at", "2023-02-17 19:40:51.480212"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:51.481301"], ["updated_at", "2023-02-17 19:40:51.481301"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.482248"], ["updated_at", "2023-02-17 19:40:51.482248"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.483117"], ["updated_at", "2023-02-17 19:40:51.483117"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.484179"], ["updated_at", "2023-02-17 19:40:51.484179"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.485410"], ["updated_at", "2023-02-17 19:40:51.485410"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.486324"], ["updated_at", "2023-02-17 19:40:51.486324"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:51.487122"], ["updated_at", "2023-02-17 19:40:51.487122"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.487970"], ["updated_at", "2023-02-17 19:40:51.487970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.488879"], ["updated_at", "2023-02-17 19:40:51.488879"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.489703"], ["updated_at", "2023-02-17 19:40:51.489703"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.490466"], ["updated_at", "2023-02-17 19:40:51.490466"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.491203"], ["updated_at", "2023-02-17 19:40:51.491203"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.491937"], ["updated_at", "2023-02-17 19:40:51.491937"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.492813"], ["updated_at", "2023-02-17 19:40:51.492813"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.493586"], ["updated_at", "2023-02-17 19:40:51.493586"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.494336"], ["updated_at", "2023-02-17 19:40:51.494336"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.495069"], ["updated_at", "2023-02-17 19:40:51.495069"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.495779"], ["updated_at", "2023-02-17 19:40:51.495779"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.496628"], ["updated_at", "2023-02-17 19:40:51.496628"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:51.508822"], ["updated_at", "2023-02-17 19:40:51.508822"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:51.510102"], ["updated_at", "2023-02-17 19:40:51.510102"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:51.511333"], ["updated_at", "2023-02-17 19:40:51.511333"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.512292"], ["updated_at", "2023-02-17 19:40:51.512292"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.513053"], ["updated_at", "2023-02-17 19:40:51.513053"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.513752"], ["updated_at", "2023-02-17 19:40:51.513752"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.514453"], ["updated_at", "2023-02-17 19:40:51.514453"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.515232"], ["updated_at", "2023-02-17 19:40:51.515232"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:51.516163"], ["updated_at", "2023-02-17 19:40:51.516163"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.517326"], ["updated_at", "2023-02-17 19:40:51.517326"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.518304"], ["updated_at", "2023-02-17 19:40:51.518304"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.519205"], ["updated_at", "2023-02-17 19:40:51.519205"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.519980"], ["updated_at", "2023-02-17 19:40:51.519980"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.520849"], ["updated_at", "2023-02-17 19:40:51.520849"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.521730"], ["updated_at", "2023-02-17 19:40:51.521730"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.522502"], ["updated_at", "2023-02-17 19:40:51.522502"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.523458"], ["updated_at", "2023-02-17 19:40:51.523458"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.524222"], ["updated_at", "2023-02-17 19:40:51.524222"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.524961"], ["updated_at", "2023-02-17 19:40:51.524961"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.525703"], ["updated_at", "2023-02-17 19:40:51.525703"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.526715"], ["updated_at", "2023-02-17 19:40:51.526715"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.543803"], ["updated_at", "2023-02-17 19:40:51.543803"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.544956"], ["updated_at", "2023-02-17 19:40:51.544956"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.545995"], ["updated_at", "2023-02-17 19:40:51.545995"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.546763"], ["updated_at", "2023-02-17 19:40:51.546763"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.547549"], ["updated_at", "2023-02-17 19:40:51.547549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.548348"], ["updated_at", "2023-02-17 19:40:51.548348"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.549228"], ["updated_at", "2023-02-17 19:40:51.549228"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.550013"], ["updated_at", "2023-02-17 19:40:51.550013"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.550910"], ["updated_at", "2023-02-17 19:40:51.550910"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.551886"], ["updated_at", "2023-02-17 19:40:51.551886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.552668"], ["updated_at", "2023-02-17 19:40:51.552668"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.553538"], ["updated_at", "2023-02-17 19:40:51.553538"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.554278"], ["updated_at", "2023-02-17 19:40:51.554278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.555339"], ["updated_at", "2023-02-17 19:40:51.555339"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.556163"], ["updated_at", "2023-02-17 19:40:51.556163"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.556885"], ["updated_at", "2023-02-17 19:40:51.556885"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.575333"], ["updated_at", "2023-02-17 19:40:51.575333"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.576575"], ["updated_at", "2023-02-17 19:40:51.576575"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.577488"], ["updated_at", "2023-02-17 19:40:51.577488"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.578242"], ["updated_at", "2023-02-17 19:40:51.578242"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.579025"], ["updated_at", "2023-02-17 19:40:51.579025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.580030"], ["updated_at", "2023-02-17 19:40:51.580030"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.580930"], ["updated_at", "2023-02-17 19:40:51.580930"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.581672"], ["updated_at", "2023-02-17 19:40:51.581672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.582371"], ["updated_at", "2023-02-17 19:40:51.582371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.583200"], ["updated_at", "2023-02-17 19:40:51.583200"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.584169"], ["updated_at", "2023-02-17 19:40:51.584169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.585207"], ["updated_at", "2023-02-17 19:40:51.585207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.586004"], ["updated_at", "2023-02-17 19:40:51.586004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.586748"], ["updated_at", "2023-02-17 19:40:51.586748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.587652"], ["updated_at", "2023-02-17 19:40:51.587652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.588401"], ["updated_at", "2023-02-17 19:40:51.588401"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.605475"], ["updated_at", "2023-02-17 19:40:51.605475"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.606600"], ["updated_at", "2023-02-17 19:40:51.606600"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.607365"], ["updated_at", "2023-02-17 19:40:51.607365"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.608094"], ["updated_at", "2023-02-17 19:40:51.608094"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.608845"], ["updated_at", "2023-02-17 19:40:51.608845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.609693"], ["updated_at", "2023-02-17 19:40:51.609693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.610545"], ["updated_at", "2023-02-17 19:40:51.610545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.611280"], ["updated_at", "2023-02-17 19:40:51.611280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.611970"], ["updated_at", "2023-02-17 19:40:51.611970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.612667"], ["updated_at", "2023-02-17 19:40:51.612667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.613527"], ["updated_at", "2023-02-17 19:40:51.613527"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.614280"], ["updated_at", "2023-02-17 19:40:51.614280"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.614966"], ["updated_at", "2023-02-17 19:40:51.614966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.615662"], ["updated_at", "2023-02-17 19:40:51.615662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.616369"], ["updated_at", "2023-02-17 19:40:51.616369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:51.617361"], ["updated_at", "2023-02-17 19:40:51.617361"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.634211"], ["updated_at", "2023-02-17 19:40:51.634211"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.635334"], ["updated_at", "2023-02-17 19:40:51.635334"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.636252"], ["updated_at", "2023-02-17 19:40:51.636252"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.636996"], ["updated_at", "2023-02-17 19:40:51.636996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.637732"], ["updated_at", "2023-02-17 19:40:51.637732"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.638470"], ["updated_at", "2023-02-17 19:40:51.638470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.639152"], ["updated_at", "2023-02-17 19:40:51.639152"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.640077"], ["updated_at", "2023-02-17 19:40:51.640077"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.640839"], ["updated_at", "2023-02-17 19:40:51.640839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.641545"], ["updated_at", "2023-02-17 19:40:51.641545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.642262"], ["updated_at", "2023-02-17 19:40:51.642262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.642964"], ["updated_at", "2023-02-17 19:40:51.642964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.643764"], ["updated_at", "2023-02-17 19:40:51.643764"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.644470"], ["updated_at", "2023-02-17 19:40:51.644470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.645177"], ["updated_at", "2023-02-17 19:40:51.645177"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:51.645865"], ["updated_at", "2023-02-17 19:40:51.645865"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.662652"], ["updated_at", "2023-02-17 19:40:51.662652"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.663704"], ["updated_at", "2023-02-17 19:40:51.663704"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.664487"], ["updated_at", "2023-02-17 19:40:51.664487"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.665221"], ["updated_at", "2023-02-17 19:40:51.665221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.666104"], ["updated_at", "2023-02-17 19:40:51.666104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.667102"], ["updated_at", "2023-02-17 19:40:51.667102"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.668068"], ["updated_at", "2023-02-17 19:40:51.668068"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.668844"], ["updated_at", "2023-02-17 19:40:51.668844"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.669835"], ["updated_at", "2023-02-17 19:40:51.669835"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.670966"], ["updated_at", "2023-02-17 19:40:51.670966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.671766"], ["updated_at", "2023-02-17 19:40:51.671766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.672488"], ["updated_at", "2023-02-17 19:40:51.672488"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.673305"], ["updated_at", "2023-02-17 19:40:51.673305"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.674091"], ["updated_at", "2023-02-17 19:40:51.674091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.674825"], ["updated_at", "2023-02-17 19:40:51.674825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:51.675511"], ["updated_at", "2023-02-17 19:40:51.675511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.2ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.692266"], ["updated_at", "2023-02-17 19:40:51.692266"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.693328"], ["updated_at", "2023-02-17 19:40:51.693328"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.694097"], ["updated_at", "2023-02-17 19:40:51.694097"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.694785"], ["updated_at", "2023-02-17 19:40:51.694785"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.695546"], ["updated_at", "2023-02-17 19:40:51.695546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.696404"], ["updated_at", "2023-02-17 19:40:51.696404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.697132"], ["updated_at", "2023-02-17 19:40:51.697132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.697857"], ["updated_at", "2023-02-17 19:40:51.697857"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.698547"], ["updated_at", "2023-02-17 19:40:51.698547"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.699255"], ["updated_at", "2023-02-17 19:40:51.699255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.700235"], ["updated_at", "2023-02-17 19:40:51.700235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.701126"], ["updated_at", "2023-02-17 19:40:51.701126"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.701872"], ["updated_at", "2023-02-17 19:40:51.701872"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.702569"], ["updated_at", "2023-02-17 19:40:51.702569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.703313"], ["updated_at", "2023-02-17 19:40:51.703313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:51.704082"], ["updated_at", "2023-02-17 19:40:51.704082"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:40:51 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:40:51.713962"], ["updated_at", "2023-02-17 19:40:51.713962"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:40:51.715416"], ["updated_at", "2023-02-17 19:40:51.715416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:40:51.718595"], ["updated_at", "2023-02-17 19:40:51.718595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:40:51.719802"], ["updated_at", "2023-02-17 19:40:51.719802"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:40:51.722585"], ["updated_at", "2023-02-17 19:40:51.722585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:40:51.723750"], ["updated_at", "2023-02-17 19:40:51.723750"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:40:51.726020"], ["updated_at", "2023-02-17 19:40:51.726020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:40:51.727479"], ["updated_at", "2023-02-17 19:40:51.727479"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:40:51.729165"], ["updated_at", "2023-02-17 19:40:51.729165"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:40:51.730499"], ["updated_at", "2023-02-17 19:40:51.730499"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:40:51.731852"], ["updated_at", "2023-02-17 19:40:51.731852"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:40:51.733278"], ["updated_at", "2023-02-17 19:40:51.733278"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:40:51.734855"], ["updated_at", "2023-02-17 19:40:51.734855"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:40:51.736027"], ["updated_at", "2023-02-17 19:40:51.736027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:40:51.737546"], ["updated_at", "2023-02-17 19:40:51.737546"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:40:51.738796"], ["updated_at", "2023-02-17 19:40:51.738796"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:40:51.740345"], ["updated_at", "2023-02-17 19:40:51.740345"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:40:51.741645"], ["updated_at", "2023-02-17 19:40:51.741645"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:40:51.743031"], ["updated_at", "2023-02-17 19:40:51.743031"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:40:51.744313"], ["updated_at", "2023-02-17 19:40:51.744313"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:40:51.745704"], ["updated_at", "2023-02-17 19:40:51.745704"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:40:51.746884"], ["updated_at", "2023-02-17 19:40:51.746884"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:40:51.748406"], ["updated_at", "2023-02-17 19:40:51.748406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:40:51.749648"], ["updated_at", "2023-02-17 19:40:51.749648"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:40:51.751121"], ["updated_at", "2023-02-17 19:40:51.751121"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:40:51.752513"], ["updated_at", "2023-02-17 19:40:51.752513"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:40:51.753870"], ["updated_at", "2023-02-17 19:40:51.753870"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:40:51.755050"], ["updated_at", "2023-02-17 19:40:51.755050"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:40:51.756642"], ["updated_at", "2023-02-17 19:40:51.756642"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:40:51.758269"], ["updated_at", "2023-02-17 19:40:51.758269"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:40:51.759846"], ["updated_at", "2023-02-17 19:40:51.759846"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:40:51.761247"], ["updated_at", "2023-02-17 19:40:51.761247"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:40:51.762817"], ["updated_at", "2023-02-17 19:40:51.762817"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:40:51.764101"], ["updated_at", "2023-02-17 19:40:51.764101"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:40:51.765619"], ["updated_at", "2023-02-17 19:40:51.765619"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:40:51.766889"], ["updated_at", "2023-02-17 19:40:51.766889"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:40:51.768469"], ["updated_at", "2023-02-17 19:40:51.768469"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:40:51.770014"], ["updated_at", "2023-02-17 19:40:51.770014"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:40:51.771794"], ["updated_at", "2023-02-17 19:40:51.771794"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:40:51.773297"], ["updated_at", "2023-02-17 19:40:51.773297"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:40:51.774812"], ["updated_at", "2023-02-17 19:40:51.774812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:40:51.776121"], ["updated_at", "2023-02-17 19:40:51.776121"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:40:51.777986"], ["updated_at", "2023-02-17 19:40:51.777986"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.779803"], ["updated_at", "2023-02-17 19:40:51.779803"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:40:51.781622"], ["updated_at", "2023-02-17 19:40:51.781622"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:40:51.783408"], ["updated_at", "2023-02-17 19:40:51.783408"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:40:51.785368"], ["updated_at", "2023-02-17 19:40:51.785368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:40:51.787239"], ["updated_at", "2023-02-17 19:40:51.787239"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:40:51.789035"], ["updated_at", "2023-02-17 19:40:51.789035"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:40:51.790844"], ["updated_at", "2023-02-17 19:40:51.790844"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:40:51.792663"], ["updated_at", "2023-02-17 19:40:51.792663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:40:51.794322"], ["updated_at", "2023-02-17 19:40:51.794322"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:40:51.796066"], ["updated_at", "2023-02-17 19:40:51.796066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:40:51.797818"], ["updated_at", "2023-02-17 19:40:51.797818"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:40:51.800309"], ["updated_at", "2023-02-17 19:40:51.800309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:40:51.802080"], ["updated_at", "2023-02-17 19:40:51.802080"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:40:51.803878"], ["updated_at", "2023-02-17 19:40:51.803878"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:40:51.805638"], ["updated_at", "2023-02-17 19:40:51.805638"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:40:51.807635"], ["updated_at", "2023-02-17 19:40:51.807635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:40:51.809333"], ["updated_at", "2023-02-17 19:40:51.809333"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:40:51.811402"], ["updated_at", "2023-02-17 19:40:51.811402"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:40:51.813500"], ["updated_at", "2023-02-17 19:40:51.813500"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:40:51.815497"], ["updated_at", "2023-02-17 19:40:51.815497"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.817545"], ["updated_at", "2023-02-17 19:40:51.817545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:40:51.819531"], ["updated_at", "2023-02-17 19:40:51.819531"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:40:51.821291"], ["updated_at", "2023-02-17 19:40:51.821291"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:40:51.823080"], ["updated_at", "2023-02-17 19:40:51.823080"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:40:51.824923"], ["updated_at", "2023-02-17 19:40:51.824923"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:40:51.826939"], ["updated_at", "2023-02-17 19:40:51.826939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.828774"], ["updated_at", "2023-02-17 19:40:51.828774"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:40:51.830228"], ["updated_at", "2023-02-17 19:40:51.830228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:40:51.831500"], ["updated_at", "2023-02-17 19:40:51.831500"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:40:51.832884"], ["updated_at", "2023-02-17 19:40:51.832884"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:40:51.834243"], ["updated_at", "2023-02-17 19:40:51.834243"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:40:51.835853"], ["updated_at", "2023-02-17 19:40:51.835853"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:40:51.837215"], ["updated_at", "2023-02-17 19:40:51.837215"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:40:51.838771"], ["updated_at", "2023-02-17 19:40:51.838771"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:40:51.840044"], ["updated_at", "2023-02-17 19:40:51.840044"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:40:51.841432"], ["updated_at", "2023-02-17 19:40:51.841432"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:40:51.842782"], ["updated_at", "2023-02-17 19:40:51.842782"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:40:51.844245"], ["updated_at", "2023-02-17 19:40:51.844245"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:40:51.845430"], ["updated_at", "2023-02-17 19:40:51.845430"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:40:51.846929"], ["updated_at", "2023-02-17 19:40:51.846929"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:40:51.848172"], ["updated_at", "2023-02-17 19:40:51.848172"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:40:51.849580"], ["updated_at", "2023-02-17 19:40:51.849580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:40:51.851197"], ["updated_at", "2023-02-17 19:40:51.851197"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:40:51.852594"], ["updated_at", "2023-02-17 19:40:51.852594"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:40:51.853879"], ["updated_at", "2023-02-17 19:40:51.853879"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:40:51.855320"], ["updated_at", "2023-02-17 19:40:51.855320"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:40:51.856475"], ["updated_at", "2023-02-17 19:40:51.856475"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:40:51.858024"], ["updated_at", "2023-02-17 19:40:51.858024"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:40:51.859672"], ["updated_at", "2023-02-17 19:40:51.859672"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:40:51.861183"], ["updated_at", "2023-02-17 19:40:51.861183"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:40:51.862431"], ["updated_at", "2023-02-17 19:40:51.862431"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:40:51.863769"], ["updated_at", "2023-02-17 19:40:51.863769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:40:51.864927"], ["updated_at", "2023-02-17 19:40:51.864927"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:40:51.866288"], ["updated_at", "2023-02-17 19:40:51.866288"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:40:51.867866"], ["updated_at", "2023-02-17 19:40:51.867866"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:40:51.869451"], ["updated_at", "2023-02-17 19:40:51.869451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:40:51.870634"], ["updated_at", "2023-02-17 19:40:51.870634"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:40:51.871615"], ["updated_at", "2023-02-17 19:40:51.871615"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:51.883544"], ["updated_at", "2023-02-17 19:40:51.883544"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:51.885169"], ["updated_at", "2023-02-17 19:40:51.885169"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:51.886241"], ["updated_at", "2023-02-17 19:40:51.886241"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.887134"], ["updated_at", "2023-02-17 19:40:51.887134"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.888141"], ["updated_at", "2023-02-17 19:40:51.888141"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.888882"], ["updated_at", "2023-02-17 19:40:51.888882"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.889610"], ["updated_at", "2023-02-17 19:40:51.889610"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.890291"], ["updated_at", "2023-02-17 19:40:51.890291"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:51.891041"], ["updated_at", "2023-02-17 19:40:51.891041"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.892056"], ["updated_at", "2023-02-17 19:40:51.892056"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.892913"], ["updated_at", "2023-02-17 19:40:51.892913"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.893674"], ["updated_at", "2023-02-17 19:40:51.893674"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.894442"], ["updated_at", "2023-02-17 19:40:51.894442"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.895342"], ["updated_at", "2023-02-17 19:40:51.895342"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.896168"], ["updated_at", "2023-02-17 19:40:51.896168"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.896974"], ["updated_at", "2023-02-17 19:40:51.896974"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.897796"], ["updated_at", "2023-02-17 19:40:51.897796"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.898570"], ["updated_at", "2023-02-17 19:40:51.898570"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.899477"], ["updated_at", "2023-02-17 19:40:51.899477"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.900316"], ["updated_at", "2023-02-17 19:40:51.900316"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.901322"], ["updated_at", "2023-02-17 19:40:51.901322"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:40:51.913317"], ["updated_at", "2023-02-17 19:40:51.913317"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:40:51.914608"], ["updated_at", "2023-02-17 19:40:51.914608"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:40:51.915512"], ["updated_at", "2023-02-17 19:40:51.915512"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.916391"], ["updated_at", "2023-02-17 19:40:51.916391"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.917666"], ["updated_at", "2023-02-17 19:40:51.917666"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.918571"], ["updated_at", "2023-02-17 19:40:51.918571"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.919301"], ["updated_at", "2023-02-17 19:40:51.919301"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:40:51.920048"], ["updated_at", "2023-02-17 19:40:51.920048"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:40:51.920969"], ["updated_at", "2023-02-17 19:40:51.920969"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.921832"], ["updated_at", "2023-02-17 19:40:51.921832"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.922659"], ["updated_at", "2023-02-17 19:40:51.922659"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.923407"], ["updated_at", "2023-02-17 19:40:51.923407"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.924253"], ["updated_at", "2023-02-17 19:40:51.924253"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.925101"], ["updated_at", "2023-02-17 19:40:51.925101"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.925901"], ["updated_at", "2023-02-17 19:40:51.925901"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.926661"], ["updated_at", "2023-02-17 19:40:51.926661"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.927394"], ["updated_at", "2023-02-17 19:40:51.927394"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.928386"], ["updated_at", "2023-02-17 19:40:51.928386"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.929409"], ["updated_at", "2023-02-17 19:40:51.929409"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.930247"], ["updated_at", "2023-02-17 19:40:51.930247"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:40:51.931016"], ["updated_at", "2023-02-17 19:40:51.931016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.948027"], ["updated_at", "2023-02-17 19:40:51.948027"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.949192"], ["updated_at", "2023-02-17 19:40:51.949192"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.950186"], ["updated_at", "2023-02-17 19:40:51.950186"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.951281"], ["updated_at", "2023-02-17 19:40:51.951281"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.952136"], ["updated_at", "2023-02-17 19:40:51.952136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.952965"], ["updated_at", "2023-02-17 19:40:51.952965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.953695"], ["updated_at", "2023-02-17 19:40:51.953695"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.954542"], ["updated_at", "2023-02-17 19:40:51.954542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.955385"], ["updated_at", "2023-02-17 19:40:51.955385"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.956278"], ["updated_at", "2023-02-17 19:40:51.956278"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.957036"], ["updated_at", "2023-02-17 19:40:51.957036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.957795"], ["updated_at", "2023-02-17 19:40:51.957795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.958608"], ["updated_at", "2023-02-17 19:40:51.958608"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.959312"], ["updated_at", "2023-02-17 19:40:51.959312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.960308"], ["updated_at", "2023-02-17 19:40:51.960308"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:40:51.961134"], ["updated_at", "2023-02-17 19:40:51.961134"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:51.978653"], ["updated_at", "2023-02-17 19:40:51.978653"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:51.979726"], ["updated_at", "2023-02-17 19:40:51.979726"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:51.980553"], ["updated_at", "2023-02-17 19:40:51.980553"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:51.981437"], ["updated_at", "2023-02-17 19:40:51.981437"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.982267"], ["updated_at", "2023-02-17 19:40:51.982267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.983103"], ["updated_at", "2023-02-17 19:40:51.983103"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.984085"], ["updated_at", "2023-02-17 19:40:51.984085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.985073"], ["updated_at", "2023-02-17 19:40:51.985073"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.985832"], ["updated_at", "2023-02-17 19:40:51.985832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.986540"], ["updated_at", "2023-02-17 19:40:51.986540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.987230"], ["updated_at", "2023-02-17 19:40:51.987230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.987969"], ["updated_at", "2023-02-17 19:40:51.987969"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.988819"], ["updated_at", "2023-02-17 19:40:51.988819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.989572"], ["updated_at", "2023-02-17 19:40:51.989572"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.990258"], ["updated_at", "2023-02-17 19:40:51.990258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:40:51.990994"], ["updated_at", "2023-02-17 19:40:51.990994"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:52.008166"], ["updated_at", "2023-02-17 19:40:52.008166"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:52.009245"], ["updated_at", "2023-02-17 19:40:52.009245"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:52.010037"], ["updated_at", "2023-02-17 19:40:52.010037"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:52.010789"], ["updated_at", "2023-02-17 19:40:52.010789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.011716"], ["updated_at", "2023-02-17 19:40:52.011716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.012468"], ["updated_at", "2023-02-17 19:40:52.012468"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.013231"], ["updated_at", "2023-02-17 19:40:52.013231"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.013962"], ["updated_at", "2023-02-17 19:40:52.013962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.014759"], ["updated_at", "2023-02-17 19:40:52.014759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.015585"], ["updated_at", "2023-02-17 19:40:52.015585"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.016362"], ["updated_at", "2023-02-17 19:40:52.016362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.017413"], ["updated_at", "2023-02-17 19:40:52.017413"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.018284"], ["updated_at", "2023-02-17 19:40:52.018284"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.019161"], ["updated_at", "2023-02-17 19:40:52.019161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.019907"], ["updated_at", "2023-02-17 19:40:52.019907"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:40:52.020603"], ["updated_at", "2023-02-17 19:40:52.020603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:52.037076"], ["updated_at", "2023-02-17 19:40:52.037076"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:52.038296"], ["updated_at", "2023-02-17 19:40:52.038296"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:52.039095"], ["updated_at", "2023-02-17 19:40:52.039095"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:52.039806"], ["updated_at", "2023-02-17 19:40:52.039806"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.040622"], ["updated_at", "2023-02-17 19:40:52.040622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.041514"], ["updated_at", "2023-02-17 19:40:52.041514"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.042288"], ["updated_at", "2023-02-17 19:40:52.042288"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.042995"], ["updated_at", "2023-02-17 19:40:52.042995"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.043671"], ["updated_at", "2023-02-17 19:40:52.043671"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.044366"], ["updated_at", "2023-02-17 19:40:52.044366"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.045203"], ["updated_at", "2023-02-17 19:40:52.045203"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.045961"], ["updated_at", "2023-02-17 19:40:52.045961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.046681"], ["updated_at", "2023-02-17 19:40:52.046681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.047386"], ["updated_at", "2023-02-17 19:40:52.047386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.048089"], ["updated_at", "2023-02-17 19:40:52.048089"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:40:52.048923"], ["updated_at", "2023-02-17 19:40:52.048923"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:52.065658"], ["updated_at", "2023-02-17 19:40:52.065658"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:52.066735"], ["updated_at", "2023-02-17 19:40:52.066735"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:52.067975"], ["updated_at", "2023-02-17 19:40:52.067975"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:52.068864"], ["updated_at", "2023-02-17 19:40:52.068864"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.069685"], ["updated_at", "2023-02-17 19:40:52.069685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.070436"], ["updated_at", "2023-02-17 19:40:52.070436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.071139"], ["updated_at", "2023-02-17 19:40:52.071139"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.071972"], ["updated_at", "2023-02-17 19:40:52.071972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.072684"], ["updated_at", "2023-02-17 19:40:52.072684"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.073405"], ["updated_at", "2023-02-17 19:40:52.073405"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.074114"], ["updated_at", "2023-02-17 19:40:52.074114"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.074797"], ["updated_at", "2023-02-17 19:40:52.074797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.075929"], ["updated_at", "2023-02-17 19:40:52.075929"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.076842"], ["updated_at", "2023-02-17 19:40:52.076842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.077596"], ["updated_at", "2023-02-17 19:40:52.077596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:40:52.078304"], ["updated_at", "2023-02-17 19:40:52.078304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:40:52.094790"], ["updated_at", "2023-02-17 19:40:52.094790"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:40:52.095761"], ["updated_at", "2023-02-17 19:40:52.095761"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:40:52.096513"], ["updated_at", "2023-02-17 19:40:52.096513"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:40:52.097237"], ["updated_at", "2023-02-17 19:40:52.097237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.098189"], ["updated_at", "2023-02-17 19:40:52.098189"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.098981"], ["updated_at", "2023-02-17 19:40:52.098981"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.099789"], ["updated_at", "2023-02-17 19:40:52.099789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.100669"], ["updated_at", "2023-02-17 19:40:52.100669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.101526"], ["updated_at", "2023-02-17 19:40:52.101526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.102285"], ["updated_at", "2023-02-17 19:40:52.102285"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.102995"], ["updated_at", "2023-02-17 19:40:52.102995"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.103694"], ["updated_at", "2023-02-17 19:40:52.103694"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.104390"], ["updated_at", "2023-02-17 19:40:52.104390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.105175"], ["updated_at", "2023-02-17 19:40:52.105175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.105991"], ["updated_at", "2023-02-17 19:40:52.105991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:40:52.106699"], ["updated_at", "2023-02-17 19:40:52.106699"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:40:52 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:40:52 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:40:52 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.2ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
 (3.0ms)  SELECT sqlite_version(*)
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:42:01.824589"], ["updated_at", "2023-02-17 19:42:01.824589"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:42:01.838440"], ["updated_at", "2023-02-17 19:42:01.838440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:42:01.844127"], ["updated_at", "2023-02-17 19:42:01.844127"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:42:01.854093"], ["updated_at", "2023-02-17 19:42:01.854093"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:42:01.861044"], ["updated_at", "2023-02-17 19:42:01.861044"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:42:01.864820"], ["updated_at", "2023-02-17 19:42:01.864820"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:42:01.867575"], ["updated_at", "2023-02-17 19:42:01.867575"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 53ms (Views: 0.2ms | ActiveRecord: 4.9ms | Allocations: 28603)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:42:01.884648"], ["updated_at", "2023-02-17 19:42:01.884648"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 10ms (Views: 5.8ms | ActiveRecord: 0.9ms | Allocations: 4603)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x000055e96b94ff20>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.3ms | Allocations: 658)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 511)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#index as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms | Allocations: 1528)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#index as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms | Allocations: 1528)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:01.953869"], ["updated_at", "2023-02-17 19:42:01.953869"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:42:01.955368"], ["updated_at", "2023-02-17 19:42:01.955368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:42:01.958365"], ["updated_at", "2023-02-17 19:42:01.958365"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:42:01.959582"], ["updated_at", "2023-02-17 19:42:01.959582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:42:01.962369"], ["updated_at", "2023-02-17 19:42:01.962369"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:42:01.963544"], ["updated_at", "2023-02-17 19:42:01.963544"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:42:01.966237"], ["updated_at", "2023-02-17 19:42:01.966237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:42:01.967858"], ["updated_at", "2023-02-17 19:42:01.967858"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:42:01.969451"], ["updated_at", "2023-02-17 19:42:01.969451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:42:01.970811"], ["updated_at", "2023-02-17 19:42:01.970811"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:42:01.972229"], ["updated_at", "2023-02-17 19:42:01.972229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:42:01.973524"], ["updated_at", "2023-02-17 19:42:01.973524"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:42:01.974998"], ["updated_at", "2023-02-17 19:42:01.974998"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:42:01.976207"], ["updated_at", "2023-02-17 19:42:01.976207"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:42:01.977607"], ["updated_at", "2023-02-17 19:42:01.977607"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:42:01.978785"], ["updated_at", "2023-02-17 19:42:01.978785"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:42:01.980128"], ["updated_at", "2023-02-17 19:42:01.980128"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:42:01.981588"], ["updated_at", "2023-02-17 19:42:01.981588"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:42:01.983436"], ["updated_at", "2023-02-17 19:42:01.983436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:42:01.984919"], ["updated_at", "2023-02-17 19:42:01.984919"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:42:01.986530"], ["updated_at", "2023-02-17 19:42:01.986530"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:42:01.987760"], ["updated_at", "2023-02-17 19:42:01.987760"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:42:01.989260"], ["updated_at", "2023-02-17 19:42:01.989260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:42:01.990469"], ["updated_at", "2023-02-17 19:42:01.990469"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:42:01.991838"], ["updated_at", "2023-02-17 19:42:01.991838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:42:01.993027"], ["updated_at", "2023-02-17 19:42:01.993027"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:42:01.994633"], ["updated_at", "2023-02-17 19:42:01.994633"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:42:01.996177"], ["updated_at", "2023-02-17 19:42:01.996177"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:42:01.997736"], ["updated_at", "2023-02-17 19:42:01.997736"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:42:01.999314"], ["updated_at", "2023-02-17 19:42:01.999314"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:42:02.001012"], ["updated_at", "2023-02-17 19:42:02.001012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:42:02.002327"], ["updated_at", "2023-02-17 19:42:02.002327"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:42:02.003817"], ["updated_at", "2023-02-17 19:42:02.003817"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:42:02.005127"], ["updated_at", "2023-02-17 19:42:02.005127"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:42:02.006537"], ["updated_at", "2023-02-17 19:42:02.006537"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:42:02.008054"], ["updated_at", "2023-02-17 19:42:02.008054"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:42:02.009920"], ["updated_at", "2023-02-17 19:42:02.009920"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:42:02.011609"], ["updated_at", "2023-02-17 19:42:02.011609"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:42:02.013378"], ["updated_at", "2023-02-17 19:42:02.013378"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:42:02.014998"], ["updated_at", "2023-02-17 19:42:02.014998"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:42:02.016733"], ["updated_at", "2023-02-17 19:42:02.016733"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:42:02.018366"], ["updated_at", "2023-02-17 19:42:02.018366"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:42:02.020382"], ["updated_at", "2023-02-17 19:42:02.020382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.022167"], ["updated_at", "2023-02-17 19:42:02.022167"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:42:02.024046"], ["updated_at", "2023-02-17 19:42:02.024046"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:42:02.025881"], ["updated_at", "2023-02-17 19:42:02.025881"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:42:02.027857"], ["updated_at", "2023-02-17 19:42:02.027857"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:42:02.029234"], ["updated_at", "2023-02-17 19:42:02.029234"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:42:02.030859"], ["updated_at", "2023-02-17 19:42:02.030859"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:42:02.032472"], ["updated_at", "2023-02-17 19:42:02.032472"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:42:02.034280"], ["updated_at", "2023-02-17 19:42:02.034280"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:42:02.036040"], ["updated_at", "2023-02-17 19:42:02.036040"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:42:02.037653"], ["updated_at", "2023-02-17 19:42:02.037653"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:42:02.038980"], ["updated_at", "2023-02-17 19:42:02.038980"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:42:02.040409"], ["updated_at", "2023-02-17 19:42:02.040409"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:42:02.041761"], ["updated_at", "2023-02-17 19:42:02.041761"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:42:02.043205"], ["updated_at", "2023-02-17 19:42:02.043205"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:42:02.044446"], ["updated_at", "2023-02-17 19:42:02.044446"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:42:02.046275"], ["updated_at", "2023-02-17 19:42:02.046275"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:42:02.047777"], ["updated_at", "2023-02-17 19:42:02.047777"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:42:02.049628"], ["updated_at", "2023-02-17 19:42:02.049628"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:42:02.051179"], ["updated_at", "2023-02-17 19:42:02.051179"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:42:02.053000"], ["updated_at", "2023-02-17 19:42:02.053000"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.054542"], ["updated_at", "2023-02-17 19:42:02.054542"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:42:02.056405"], ["updated_at", "2023-02-17 19:42:02.056405"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:42:02.057751"], ["updated_at", "2023-02-17 19:42:02.057751"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:42:02.059165"], ["updated_at", "2023-02-17 19:42:02.059165"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:42:02.060370"], ["updated_at", "2023-02-17 19:42:02.060370"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:42:02.061772"], ["updated_at", "2023-02-17 19:42:02.061772"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.062981"], ["updated_at", "2023-02-17 19:42:02.062981"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:42:02.064965"], ["updated_at", "2023-02-17 19:42:02.064965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:42:02.066512"], ["updated_at", "2023-02-17 19:42:02.066512"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:42:02.068006"], ["updated_at", "2023-02-17 19:42:02.068006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:42:02.069187"], ["updated_at", "2023-02-17 19:42:02.069187"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:42:02.070577"], ["updated_at", "2023-02-17 19:42:02.070577"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:42:02.072215"], ["updated_at", "2023-02-17 19:42:02.072215"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:42:02.073877"], ["updated_at", "2023-02-17 19:42:02.073877"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:42:02.075155"], ["updated_at", "2023-02-17 19:42:02.075155"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:42:02.076588"], ["updated_at", "2023-02-17 19:42:02.076588"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:42:02.077869"], ["updated_at", "2023-02-17 19:42:02.077869"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:42:02.079329"], ["updated_at", "2023-02-17 19:42:02.079329"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.080743"], ["updated_at", "2023-02-17 19:42:02.080743"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:42:02.082791"], ["updated_at", "2023-02-17 19:42:02.082791"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:42:02.084173"], ["updated_at", "2023-02-17 19:42:02.084173"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:42:02.085576"], ["updated_at", "2023-02-17 19:42:02.085576"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:42:02.087049"], ["updated_at", "2023-02-17 19:42:02.087049"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:42:02.088748"], ["updated_at", "2023-02-17 19:42:02.088748"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:42:02.090130"], ["updated_at", "2023-02-17 19:42:02.090130"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:42:02.091696"], ["updated_at", "2023-02-17 19:42:02.091696"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:42:02.093117"], ["updated_at", "2023-02-17 19:42:02.093117"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:42:02.094547"], ["updated_at", "2023-02-17 19:42:02.094547"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:42:02.095784"], ["updated_at", "2023-02-17 19:42:02.095784"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:42:02.097383"], ["updated_at", "2023-02-17 19:42:02.097383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:42:02.098708"], ["updated_at", "2023-02-17 19:42:02.098708"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:42:02.100310"], ["updated_at", "2023-02-17 19:42:02.100310"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:42:02.101740"], ["updated_at", "2023-02-17 19:42:02.101740"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:42:02.103304"], ["updated_at", "2023-02-17 19:42:02.103304"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:42:02.104762"], ["updated_at", "2023-02-17 19:42:02.104762"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:42:02.108734"], ["updated_at", "2023-02-17 19:42:02.108734"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:42:02.110111"], ["updated_at", "2023-02-17 19:42:02.110111"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:42:02.111260"], ["updated_at", "2023-02-17 19:42:02.111260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.4ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:42:02.120873"], ["updated_at", "2023-02-17 19:42:02.120873"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 1.3ms | Allocations: 6170)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:02.139478"], ["updated_at", "2023-02-17 19:42:02.139478"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:02.141205"], ["updated_at", "2023-02-17 19:42:02.141205"]]
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:02.142614"], ["updated_at", "2023-02-17 19:42:02.142614"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.143584"], ["updated_at", "2023-02-17 19:42:02.143584"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.144439"], ["updated_at", "2023-02-17 19:42:02.144439"]]
Survey Create (0.3ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:42:02.144452"], ["updated_at", "2023-02-17 19:42:02.144452"], ["role_id", 1]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.145214"], ["updated_at", "2023-02-17 19:42:02.145214"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1

Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.9ms | Allocations: 5710)

QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.145953"], ["updated_at", "2023-02-17 19:42:02.145953"]]
TRANSACTION (0.0ms)  rollback transaction
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.146629"], ["updated_at", "2023-02-17 19:42:02.146629"]]
TRANSACTION (0.1ms)  begin transaction
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:02.147403"], ["updated_at", "2023-02-17 19:42:02.147403"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.148295"], ["updated_at", "2023-02-17 19:42:02.148295"]]

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x0000559794a6b568>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.149230"], ["updated_at", "2023-02-17 19:42:02.149230"]]

Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 333)

LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.149998"], ["updated_at", "2023-02-17 19:42:02.149998"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.150738"], ["updated_at", "2023-02-17 19:42:02.150738"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.151592"], ["updated_at", "2023-02-17 19:42:02.151592"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.152550"], ["updated_at", "2023-02-17 19:42:02.152550"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.153426"], ["updated_at", "2023-02-17 19:42:02.153426"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.154238"], ["updated_at", "2023-02-17 19:42:02.154238"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.155003"], ["updated_at", "2023-02-17 19:42:02.155003"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.155741"], ["updated_at", "2023-02-17 19:42:02.155741"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.156481"], ["updated_at", "2023-02-17 19:42:02.156481"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.157239"], ["updated_at", "2023-02-17 19:42:02.157239"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.4ms | Allocations: 3025)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:02.169053"], ["updated_at", "2023-02-17 19:42:02.169053"], ["role_id", 2]]

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 511)

SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:02.170308"], ["updated_at", "2023-02-17 19:42:02.170308"]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:02.171218"], ["updated_at", "2023-02-17 19:42:02.171218"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:02.172465"], ["updated_at", "2023-02-17 19:42:02.172465"]]

Processing by SurveysController#index as HTML

Parameters: {"id"=>"1"}
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:02.173405"], ["updated_at", "2023-02-17 19:42:02.173405"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:02.174182"], ["updated_at", "2023-02-17 19:42:02.174182"]]
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:02.174898"], ["updated_at", "2023-02-17 19:42:02.174898"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:02.175615"], ["updated_at", "2023-02-17 19:42:02.175615"]]

Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms | Allocations: 1528)

SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:02.176394"], ["updated_at", "2023-02-17 19:42:02.176394"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.177242"], ["updated_at", "2023-02-17 19:42:02.177242"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.178042"], ["updated_at", "2023-02-17 19:42:02.178042"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.178816"], ["updated_at", "2023-02-17 19:42:02.178816"]]

Processing by SurveysController#index as HTML

Parameters: {"id"=>"1"}
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.179565"], ["updated_at", "2023-02-17 19:42:02.179565"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.180317"], ["updated_at", "2023-02-17 19:42:02.180317"]]
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.181076"], ["updated_at", "2023-02-17 19:42:02.181076"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.182026"], ["updated_at", "2023-02-17 19:42:02.182026"]]

Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms | Allocations: 1528)

TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.182947"], ["updated_at", "2023-02-17 19:42:02.182947"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.183762"], ["updated_at", "2023-02-17 19:42:02.183762"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.184534"], ["updated_at", "2023-02-17 19:42:02.184534"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.185307"], ["updated_at", "2023-02-17 19:42:02.185307"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.186052"], ["updated_at", "2023-02-17 19:42:02.186052"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms | Allocations: 6053)

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.219166"], ["updated_at", "2023-02-17 19:42:02.219166"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:02.219783"], ["updated_at", "2023-02-17 19:42:02.219783"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.220278"], ["updated_at", "2023-02-17 19:42:02.220278"]]
TRANSACTION (0.0ms)  rollback transaction
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.221181"], ["updated_at", "2023-02-17 19:42:02.221181"]]
TRANSACTION (0.1ms)  begin transaction
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.222305"], ["updated_at", "2023-02-17 19:42:02.222305"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.223338"], ["updated_at", "2023-02-17 19:42:02.223338"]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.224210"], ["updated_at", "2023-02-17 19:42:02.224210"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.224950"], ["updated_at", "2023-02-17 19:42:02.224950"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:02.224830"], ["updated_at", "2023-02-17 19:42:02.224830"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.225667"], ["updated_at", "2023-02-17 19:42:02.225667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.226424"], ["updated_at", "2023-02-17 19:42:02.226424"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.227211"], ["updated_at", "2023-02-17 19:42:02.227211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.227937"], ["updated_at", "2023-02-17 19:42:02.227937"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.228644"], ["updated_at", "2023-02-17 19:42:02.228644"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.229365"], ["updated_at", "2023-02-17 19:42:02.229365"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:02.229755"], ["updated_at", "2023-02-17 19:42:02.229755"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.230148"], ["updated_at", "2023-02-17 19:42:02.230148"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.230871"], ["updated_at", "2023-02-17 19:42:02.230871"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.231707"], ["updated_at", "2023-02-17 19:42:02.231707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:02.235697"], ["updated_at", "2023-02-17 19:42:02.235697"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:02.240851"], ["updated_at", "2023-02-17 19:42:02.240851"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:02.245883"], ["updated_at", "2023-02-17 19:42:02.245883"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
TRANSACTION (0.0ms)  rollback transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.248643"], ["updated_at", "2023-02-17 19:42:02.248643"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.249640"], ["updated_at", "2023-02-17 19:42:02.249640"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.250441"], ["updated_at", "2023-02-17 19:42:02.250441"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.251249"], ["updated_at", "2023-02-17 19:42:02.251249"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:02.251353"], ["updated_at", "2023-02-17 19:42:02.251353"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.252424"], ["updated_at", "2023-02-17 19:42:02.252424"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.253406"], ["updated_at", "2023-02-17 19:42:02.253406"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.254144"], ["updated_at", "2023-02-17 19:42:02.254144"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.254937"], ["updated_at", "2023-02-17 19:42:02.254937"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.255761"], ["updated_at", "2023-02-17 19:42:02.255761"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.256512"], ["updated_at", "2023-02-17 19:42:02.256512"]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:02.256438"], ["updated_at", "2023-02-17 19:42:02.256438"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.257223"], ["updated_at", "2023-02-17 19:42:02.257223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.257922"], ["updated_at", "2023-02-17 19:42:02.257922"]]
TRANSACTION (0.1ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.258713"], ["updated_at", "2023-02-17 19:42:02.258713"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.259438"], ["updated_at", "2023-02-17 19:42:02.259438"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.260208"], ["updated_at", "2023-02-17 19:42:02.260208"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.260921"], ["updated_at", "2023-02-17 19:42:02.260921"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:42:02 -0300

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 232)

LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.278407"], ["updated_at", "2023-02-17 19:42:02.278407"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.279486"], ["updated_at", "2023-02-17 19:42:02.279486"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.280287"], ["updated_at", "2023-02-17 19:42:02.280287"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.281064"], ["updated_at", "2023-02-17 19:42:02.281064"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.281914"], ["updated_at", "2023-02-17 19:42:02.281914"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.282959"], ["updated_at", "2023-02-17 19:42:02.282959"]]

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:42:02 -0300

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.284043"], ["updated_at", "2023-02-17 19:42:02.284043"]]

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.285004"], ["updated_at", "2023-02-17 19:42:02.285004"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 180)

LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.285870"], ["updated_at", "2023-02-17 19:42:02.285870"]]
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.286796"], ["updated_at", "2023-02-17 19:42:02.286796"]]
TRANSACTION (0.0ms)  begin transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.287926"], ["updated_at", "2023-02-17 19:42:02.287926"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.288845"], ["updated_at", "2023-02-17 19:42:02.288845"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.289864"], ["updated_at", "2023-02-17 19:42:02.289864"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.290773"], ["updated_at", "2023-02-17 19:42:02.290773"]]
TRANSACTION (0.1ms)  rollback transaction
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.291652"], ["updated_at", "2023-02-17 19:42:02.291652"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.292487"], ["updated_at", "2023-02-17 19:42:02.292487"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.309865"], ["updated_at", "2023-02-17 19:42:02.309865"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.311149"], ["updated_at", "2023-02-17 19:42:02.311149"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.312063"], ["updated_at", "2023-02-17 19:42:02.312063"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.312826"], ["updated_at", "2023-02-17 19:42:02.312826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.313610"], ["updated_at", "2023-02-17 19:42:02.313610"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.314374"], ["updated_at", "2023-02-17 19:42:02.314374"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.315150"], ["updated_at", "2023-02-17 19:42:02.315150"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.315929"], ["updated_at", "2023-02-17 19:42:02.315929"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.316984"], ["updated_at", "2023-02-17 19:42:02.316984"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.318161"], ["updated_at", "2023-02-17 19:42:02.318161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.319292"], ["updated_at", "2023-02-17 19:42:02.319292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.320364"], ["updated_at", "2023-02-17 19:42:02.320364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.321192"], ["updated_at", "2023-02-17 19:42:02.321192"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.322011"], ["updated_at", "2023-02-17 19:42:02.322011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.322802"], ["updated_at", "2023-02-17 19:42:02.322802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.323556"], ["updated_at", "2023-02-17 19:42:02.323556"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.342142"], ["updated_at", "2023-02-17 19:42:02.342142"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.343240"], ["updated_at", "2023-02-17 19:42:02.343240"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.344038"], ["updated_at", "2023-02-17 19:42:02.344038"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.344756"], ["updated_at", "2023-02-17 19:42:02.344756"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.345551"], ["updated_at", "2023-02-17 19:42:02.345551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.346398"], ["updated_at", "2023-02-17 19:42:02.346398"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.347224"], ["updated_at", "2023-02-17 19:42:02.347224"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.348180"], ["updated_at", "2023-02-17 19:42:02.348180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.349280"], ["updated_at", "2023-02-17 19:42:02.349280"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.350359"], ["updated_at", "2023-02-17 19:42:02.350359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.351568"], ["updated_at", "2023-02-17 19:42:02.351568"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.352753"], ["updated_at", "2023-02-17 19:42:02.352753"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.353796"], ["updated_at", "2023-02-17 19:42:02.353796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.354624"], ["updated_at", "2023-02-17 19:42:02.354624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.355385"], ["updated_at", "2023-02-17 19:42:02.355385"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.356128"], ["updated_at", "2023-02-17 19:42:02.356128"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.377481"], ["updated_at", "2023-02-17 19:42:02.377481"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.378559"], ["updated_at", "2023-02-17 19:42:02.378559"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.379589"], ["updated_at", "2023-02-17 19:42:02.379589"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.380427"], ["updated_at", "2023-02-17 19:42:02.380427"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.381404"], ["updated_at", "2023-02-17 19:42:02.381404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.382471"], ["updated_at", "2023-02-17 19:42:02.382471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.383569"], ["updated_at", "2023-02-17 19:42:02.383569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.384704"], ["updated_at", "2023-02-17 19:42:02.384704"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.385823"], ["updated_at", "2023-02-17 19:42:02.385823"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.386970"], ["updated_at", "2023-02-17 19:42:02.386970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.388026"], ["updated_at", "2023-02-17 19:42:02.388026"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.388796"], ["updated_at", "2023-02-17 19:42:02.388796"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.389566"], ["updated_at", "2023-02-17 19:42:02.389566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.390401"], ["updated_at", "2023-02-17 19:42:02.390401"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.391184"], ["updated_at", "2023-02-17 19:42:02.391184"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.392207"], ["updated_at", "2023-02-17 19:42:02.392207"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses” for 127.0.0.1 at 2023-02-17 16:42:02 -0300 Processing by CclassesController#index as HTML

Enrollment Load (0.2ms)  SELECT "enrollments".* FROM "enrollments" WHERE (cclass_id = 4)
Cclass Load (0.2ms)  SELECT subjects.name, subjects.code as subjectCode, cclasses.* FROM "cclasses" INNER JOIN "subjects" ON "subjects"."id" = "cclasses"."subject_id"

Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.4ms | Allocations: 3127)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:02.419537"], ["updated_at", "2023-02-17 19:42:02.419537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:42:02.421273"], ["updated_at", "2023-02-17 19:42:02.421273"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:42:02.425070"], ["updated_at", "2023-02-17 19:42:02.425070"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:42:02.426602"], ["updated_at", "2023-02-17 19:42:02.426602"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:42:02.430227"], ["updated_at", "2023-02-17 19:42:02.430227"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:42:02.431568"], ["updated_at", "2023-02-17 19:42:02.431568"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:42:02.434204"], ["updated_at", "2023-02-17 19:42:02.434204"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:42:02.435748"], ["updated_at", "2023-02-17 19:42:02.435748"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:42:02.437772"], ["updated_at", "2023-02-17 19:42:02.437772"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:42:02.439371"], ["updated_at", "2023-02-17 19:42:02.439371"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:42:02.440940"], ["updated_at", "2023-02-17 19:42:02.440940"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:42:02.442174"], ["updated_at", "2023-02-17 19:42:02.442174"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:42:02.443647"], ["updated_at", "2023-02-17 19:42:02.443647"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:42:02.444862"], ["updated_at", "2023-02-17 19:42:02.444862"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:42:02.446294"], ["updated_at", "2023-02-17 19:42:02.446294"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:42:02.448033"], ["updated_at", "2023-02-17 19:42:02.448033"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:42:02.449792"], ["updated_at", "2023-02-17 19:42:02.449792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:42:02.451110"], ["updated_at", "2023-02-17 19:42:02.451110"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:42:02.452540"], ["updated_at", "2023-02-17 19:42:02.452540"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:42:02.453771"], ["updated_at", "2023-02-17 19:42:02.453771"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:42:02.455234"], ["updated_at", "2023-02-17 19:42:02.455234"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:42:02.456603"], ["updated_at", "2023-02-17 19:42:02.456603"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:42:02.458335"], ["updated_at", "2023-02-17 19:42:02.458335"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:42:02.459637"], ["updated_at", "2023-02-17 19:42:02.459637"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:42:02.461055"], ["updated_at", "2023-02-17 19:42:02.461055"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:42:02.462332"], ["updated_at", "2023-02-17 19:42:02.462332"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:42:02.463793"], ["updated_at", "2023-02-17 19:42:02.463793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:42:02.465078"], ["updated_at", "2023-02-17 19:42:02.465078"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:42:02.466844"], ["updated_at", "2023-02-17 19:42:02.466844"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:42:02.468554"], ["updated_at", "2023-02-17 19:42:02.468554"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:42:02.470216"], ["updated_at", "2023-02-17 19:42:02.470216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:42:02.471530"], ["updated_at", "2023-02-17 19:42:02.471530"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:42:02.473060"], ["updated_at", "2023-02-17 19:42:02.473060"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:42:02.474328"], ["updated_at", "2023-02-17 19:42:02.474328"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:42:02.475769"], ["updated_at", "2023-02-17 19:42:02.475769"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:42:02.477104"], ["updated_at", "2023-02-17 19:42:02.477104"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:42:02.478981"], ["updated_at", "2023-02-17 19:42:02.478981"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:42:02.480254"], ["updated_at", "2023-02-17 19:42:02.480254"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:42:02.481743"], ["updated_at", "2023-02-17 19:42:02.481743"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:42:02.483103"], ["updated_at", "2023-02-17 19:42:02.483103"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:42:02.484694"], ["updated_at", "2023-02-17 19:42:02.484694"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:42:02.485998"], ["updated_at", "2023-02-17 19:42:02.485998"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:42:02.487689"], ["updated_at", "2023-02-17 19:42:02.487689"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.488994"], ["updated_at", "2023-02-17 19:42:02.488994"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:42:02.490494"], ["updated_at", "2023-02-17 19:42:02.490494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:42:02.491837"], ["updated_at", "2023-02-17 19:42:02.491837"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:42:02.493380"], ["updated_at", "2023-02-17 19:42:02.493380"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:42:02.494978"], ["updated_at", "2023-02-17 19:42:02.494978"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:42:02.496800"], ["updated_at", "2023-02-17 19:42:02.496800"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:42:02.498400"], ["updated_at", "2023-02-17 19:42:02.498400"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:42:02.500351"], ["updated_at", "2023-02-17 19:42:02.500351"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:42:02.502026"], ["updated_at", "2023-02-17 19:42:02.502026"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:42:02.503561"], ["updated_at", "2023-02-17 19:42:02.503561"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:42:02.504842"], ["updated_at", "2023-02-17 19:42:02.504842"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:42:02.506330"], ["updated_at", "2023-02-17 19:42:02.506330"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:42:02.507930"], ["updated_at", "2023-02-17 19:42:02.507930"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:42:02.509957"], ["updated_at", "2023-02-17 19:42:02.509957"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:42:02.511451"], ["updated_at", "2023-02-17 19:42:02.511451"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:42:02.513021"], ["updated_at", "2023-02-17 19:42:02.513021"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:42:02.514291"], ["updated_at", "2023-02-17 19:42:02.514291"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:42:02.515882"], ["updated_at", "2023-02-17 19:42:02.515882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:42:02.517473"], ["updated_at", "2023-02-17 19:42:02.517473"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:42:02.519096"], ["updated_at", "2023-02-17 19:42:02.519096"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.520489"], ["updated_at", "2023-02-17 19:42:02.520489"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:42:02.522327"], ["updated_at", "2023-02-17 19:42:02.522327"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:42:02.523814"], ["updated_at", "2023-02-17 19:42:02.523814"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:42:02.525595"], ["updated_at", "2023-02-17 19:42:02.525595"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:42:02.527270"], ["updated_at", "2023-02-17 19:42:02.527270"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:42:02.529374"], ["updated_at", "2023-02-17 19:42:02.529374"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.531013"], ["updated_at", "2023-02-17 19:42:02.531013"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:42:02.532803"], ["updated_at", "2023-02-17 19:42:02.532803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:42:02.534139"], ["updated_at", "2023-02-17 19:42:02.534139"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:42:02.535561"], ["updated_at", "2023-02-17 19:42:02.535561"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:42:02.536882"], ["updated_at", "2023-02-17 19:42:02.536882"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:42:02.538697"], ["updated_at", "2023-02-17 19:42:02.538697"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:42:02.540039"], ["updated_at", "2023-02-17 19:42:02.540039"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:42:02.541512"], ["updated_at", "2023-02-17 19:42:02.541512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:42:02.542912"], ["updated_at", "2023-02-17 19:42:02.542912"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:42:02.544475"], ["updated_at", "2023-02-17 19:42:02.544475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:42:02.546026"], ["updated_at", "2023-02-17 19:42:02.546026"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:42:02.548013"], ["updated_at", "2023-02-17 19:42:02.548013"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.549694"], ["updated_at", "2023-02-17 19:42:02.549694"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:42:02.551443"], ["updated_at", "2023-02-17 19:42:02.551443"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:42:02.553321"], ["updated_at", "2023-02-17 19:42:02.553321"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:42:02.555108"], ["updated_at", "2023-02-17 19:42:02.555108"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:42:02.556408"], ["updated_at", "2023-02-17 19:42:02.556408"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:42:02.558217"], ["updated_at", "2023-02-17 19:42:02.558217"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:42:02.560950"], ["updated_at", "2023-02-17 19:42:02.560950"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:42:02.563562"], ["updated_at", "2023-02-17 19:42:02.563562"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:42:02.565632"], ["updated_at", "2023-02-17 19:42:02.565632"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:42:02.567390"], ["updated_at", "2023-02-17 19:42:02.567390"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:42:02.569039"], ["updated_at", "2023-02-17 19:42:02.569039"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:42:02.571508"], ["updated_at", "2023-02-17 19:42:02.571508"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:42:02.573171"], ["updated_at", "2023-02-17 19:42:02.573171"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:42:02.574849"], ["updated_at", "2023-02-17 19:42:02.574849"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:42:02.576267"], ["updated_at", "2023-02-17 19:42:02.576267"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:42:02.577884"], ["updated_at", "2023-02-17 19:42:02.577884"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:42:02.579959"], ["updated_at", "2023-02-17 19:42:02.579959"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:42:02.592193"], ["updated_at", "2023-02-17 19:42:02.592193"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:42:02.593385"], ["updated_at", "2023-02-17 19:42:02.593385"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:42:02.594449"], ["updated_at", "2023-02-17 19:42:02.594449"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:02.605945"], ["updated_at", "2023-02-17 19:42:02.605945"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:02.607242"], ["updated_at", "2023-02-17 19:42:02.607242"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:02.608594"], ["updated_at", "2023-02-17 19:42:02.608594"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.609597"], ["updated_at", "2023-02-17 19:42:02.609597"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.610406"], ["updated_at", "2023-02-17 19:42:02.610406"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.611118"], ["updated_at", "2023-02-17 19:42:02.611118"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.611818"], ["updated_at", "2023-02-17 19:42:02.611818"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.612484"], ["updated_at", "2023-02-17 19:42:02.612484"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:02.613243"], ["updated_at", "2023-02-17 19:42:02.613243"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.614118"], ["updated_at", "2023-02-17 19:42:02.614118"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.614955"], ["updated_at", "2023-02-17 19:42:02.614955"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.615754"], ["updated_at", "2023-02-17 19:42:02.615754"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.616505"], ["updated_at", "2023-02-17 19:42:02.616505"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.617252"], ["updated_at", "2023-02-17 19:42:02.617252"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.618404"], ["updated_at", "2023-02-17 19:42:02.618404"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.619281"], ["updated_at", "2023-02-17 19:42:02.619281"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.620074"], ["updated_at", "2023-02-17 19:42:02.620074"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.620826"], ["updated_at", "2023-02-17 19:42:02.620826"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.621571"], ["updated_at", "2023-02-17 19:42:02.621571"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.622311"], ["updated_at", "2023-02-17 19:42:02.622311"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.623059"], ["updated_at", "2023-02-17 19:42:02.623059"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:02.634324"], ["updated_at", "2023-02-17 19:42:02.634324"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:02.635565"], ["updated_at", "2023-02-17 19:42:02.635565"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:02.636461"], ["updated_at", "2023-02-17 19:42:02.636461"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:02.637342"], ["updated_at", "2023-02-17 19:42:02.637342"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:02.638487"], ["updated_at", "2023-02-17 19:42:02.638487"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:02.639285"], ["updated_at", "2023-02-17 19:42:02.639285"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:02.640028"], ["updated_at", "2023-02-17 19:42:02.640028"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:02.640728"], ["updated_at", "2023-02-17 19:42:02.640728"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:02.641511"], ["updated_at", "2023-02-17 19:42:02.641511"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.642381"], ["updated_at", "2023-02-17 19:42:02.642381"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.643197"], ["updated_at", "2023-02-17 19:42:02.643197"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.643932"], ["updated_at", "2023-02-17 19:42:02.643932"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.644671"], ["updated_at", "2023-02-17 19:42:02.644671"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.645438"], ["updated_at", "2023-02-17 19:42:02.645438"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.646188"], ["updated_at", "2023-02-17 19:42:02.646188"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.646945"], ["updated_at", "2023-02-17 19:42:02.646945"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.647962"], ["updated_at", "2023-02-17 19:42:02.647962"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.649151"], ["updated_at", "2023-02-17 19:42:02.649151"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.650177"], ["updated_at", "2023-02-17 19:42:02.650177"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.650983"], ["updated_at", "2023-02-17 19:42:02.650983"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:02.651730"], ["updated_at", "2023-02-17 19:42:02.651730"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.667386"], ["updated_at", "2023-02-17 19:42:02.667386"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.668740"], ["updated_at", "2023-02-17 19:42:02.668740"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.669701"], ["updated_at", "2023-02-17 19:42:02.669701"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.670440"], ["updated_at", "2023-02-17 19:42:02.670440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.671249"], ["updated_at", "2023-02-17 19:42:02.671249"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.672102"], ["updated_at", "2023-02-17 19:42:02.672102"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.672825"], ["updated_at", "2023-02-17 19:42:02.672825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.673530"], ["updated_at", "2023-02-17 19:42:02.673530"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.674211"], ["updated_at", "2023-02-17 19:42:02.674211"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.674896"], ["updated_at", "2023-02-17 19:42:02.674896"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.675577"], ["updated_at", "2023-02-17 19:42:02.675577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.676267"], ["updated_at", "2023-02-17 19:42:02.676267"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.677075"], ["updated_at", "2023-02-17 19:42:02.677075"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.678207"], ["updated_at", "2023-02-17 19:42:02.678207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.679359"], ["updated_at", "2023-02-17 19:42:02.679359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:02.680279"], ["updated_at", "2023-02-17 19:42:02.680279"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.695653"], ["updated_at", "2023-02-17 19:42:02.695653"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.696673"], ["updated_at", "2023-02-17 19:42:02.696673"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.697555"], ["updated_at", "2023-02-17 19:42:02.697555"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.698685"], ["updated_at", "2023-02-17 19:42:02.698685"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.699566"], ["updated_at", "2023-02-17 19:42:02.699566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.700335"], ["updated_at", "2023-02-17 19:42:02.700335"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.701073"], ["updated_at", "2023-02-17 19:42:02.701073"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.701799"], ["updated_at", "2023-02-17 19:42:02.701799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.702480"], ["updated_at", "2023-02-17 19:42:02.702480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.703179"], ["updated_at", "2023-02-17 19:42:02.703179"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.703894"], ["updated_at", "2023-02-17 19:42:02.703894"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.704580"], ["updated_at", "2023-02-17 19:42:02.704580"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.705274"], ["updated_at", "2023-02-17 19:42:02.705274"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.705996"], ["updated_at", "2023-02-17 19:42:02.705996"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.706725"], ["updated_at", "2023-02-17 19:42:02.706725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:02.707447"], ["updated_at", "2023-02-17 19:42:02.707447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.723498"], ["updated_at", "2023-02-17 19:42:02.723498"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.724506"], ["updated_at", "2023-02-17 19:42:02.724506"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.725278"], ["updated_at", "2023-02-17 19:42:02.725278"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.725970"], ["updated_at", "2023-02-17 19:42:02.725970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.726742"], ["updated_at", "2023-02-17 19:42:02.726742"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.727456"], ["updated_at", "2023-02-17 19:42:02.727456"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.728461"], ["updated_at", "2023-02-17 19:42:02.728461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.729413"], ["updated_at", "2023-02-17 19:42:02.729413"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.730173"], ["updated_at", "2023-02-17 19:42:02.730173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.730921"], ["updated_at", "2023-02-17 19:42:02.730921"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.731643"], ["updated_at", "2023-02-17 19:42:02.731643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.732375"], ["updated_at", "2023-02-17 19:42:02.732375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.733084"], ["updated_at", "2023-02-17 19:42:02.733084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.733791"], ["updated_at", "2023-02-17 19:42:02.733791"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.734492"], ["updated_at", "2023-02-17 19:42:02.734492"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:02.735180"], ["updated_at", "2023-02-17 19:42:02.735180"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.751289"], ["updated_at", "2023-02-17 19:42:02.751289"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.752291"], ["updated_at", "2023-02-17 19:42:02.752291"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.753072"], ["updated_at", "2023-02-17 19:42:02.753072"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.753786"], ["updated_at", "2023-02-17 19:42:02.753786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.754536"], ["updated_at", "2023-02-17 19:42:02.754536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.755262"], ["updated_at", "2023-02-17 19:42:02.755262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.755972"], ["updated_at", "2023-02-17 19:42:02.755972"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.756883"], ["updated_at", "2023-02-17 19:42:02.756883"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.757614"], ["updated_at", "2023-02-17 19:42:02.757614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.758709"], ["updated_at", "2023-02-17 19:42:02.758709"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.759606"], ["updated_at", "2023-02-17 19:42:02.759606"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.760326"], ["updated_at", "2023-02-17 19:42:02.760326"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.761016"], ["updated_at", "2023-02-17 19:42:02.761016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.761724"], ["updated_at", "2023-02-17 19:42:02.761724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.762417"], ["updated_at", "2023-02-17 19:42:02.762417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:02.763092"], ["updated_at", "2023-02-17 19:42:02.763092"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.778954"], ["updated_at", "2023-02-17 19:42:02.778954"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.779943"], ["updated_at", "2023-02-17 19:42:02.779943"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.780750"], ["updated_at", "2023-02-17 19:42:02.780750"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.781593"], ["updated_at", "2023-02-17 19:42:02.781593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.782375"], ["updated_at", "2023-02-17 19:42:02.782375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.783146"], ["updated_at", "2023-02-17 19:42:02.783146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.783838"], ["updated_at", "2023-02-17 19:42:02.783838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.784559"], ["updated_at", "2023-02-17 19:42:02.784559"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.785267"], ["updated_at", "2023-02-17 19:42:02.785267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.785953"], ["updated_at", "2023-02-17 19:42:02.785953"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.786640"], ["updated_at", "2023-02-17 19:42:02.786640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.787342"], ["updated_at", "2023-02-17 19:42:02.787342"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.788151"], ["updated_at", "2023-02-17 19:42:02.788151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.789267"], ["updated_at", "2023-02-17 19:42:02.789267"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.790111"], ["updated_at", "2023-02-17 19:42:02.790111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:02.790826"], ["updated_at", "2023-02-17 19:42:02.790826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:02.807233"], ["updated_at", "2023-02-17 19:42:02.807233"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:02.808287"], ["updated_at", "2023-02-17 19:42:02.808287"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.809223"], ["updated_at", "2023-02-17 19:42:02.809223"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.809991"], ["updated_at", "2023-02-17 19:42:02.809991"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.810762"], ["updated_at", "2023-02-17 19:42:02.810762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.811480"], ["updated_at", "2023-02-17 19:42:02.811480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.812181"], ["updated_at", "2023-02-17 19:42:02.812181"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.812960"], ["updated_at", "2023-02-17 19:42:02.812960"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.813751"], ["updated_at", "2023-02-17 19:42:02.813751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.814490"], ["updated_at", "2023-02-17 19:42:02.814490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.815201"], ["updated_at", "2023-02-17 19:42:02.815201"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.815934"], ["updated_at", "2023-02-17 19:42:02.815934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.816629"], ["updated_at", "2023-02-17 19:42:02.816629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.817329"], ["updated_at", "2023-02-17 19:42:02.817329"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.818083"], ["updated_at", "2023-02-17 19:42:02.818083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:02.819168"], ["updated_at", "2023-02-17 19:42:02.819168"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1” for 127.0.0.1 at 2023-02-17 16:42:02 -0300 Processing by CclassesController#show as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 382)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:02.828971"], ["updated_at", "2023-02-17 19:42:02.828971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:42:02.830510"], ["updated_at", "2023-02-17 19:42:02.830510"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:42:02.833549"], ["updated_at", "2023-02-17 19:42:02.833549"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:42:02.834741"], ["updated_at", "2023-02-17 19:42:02.834741"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:42:02.837519"], ["updated_at", "2023-02-17 19:42:02.837519"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:42:02.838831"], ["updated_at", "2023-02-17 19:42:02.838831"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:42:02.840925"], ["updated_at", "2023-02-17 19:42:02.840925"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:42:02.842308"], ["updated_at", "2023-02-17 19:42:02.842308"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:42:02.844001"], ["updated_at", "2023-02-17 19:42:02.844001"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:42:02.845327"], ["updated_at", "2023-02-17 19:42:02.845327"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:42:02.846702"], ["updated_at", "2023-02-17 19:42:02.846702"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:42:02.848009"], ["updated_at", "2023-02-17 19:42:02.848009"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:42:02.849948"], ["updated_at", "2023-02-17 19:42:02.849948"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:42:02.851301"], ["updated_at", "2023-02-17 19:42:02.851301"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:42:02.852724"], ["updated_at", "2023-02-17 19:42:02.852724"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:42:02.853917"], ["updated_at", "2023-02-17 19:42:02.853917"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:42:02.855283"], ["updated_at", "2023-02-17 19:42:02.855283"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:42:02.856438"], ["updated_at", "2023-02-17 19:42:02.856438"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:42:02.857929"], ["updated_at", "2023-02-17 19:42:02.857929"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:42:02.859572"], ["updated_at", "2023-02-17 19:42:02.859572"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:42:02.861052"], ["updated_at", "2023-02-17 19:42:02.861052"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:42:02.862232"], ["updated_at", "2023-02-17 19:42:02.862232"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:42:02.863582"], ["updated_at", "2023-02-17 19:42:02.863582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:42:02.864882"], ["updated_at", "2023-02-17 19:42:02.864882"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:42:02.866553"], ["updated_at", "2023-02-17 19:42:02.866553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:42:02.867851"], ["updated_at", "2023-02-17 19:42:02.867851"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:42:02.869416"], ["updated_at", "2023-02-17 19:42:02.869416"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:42:02.870679"], ["updated_at", "2023-02-17 19:42:02.870679"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:42:02.872097"], ["updated_at", "2023-02-17 19:42:02.872097"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:42:02.873482"], ["updated_at", "2023-02-17 19:42:02.873482"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:42:02.874923"], ["updated_at", "2023-02-17 19:42:02.874923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:42:02.876099"], ["updated_at", "2023-02-17 19:42:02.876099"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:42:02.877460"], ["updated_at", "2023-02-17 19:42:02.877460"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:42:02.878868"], ["updated_at", "2023-02-17 19:42:02.878868"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:42:02.880519"], ["updated_at", "2023-02-17 19:42:02.880519"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:42:02.881888"], ["updated_at", "2023-02-17 19:42:02.881888"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:42:02.883560"], ["updated_at", "2023-02-17 19:42:02.883560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:42:02.884914"], ["updated_at", "2023-02-17 19:42:02.884914"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:42:02.886338"], ["updated_at", "2023-02-17 19:42:02.886338"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:42:02.887572"], ["updated_at", "2023-02-17 19:42:02.887572"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:42:02.889314"], ["updated_at", "2023-02-17 19:42:02.889314"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:42:02.890650"], ["updated_at", "2023-02-17 19:42:02.890650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:42:02.892031"], ["updated_at", "2023-02-17 19:42:02.892031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.893216"], ["updated_at", "2023-02-17 19:42:02.893216"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:42:02.894587"], ["updated_at", "2023-02-17 19:42:02.894587"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:42:02.895764"], ["updated_at", "2023-02-17 19:42:02.895764"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:42:02.897174"], ["updated_at", "2023-02-17 19:42:02.897174"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:42:02.898692"], ["updated_at", "2023-02-17 19:42:02.898692"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:42:02.900401"], ["updated_at", "2023-02-17 19:42:02.900401"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:42:02.901736"], ["updated_at", "2023-02-17 19:42:02.901736"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:42:02.903121"], ["updated_at", "2023-02-17 19:42:02.903121"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:42:02.904452"], ["updated_at", "2023-02-17 19:42:02.904452"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:42:02.905896"], ["updated_at", "2023-02-17 19:42:02.905896"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:42:02.907061"], ["updated_at", "2023-02-17 19:42:02.907061"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:42:02.908471"], ["updated_at", "2023-02-17 19:42:02.908471"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:42:02.910085"], ["updated_at", "2023-02-17 19:42:02.910085"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:42:02.911537"], ["updated_at", "2023-02-17 19:42:02.911537"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:42:02.912781"], ["updated_at", "2023-02-17 19:42:02.912781"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:42:02.914214"], ["updated_at", "2023-02-17 19:42:02.914214"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:42:02.915609"], ["updated_at", "2023-02-17 19:42:02.915609"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:42:02.917133"], ["updated_at", "2023-02-17 19:42:02.917133"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:42:02.918463"], ["updated_at", "2023-02-17 19:42:02.918463"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:42:02.920284"], ["updated_at", "2023-02-17 19:42:02.920284"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.921580"], ["updated_at", "2023-02-17 19:42:02.921580"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:42:02.923000"], ["updated_at", "2023-02-17 19:42:02.923000"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:42:02.924188"], ["updated_at", "2023-02-17 19:42:02.924188"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:42:02.925552"], ["updated_at", "2023-02-17 19:42:02.925552"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:42:02.926759"], ["updated_at", "2023-02-17 19:42:02.926759"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:42:02.928155"], ["updated_at", "2023-02-17 19:42:02.928155"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.929538"], ["updated_at", "2023-02-17 19:42:02.929538"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:42:02.931032"], ["updated_at", "2023-02-17 19:42:02.931032"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:42:02.932318"], ["updated_at", "2023-02-17 19:42:02.932318"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:42:02.933940"], ["updated_at", "2023-02-17 19:42:02.933940"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:42:02.935414"], ["updated_at", "2023-02-17 19:42:02.935414"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:42:02.936941"], ["updated_at", "2023-02-17 19:42:02.936941"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:42:02.938359"], ["updated_at", "2023-02-17 19:42:02.938359"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:42:02.940125"], ["updated_at", "2023-02-17 19:42:02.940125"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:42:02.941386"], ["updated_at", "2023-02-17 19:42:02.941386"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:42:02.942799"], ["updated_at", "2023-02-17 19:42:02.942799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:42:02.944018"], ["updated_at", "2023-02-17 19:42:02.944018"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:42:02.945411"], ["updated_at", "2023-02-17 19:42:02.945411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:42:02.946616"], ["updated_at", "2023-02-17 19:42:02.946616"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:42:02.948060"], ["updated_at", "2023-02-17 19:42:02.948060"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:42:02.949743"], ["updated_at", "2023-02-17 19:42:02.949743"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:42:02.951503"], ["updated_at", "2023-02-17 19:42:02.951503"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:42:02.952803"], ["updated_at", "2023-02-17 19:42:02.952803"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:42:02.954282"], ["updated_at", "2023-02-17 19:42:02.954282"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:42:02.955542"], ["updated_at", "2023-02-17 19:42:02.955542"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:42:02.956945"], ["updated_at", "2023-02-17 19:42:02.956945"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:42:02.958115"], ["updated_at", "2023-02-17 19:42:02.958115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:42:02.959620"], ["updated_at", "2023-02-17 19:42:02.959620"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:42:02.960867"], ["updated_at", "2023-02-17 19:42:02.960867"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:42:02.962622"], ["updated_at", "2023-02-17 19:42:02.962622"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:42:02.963938"], ["updated_at", "2023-02-17 19:42:02.963938"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:42:02.965529"], ["updated_at", "2023-02-17 19:42:02.965529"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:42:02.966736"], ["updated_at", "2023-02-17 19:42:02.966736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:42:02.967964"], ["updated_at", "2023-02-17 19:42:02.967964"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:42:02.969729"], ["updated_at", "2023-02-17 19:42:02.969729"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:42:02.971437"], ["updated_at", "2023-02-17 19:42:02.971437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:42:02.972972"], ["updated_at", "2023-02-17 19:42:02.972972"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:42:02.974123"], ["updated_at", "2023-02-17 19:42:02.974123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:02.986059"], ["updated_at", "2023-02-17 19:42:02.986059"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:02.987468"], ["updated_at", "2023-02-17 19:42:02.987468"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:02.988807"], ["updated_at", "2023-02-17 19:42:02.988807"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.990049"], ["updated_at", "2023-02-17 19:42:02.990049"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.991213"], ["updated_at", "2023-02-17 19:42:02.991213"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.992325"], ["updated_at", "2023-02-17 19:42:02.992325"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.993256"], ["updated_at", "2023-02-17 19:42:02.993256"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:02.994226"], ["updated_at", "2023-02-17 19:42:02.994226"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:02.995240"], ["updated_at", "2023-02-17 19:42:02.995240"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.996265"], ["updated_at", "2023-02-17 19:42:02.996265"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.997162"], ["updated_at", "2023-02-17 19:42:02.997162"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.998043"], ["updated_at", "2023-02-17 19:42:02.998043"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.998931"], ["updated_at", "2023-02-17 19:42:02.998931"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:02.999713"], ["updated_at", "2023-02-17 19:42:02.999713"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.000597"], ["updated_at", "2023-02-17 19:42:03.000597"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.001538"], ["updated_at", "2023-02-17 19:42:03.001538"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.002331"], ["updated_at", "2023-02-17 19:42:03.002331"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.003123"], ["updated_at", "2023-02-17 19:42:03.003123"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.003928"], ["updated_at", "2023-02-17 19:42:03.003928"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.004705"], ["updated_at", "2023-02-17 19:42:03.004705"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.005440"], ["updated_at", "2023-02-17 19:42:03.005440"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:03.017304"], ["updated_at", "2023-02-17 19:42:03.017304"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:03.018561"], ["updated_at", "2023-02-17 19:42:03.018561"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:03.019673"], ["updated_at", "2023-02-17 19:42:03.019673"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.025480"], ["updated_at", "2023-02-17 19:42:03.025480"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.026567"], ["updated_at", "2023-02-17 19:42:03.026567"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.027356"], ["updated_at", "2023-02-17 19:42:03.027356"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.028095"], ["updated_at", "2023-02-17 19:42:03.028095"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.029196"], ["updated_at", "2023-02-17 19:42:03.029196"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:03.030561"], ["updated_at", "2023-02-17 19:42:03.030561"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.031876"], ["updated_at", "2023-02-17 19:42:03.031876"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.033066"], ["updated_at", "2023-02-17 19:42:03.033066"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.034199"], ["updated_at", "2023-02-17 19:42:03.034199"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.035292"], ["updated_at", "2023-02-17 19:42:03.035292"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.036409"], ["updated_at", "2023-02-17 19:42:03.036409"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.037564"], ["updated_at", "2023-02-17 19:42:03.037564"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.038731"], ["updated_at", "2023-02-17 19:42:03.038731"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.039728"], ["updated_at", "2023-02-17 19:42:03.039728"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.040893"], ["updated_at", "2023-02-17 19:42:03.040893"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.042698"], ["updated_at", "2023-02-17 19:42:03.042698"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.043675"], ["updated_at", "2023-02-17 19:42:03.043675"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.044455"], ["updated_at", "2023-02-17 19:42:03.044455"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.062087"], ["updated_at", "2023-02-17 19:42:03.062087"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.063224"], ["updated_at", "2023-02-17 19:42:03.063224"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.064314"], ["updated_at", "2023-02-17 19:42:03.064314"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.065309"], ["updated_at", "2023-02-17 19:42:03.065309"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.066173"], ["updated_at", "2023-02-17 19:42:03.066173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.067111"], ["updated_at", "2023-02-17 19:42:03.067111"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.067938"], ["updated_at", "2023-02-17 19:42:03.067938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.068725"], ["updated_at", "2023-02-17 19:42:03.068725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.069803"], ["updated_at", "2023-02-17 19:42:03.069803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.070823"], ["updated_at", "2023-02-17 19:42:03.070823"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.071920"], ["updated_at", "2023-02-17 19:42:03.071920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.072977"], ["updated_at", "2023-02-17 19:42:03.072977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.074113"], ["updated_at", "2023-02-17 19:42:03.074113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.075045"], ["updated_at", "2023-02-17 19:42:03.075045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.075839"], ["updated_at", "2023-02-17 19:42:03.075839"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.076571"], ["updated_at", "2023-02-17 19:42:03.076571"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.093223"], ["updated_at", "2023-02-17 19:42:03.093223"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.094199"], ["updated_at", "2023-02-17 19:42:03.094199"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.094941"], ["updated_at", "2023-02-17 19:42:03.094941"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.095642"], ["updated_at", "2023-02-17 19:42:03.095642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.096398"], ["updated_at", "2023-02-17 19:42:03.096398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.097319"], ["updated_at", "2023-02-17 19:42:03.097319"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.098154"], ["updated_at", "2023-02-17 19:42:03.098154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.098941"], ["updated_at", "2023-02-17 19:42:03.098941"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.100048"], ["updated_at", "2023-02-17 19:42:03.100048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.100999"], ["updated_at", "2023-02-17 19:42:03.100999"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.101865"], ["updated_at", "2023-02-17 19:42:03.101865"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.102701"], ["updated_at", "2023-02-17 19:42:03.102701"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.103534"], ["updated_at", "2023-02-17 19:42:03.103534"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.104369"], ["updated_at", "2023-02-17 19:42:03.104369"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.105362"], ["updated_at", "2023-02-17 19:42:03.105362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.106261"], ["updated_at", "2023-02-17 19:42:03.106261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.123410"], ["updated_at", "2023-02-17 19:42:03.123410"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.124450"], ["updated_at", "2023-02-17 19:42:03.124450"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.125254"], ["updated_at", "2023-02-17 19:42:03.125254"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.126083"], ["updated_at", "2023-02-17 19:42:03.126083"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.126883"], ["updated_at", "2023-02-17 19:42:03.126883"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.127609"], ["updated_at", "2023-02-17 19:42:03.127609"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.128323"], ["updated_at", "2023-02-17 19:42:03.128323"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.129144"], ["updated_at", "2023-02-17 19:42:03.129144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.130214"], ["updated_at", "2023-02-17 19:42:03.130214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.131170"], ["updated_at", "2023-02-17 19:42:03.131170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.131888"], ["updated_at", "2023-02-17 19:42:03.131888"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.132580"], ["updated_at", "2023-02-17 19:42:03.132580"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.133298"], ["updated_at", "2023-02-17 19:42:03.133298"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.134070"], ["updated_at", "2023-02-17 19:42:03.134070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.134805"], ["updated_at", "2023-02-17 19:42:03.134805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.135504"], ["updated_at", "2023-02-17 19:42:03.135504"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.152100"], ["updated_at", "2023-02-17 19:42:03.152100"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.153129"], ["updated_at", "2023-02-17 19:42:03.153129"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.153901"], ["updated_at", "2023-02-17 19:42:03.153901"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.154630"], ["updated_at", "2023-02-17 19:42:03.154630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.155459"], ["updated_at", "2023-02-17 19:42:03.155459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.156262"], ["updated_at", "2023-02-17 19:42:03.156262"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.157041"], ["updated_at", "2023-02-17 19:42:03.157041"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.157781"], ["updated_at", "2023-02-17 19:42:03.157781"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.158498"], ["updated_at", "2023-02-17 19:42:03.158498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.159480"], ["updated_at", "2023-02-17 19:42:03.159480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.160550"], ["updated_at", "2023-02-17 19:42:03.160550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.161344"], ["updated_at", "2023-02-17 19:42:03.161344"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.162069"], ["updated_at", "2023-02-17 19:42:03.162069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.162748"], ["updated_at", "2023-02-17 19:42:03.162748"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.163584"], ["updated_at", "2023-02-17 19:42:03.163584"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.164353"], ["updated_at", "2023-02-17 19:42:03.164353"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.180814"], ["updated_at", "2023-02-17 19:42:03.180814"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.181868"], ["updated_at", "2023-02-17 19:42:03.181868"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.182692"], ["updated_at", "2023-02-17 19:42:03.182692"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.183393"], ["updated_at", "2023-02-17 19:42:03.183393"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.184169"], ["updated_at", "2023-02-17 19:42:03.184169"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.184942"], ["updated_at", "2023-02-17 19:42:03.184942"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.185635"], ["updated_at", "2023-02-17 19:42:03.185635"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.186429"], ["updated_at", "2023-02-17 19:42:03.186429"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.187144"], ["updated_at", "2023-02-17 19:42:03.187144"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.187831"], ["updated_at", "2023-02-17 19:42:03.187831"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.188579"], ["updated_at", "2023-02-17 19:42:03.188579"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.189500"], ["updated_at", "2023-02-17 19:42:03.189500"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.190576"], ["updated_at", "2023-02-17 19:42:03.190576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.191393"], ["updated_at", "2023-02-17 19:42:03.191393"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.192108"], ["updated_at", "2023-02-17 19:42:03.192108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.192854"], ["updated_at", "2023-02-17 19:42:03.192854"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.208687"], ["updated_at", "2023-02-17 19:42:03.208687"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.209863"], ["updated_at", "2023-02-17 19:42:03.209863"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.210653"], ["updated_at", "2023-02-17 19:42:03.210653"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.211359"], ["updated_at", "2023-02-17 19:42:03.211359"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.212119"], ["updated_at", "2023-02-17 19:42:03.212119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.212856"], ["updated_at", "2023-02-17 19:42:03.212856"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.213625"], ["updated_at", "2023-02-17 19:42:03.213625"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.214365"], ["updated_at", "2023-02-17 19:42:03.214365"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.215097"], ["updated_at", "2023-02-17 19:42:03.215097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.215803"], ["updated_at", "2023-02-17 19:42:03.215803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.216501"], ["updated_at", "2023-02-17 19:42:03.216501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.217229"], ["updated_at", "2023-02-17 19:42:03.217229"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.217989"], ["updated_at", "2023-02-17 19:42:03.217989"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.218692"], ["updated_at", "2023-02-17 19:42:03.218692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.219471"], ["updated_at", "2023-02-17 19:42:03.219471"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.220211"], ["updated_at", "2023-02-17 19:42:03.220211"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:42:03 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 15ms (Views: 11.5ms | ActiveRecord: 0.5ms | Allocations: 9579)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:03.244966"], ["updated_at", "2023-02-17 19:42:03.244966"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:42:03.246433"], ["updated_at", "2023-02-17 19:42:03.246433"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:42:03.249517"], ["updated_at", "2023-02-17 19:42:03.249517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:42:03.250789"], ["updated_at", "2023-02-17 19:42:03.250789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:42:03.253586"], ["updated_at", "2023-02-17 19:42:03.253586"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:42:03.254800"], ["updated_at", "2023-02-17 19:42:03.254800"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:42:03.256934"], ["updated_at", "2023-02-17 19:42:03.256934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:42:03.258434"], ["updated_at", "2023-02-17 19:42:03.258434"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:42:03.260149"], ["updated_at", "2023-02-17 19:42:03.260149"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:42:03.261520"], ["updated_at", "2023-02-17 19:42:03.261520"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:42:03.262966"], ["updated_at", "2023-02-17 19:42:03.262966"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:42:03.264243"], ["updated_at", "2023-02-17 19:42:03.264243"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:42:03.265691"], ["updated_at", "2023-02-17 19:42:03.265691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:42:03.266915"], ["updated_at", "2023-02-17 19:42:03.266915"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:42:03.268402"], ["updated_at", "2023-02-17 19:42:03.268402"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:42:03.269672"], ["updated_at", "2023-02-17 19:42:03.269672"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:42:03.271095"], ["updated_at", "2023-02-17 19:42:03.271095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:42:03.272409"], ["updated_at", "2023-02-17 19:42:03.272409"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:42:03.273812"], ["updated_at", "2023-02-17 19:42:03.273812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:42:03.274976"], ["updated_at", "2023-02-17 19:42:03.274976"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:42:03.276739"], ["updated_at", "2023-02-17 19:42:03.276739"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:42:03.278052"], ["updated_at", "2023-02-17 19:42:03.278052"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:42:03.279475"], ["updated_at", "2023-02-17 19:42:03.279475"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:42:03.280741"], ["updated_at", "2023-02-17 19:42:03.280741"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:42:03.282135"], ["updated_at", "2023-02-17 19:42:03.282135"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:42:03.283323"], ["updated_at", "2023-02-17 19:42:03.283323"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:42:03.284766"], ["updated_at", "2023-02-17 19:42:03.284766"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:42:03.286027"], ["updated_at", "2023-02-17 19:42:03.286027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:42:03.287509"], ["updated_at", "2023-02-17 19:42:03.287509"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:42:03.288793"], ["updated_at", "2023-02-17 19:42:03.288793"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:42:03.290191"], ["updated_at", "2023-02-17 19:42:03.290191"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:42:03.291352"], ["updated_at", "2023-02-17 19:42:03.291352"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:42:03.292796"], ["updated_at", "2023-02-17 19:42:03.292796"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:42:03.294068"], ["updated_at", "2023-02-17 19:42:03.294068"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:42:03.295437"], ["updated_at", "2023-02-17 19:42:03.295437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:42:03.296781"], ["updated_at", "2023-02-17 19:42:03.296781"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:42:03.298253"], ["updated_at", "2023-02-17 19:42:03.298253"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:42:03.299427"], ["updated_at", "2023-02-17 19:42:03.299427"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:42:03.300893"], ["updated_at", "2023-02-17 19:42:03.300893"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:42:03.302120"], ["updated_at", "2023-02-17 19:42:03.302120"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:42:03.303438"], ["updated_at", "2023-02-17 19:42:03.303438"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:42:03.304687"], ["updated_at", "2023-02-17 19:42:03.304687"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:42:03.306248"], ["updated_at", "2023-02-17 19:42:03.306248"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:42:03.307617"], ["updated_at", "2023-02-17 19:42:03.307617"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:42:03.309179"], ["updated_at", "2023-02-17 19:42:03.309179"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:42:03.310413"], ["updated_at", "2023-02-17 19:42:03.310413"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:42:03.311764"], ["updated_at", "2023-02-17 19:42:03.311764"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:42:03.313028"], ["updated_at", "2023-02-17 19:42:03.313028"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:42:03.314413"], ["updated_at", "2023-02-17 19:42:03.314413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:42:03.315650"], ["updated_at", "2023-02-17 19:42:03.315650"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:42:03.317247"], ["updated_at", "2023-02-17 19:42:03.317247"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:42:03.318536"], ["updated_at", "2023-02-17 19:42:03.318536"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:42:03.319925"], ["updated_at", "2023-02-17 19:42:03.319925"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:42:03.321191"], ["updated_at", "2023-02-17 19:42:03.321191"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:42:03.322649"], ["updated_at", "2023-02-17 19:42:03.322649"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:42:03.323871"], ["updated_at", "2023-02-17 19:42:03.323871"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:42:03.325337"], ["updated_at", "2023-02-17 19:42:03.325337"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:42:03.326576"], ["updated_at", "2023-02-17 19:42:03.326576"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:42:03.328068"], ["updated_at", "2023-02-17 19:42:03.328068"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:42:03.329339"], ["updated_at", "2023-02-17 19:42:03.329339"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:42:03.330812"], ["updated_at", "2023-02-17 19:42:03.330812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:42:03.332024"], ["updated_at", "2023-02-17 19:42:03.332024"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:42:03.333427"], ["updated_at", "2023-02-17 19:42:03.333427"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:42:03.334788"], ["updated_at", "2023-02-17 19:42:03.334788"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:42:03.336366"], ["updated_at", "2023-02-17 19:42:03.336366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:42:03.337630"], ["updated_at", "2023-02-17 19:42:03.337630"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:42:03.339171"], ["updated_at", "2023-02-17 19:42:03.339171"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:42:03.340355"], ["updated_at", "2023-02-17 19:42:03.340355"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:42:03.341741"], ["updated_at", "2023-02-17 19:42:03.341741"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:42:03.343002"], ["updated_at", "2023-02-17 19:42:03.343002"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:42:03.344361"], ["updated_at", "2023-02-17 19:42:03.344361"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:42:03.345560"], ["updated_at", "2023-02-17 19:42:03.345560"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:42:03.347144"], ["updated_at", "2023-02-17 19:42:03.347144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:42:03.348305"], ["updated_at", "2023-02-17 19:42:03.348305"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:42:03.349736"], ["updated_at", "2023-02-17 19:42:03.349736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:42:03.351013"], ["updated_at", "2023-02-17 19:42:03.351013"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:42:03.352371"], ["updated_at", "2023-02-17 19:42:03.352371"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:42:03.353574"], ["updated_at", "2023-02-17 19:42:03.353574"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:42:03.355042"], ["updated_at", "2023-02-17 19:42:03.355042"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:42:03.356324"], ["updated_at", "2023-02-17 19:42:03.356324"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:42:03.357723"], ["updated_at", "2023-02-17 19:42:03.357723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:42:03.359047"], ["updated_at", "2023-02-17 19:42:03.359047"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:42:03.360562"], ["updated_at", "2023-02-17 19:42:03.360562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:42:03.361773"], ["updated_at", "2023-02-17 19:42:03.361773"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:42:03.363238"], ["updated_at", "2023-02-17 19:42:03.363238"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:42:03.364463"], ["updated_at", "2023-02-17 19:42:03.364463"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:42:03.365881"], ["updated_at", "2023-02-17 19:42:03.365881"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:42:03.367260"], ["updated_at", "2023-02-17 19:42:03.367260"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:42:03.368678"], ["updated_at", "2023-02-17 19:42:03.368678"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:42:03.369892"], ["updated_at", "2023-02-17 19:42:03.369892"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:42:03.371362"], ["updated_at", "2023-02-17 19:42:03.371362"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:42:03.372559"], ["updated_at", "2023-02-17 19:42:03.372559"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:42:03.373942"], ["updated_at", "2023-02-17 19:42:03.373942"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:42:03.375222"], ["updated_at", "2023-02-17 19:42:03.375222"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:42:03.376736"], ["updated_at", "2023-02-17 19:42:03.376736"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:42:03.377887"], ["updated_at", "2023-02-17 19:42:03.377887"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:42:03.379181"], ["updated_at", "2023-02-17 19:42:03.379181"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:42:03.380641"], ["updated_at", "2023-02-17 19:42:03.380641"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:42:03.382207"], ["updated_at", "2023-02-17 19:42:03.382207"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:42:03.383461"], ["updated_at", "2023-02-17 19:42:03.383461"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:42:03.384483"], ["updated_at", "2023-02-17 19:42:03.384483"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:03.395841"], ["updated_at", "2023-02-17 19:42:03.395841"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:03.397351"], ["updated_at", "2023-02-17 19:42:03.397351"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:03.398376"], ["updated_at", "2023-02-17 19:42:03.398376"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.399249"], ["updated_at", "2023-02-17 19:42:03.399249"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.400115"], ["updated_at", "2023-02-17 19:42:03.400115"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.400896"], ["updated_at", "2023-02-17 19:42:03.400896"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.401605"], ["updated_at", "2023-02-17 19:42:03.401605"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.402302"], ["updated_at", "2023-02-17 19:42:03.402302"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:03.403063"], ["updated_at", "2023-02-17 19:42:03.403063"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.403960"], ["updated_at", "2023-02-17 19:42:03.403960"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.404925"], ["updated_at", "2023-02-17 19:42:03.404925"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.405707"], ["updated_at", "2023-02-17 19:42:03.405707"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.406566"], ["updated_at", "2023-02-17 19:42:03.406566"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.407403"], ["updated_at", "2023-02-17 19:42:03.407403"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.408250"], ["updated_at", "2023-02-17 19:42:03.408250"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.409042"], ["updated_at", "2023-02-17 19:42:03.409042"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.409827"], ["updated_at", "2023-02-17 19:42:03.409827"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.410582"], ["updated_at", "2023-02-17 19:42:03.410582"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.411343"], ["updated_at", "2023-02-17 19:42:03.411343"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.412124"], ["updated_at", "2023-02-17 19:42:03.412124"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.412922"], ["updated_at", "2023-02-17 19:42:03.412922"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:03.424253"], ["updated_at", "2023-02-17 19:42:03.424253"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:03.425548"], ["updated_at", "2023-02-17 19:42:03.425548"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:03.426621"], ["updated_at", "2023-02-17 19:42:03.426621"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.427518"], ["updated_at", "2023-02-17 19:42:03.427518"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.428267"], ["updated_at", "2023-02-17 19:42:03.428267"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.429034"], ["updated_at", "2023-02-17 19:42:03.429034"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.429825"], ["updated_at", "2023-02-17 19:42:03.429825"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.430532"], ["updated_at", "2023-02-17 19:42:03.430532"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:03.431283"], ["updated_at", "2023-02-17 19:42:03.431283"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.432116"], ["updated_at", "2023-02-17 19:42:03.432116"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.432978"], ["updated_at", "2023-02-17 19:42:03.432978"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.433880"], ["updated_at", "2023-02-17 19:42:03.433880"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.434626"], ["updated_at", "2023-02-17 19:42:03.434626"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.435371"], ["updated_at", "2023-02-17 19:42:03.435371"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.436115"], ["updated_at", "2023-02-17 19:42:03.436115"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.437018"], ["updated_at", "2023-02-17 19:42:03.437018"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.437863"], ["updated_at", "2023-02-17 19:42:03.437863"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.438622"], ["updated_at", "2023-02-17 19:42:03.438622"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.439371"], ["updated_at", "2023-02-17 19:42:03.439371"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.440118"], ["updated_at", "2023-02-17 19:42:03.440118"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.440866"], ["updated_at", "2023-02-17 19:42:03.440866"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.457468"], ["updated_at", "2023-02-17 19:42:03.457468"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.458633"], ["updated_at", "2023-02-17 19:42:03.458633"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.459556"], ["updated_at", "2023-02-17 19:42:03.459556"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.460313"], ["updated_at", "2023-02-17 19:42:03.460313"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.461100"], ["updated_at", "2023-02-17 19:42:03.461100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.461952"], ["updated_at", "2023-02-17 19:42:03.461952"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.462831"], ["updated_at", "2023-02-17 19:42:03.462831"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.463551"], ["updated_at", "2023-02-17 19:42:03.463551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.464246"], ["updated_at", "2023-02-17 19:42:03.464246"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.464959"], ["updated_at", "2023-02-17 19:42:03.464959"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.465666"], ["updated_at", "2023-02-17 19:42:03.465666"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.466567"], ["updated_at", "2023-02-17 19:42:03.466567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.467399"], ["updated_at", "2023-02-17 19:42:03.467399"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.468118"], ["updated_at", "2023-02-17 19:42:03.468118"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.468805"], ["updated_at", "2023-02-17 19:42:03.468805"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.469493"], ["updated_at", "2023-02-17 19:42:03.469493"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.485500"], ["updated_at", "2023-02-17 19:42:03.485500"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.486596"], ["updated_at", "2023-02-17 19:42:03.486596"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.487497"], ["updated_at", "2023-02-17 19:42:03.487497"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.488235"], ["updated_at", "2023-02-17 19:42:03.488235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.489082"], ["updated_at", "2023-02-17 19:42:03.489082"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.489852"], ["updated_at", "2023-02-17 19:42:03.489852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.490576"], ["updated_at", "2023-02-17 19:42:03.490576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.491364"], ["updated_at", "2023-02-17 19:42:03.491364"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.492098"], ["updated_at", "2023-02-17 19:42:03.492098"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.492871"], ["updated_at", "2023-02-17 19:42:03.492871"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.493610"], ["updated_at", "2023-02-17 19:42:03.493610"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.494316"], ["updated_at", "2023-02-17 19:42:03.494316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.495069"], ["updated_at", "2023-02-17 19:42:03.495069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.495849"], ["updated_at", "2023-02-17 19:42:03.495849"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.496692"], ["updated_at", "2023-02-17 19:42:03.496692"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.497464"], ["updated_at", "2023-02-17 19:42:03.497464"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.513905"], ["updated_at", "2023-02-17 19:42:03.513905"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.514999"], ["updated_at", "2023-02-17 19:42:03.514999"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.515811"], ["updated_at", "2023-02-17 19:42:03.515811"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.516708"], ["updated_at", "2023-02-17 19:42:03.516708"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.517599"], ["updated_at", "2023-02-17 19:42:03.517599"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.518378"], ["updated_at", "2023-02-17 19:42:03.518378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.519151"], ["updated_at", "2023-02-17 19:42:03.519151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.519953"], ["updated_at", "2023-02-17 19:42:03.519953"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.520846"], ["updated_at", "2023-02-17 19:42:03.520846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.527783"], ["updated_at", "2023-02-17 19:42:03.527783"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.528706"], ["updated_at", "2023-02-17 19:42:03.528706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.529464"], ["updated_at", "2023-02-17 19:42:03.529464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.530239"], ["updated_at", "2023-02-17 19:42:03.530239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.530961"], ["updated_at", "2023-02-17 19:42:03.530961"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.531700"], ["updated_at", "2023-02-17 19:42:03.531700"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.532489"], ["updated_at", "2023-02-17 19:42:03.532489"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.548417"], ["updated_at", "2023-02-17 19:42:03.548417"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.549438"], ["updated_at", "2023-02-17 19:42:03.549438"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.550242"], ["updated_at", "2023-02-17 19:42:03.550242"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.551014"], ["updated_at", "2023-02-17 19:42:03.551014"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.551770"], ["updated_at", "2023-02-17 19:42:03.551770"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.552519"], ["updated_at", "2023-02-17 19:42:03.552519"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.553593"], ["updated_at", "2023-02-17 19:42:03.553593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.554665"], ["updated_at", "2023-02-17 19:42:03.554665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.555788"], ["updated_at", "2023-02-17 19:42:03.555788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.556899"], ["updated_at", "2023-02-17 19:42:03.556899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.557920"], ["updated_at", "2023-02-17 19:42:03.557920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.558863"], ["updated_at", "2023-02-17 19:42:03.558863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.559707"], ["updated_at", "2023-02-17 19:42:03.559707"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.560697"], ["updated_at", "2023-02-17 19:42:03.560697"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.561795"], ["updated_at", "2023-02-17 19:42:03.561795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.562705"], ["updated_at", "2023-02-17 19:42:03.562705"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.578500"], ["updated_at", "2023-02-17 19:42:03.578500"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.579463"], ["updated_at", "2023-02-17 19:42:03.579463"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.580255"], ["updated_at", "2023-02-17 19:42:03.580255"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.581055"], ["updated_at", "2023-02-17 19:42:03.581055"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.581875"], ["updated_at", "2023-02-17 19:42:03.581875"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.582631"], ["updated_at", "2023-02-17 19:42:03.582631"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.583391"], ["updated_at", "2023-02-17 19:42:03.583391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.584127"], ["updated_at", "2023-02-17 19:42:03.584127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.584811"], ["updated_at", "2023-02-17 19:42:03.584811"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.585508"], ["updated_at", "2023-02-17 19:42:03.585508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.586310"], ["updated_at", "2023-02-17 19:42:03.586310"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.587080"], ["updated_at", "2023-02-17 19:42:03.587080"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.587775"], ["updated_at", "2023-02-17 19:42:03.587775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.588451"], ["updated_at", "2023-02-17 19:42:03.588451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.589134"], ["updated_at", "2023-02-17 19:42:03.589134"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.589833"], ["updated_at", "2023-02-17 19:42:03.589833"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.605401"], ["updated_at", "2023-02-17 19:42:03.605401"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.606423"], ["updated_at", "2023-02-17 19:42:03.606423"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.607266"], ["updated_at", "2023-02-17 19:42:03.607266"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.608002"], ["updated_at", "2023-02-17 19:42:03.608002"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.608766"], ["updated_at", "2023-02-17 19:42:03.608766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.609571"], ["updated_at", "2023-02-17 19:42:03.609571"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.610324"], ["updated_at", "2023-02-17 19:42:03.610324"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.611065"], ["updated_at", "2023-02-17 19:42:03.611065"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.611797"], ["updated_at", "2023-02-17 19:42:03.611797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.612494"], ["updated_at", "2023-02-17 19:42:03.612494"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.613196"], ["updated_at", "2023-02-17 19:42:03.613196"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.613909"], ["updated_at", "2023-02-17 19:42:03.613909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.614577"], ["updated_at", "2023-02-17 19:42:03.614577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.615291"], ["updated_at", "2023-02-17 19:42:03.615291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.616004"], ["updated_at", "2023-02-17 19:42:03.616004"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:03.616797"], ["updated_at", "2023-02-17 19:42:03.616797"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:42:03 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:03.634304"], ["updated_at", "2023-02-17 19:42:03.634304"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:42:03.635738"], ["updated_at", "2023-02-17 19:42:03.635738"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:42:03.638725"], ["updated_at", "2023-02-17 19:42:03.638725"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:42:03.639899"], ["updated_at", "2023-02-17 19:42:03.639899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:42:03.642820"], ["updated_at", "2023-02-17 19:42:03.642820"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:42:03.643998"], ["updated_at", "2023-02-17 19:42:03.643998"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:42:03.646095"], ["updated_at", "2023-02-17 19:42:03.646095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:42:03.647573"], ["updated_at", "2023-02-17 19:42:03.647573"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:42:03.649143"], ["updated_at", "2023-02-17 19:42:03.649143"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:42:03.650465"], ["updated_at", "2023-02-17 19:42:03.650465"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:42:03.651792"], ["updated_at", "2023-02-17 19:42:03.651792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:42:03.653026"], ["updated_at", "2023-02-17 19:42:03.653026"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:42:03.654451"], ["updated_at", "2023-02-17 19:42:03.654451"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:42:03.655598"], ["updated_at", "2023-02-17 19:42:03.655598"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:42:03.657075"], ["updated_at", "2023-02-17 19:42:03.657075"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:42:03.658331"], ["updated_at", "2023-02-17 19:42:03.658331"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:42:03.659790"], ["updated_at", "2023-02-17 19:42:03.659790"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:42:03.661419"], ["updated_at", "2023-02-17 19:42:03.661419"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:42:03.663022"], ["updated_at", "2023-02-17 19:42:03.663022"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:42:03.664234"], ["updated_at", "2023-02-17 19:42:03.664234"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:42:03.665744"], ["updated_at", "2023-02-17 19:42:03.665744"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:42:03.667087"], ["updated_at", "2023-02-17 19:42:03.667087"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:42:03.668485"], ["updated_at", "2023-02-17 19:42:03.668485"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:42:03.669780"], ["updated_at", "2023-02-17 19:42:03.669780"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:42:03.671168"], ["updated_at", "2023-02-17 19:42:03.671168"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:42:03.672360"], ["updated_at", "2023-02-17 19:42:03.672360"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:42:03.673796"], ["updated_at", "2023-02-17 19:42:03.673796"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:42:03.675005"], ["updated_at", "2023-02-17 19:42:03.675005"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:42:03.676353"], ["updated_at", "2023-02-17 19:42:03.676353"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:42:03.677647"], ["updated_at", "2023-02-17 19:42:03.677647"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:42:03.679079"], ["updated_at", "2023-02-17 19:42:03.679079"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:42:03.680245"], ["updated_at", "2023-02-17 19:42:03.680245"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:42:03.681598"], ["updated_at", "2023-02-17 19:42:03.681598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:42:03.682839"], ["updated_at", "2023-02-17 19:42:03.682839"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:42:03.684276"], ["updated_at", "2023-02-17 19:42:03.684276"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:42:03.685454"], ["updated_at", "2023-02-17 19:42:03.685454"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:42:03.686936"], ["updated_at", "2023-02-17 19:42:03.686936"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:42:03.688163"], ["updated_at", "2023-02-17 19:42:03.688163"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:42:03.689511"], ["updated_at", "2023-02-17 19:42:03.689511"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:42:03.690741"], ["updated_at", "2023-02-17 19:42:03.690741"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:42:03.692250"], ["updated_at", "2023-02-17 19:42:03.692250"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:42:03.693446"], ["updated_at", "2023-02-17 19:42:03.693446"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:42:03.694851"], ["updated_at", "2023-02-17 19:42:03.694851"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:42:03.696061"], ["updated_at", "2023-02-17 19:42:03.696061"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:42:03.697495"], ["updated_at", "2023-02-17 19:42:03.697495"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:42:03.698757"], ["updated_at", "2023-02-17 19:42:03.698757"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:42:03.700295"], ["updated_at", "2023-02-17 19:42:03.700295"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:42:03.701505"], ["updated_at", "2023-02-17 19:42:03.701505"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:42:03.702887"], ["updated_at", "2023-02-17 19:42:03.702887"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:42:03.704121"], ["updated_at", "2023-02-17 19:42:03.704121"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:42:03.705439"], ["updated_at", "2023-02-17 19:42:03.705439"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:42:03.706692"], ["updated_at", "2023-02-17 19:42:03.706692"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:42:03.708185"], ["updated_at", "2023-02-17 19:42:03.708185"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:42:03.709455"], ["updated_at", "2023-02-17 19:42:03.709455"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:42:03.710917"], ["updated_at", "2023-02-17 19:42:03.710917"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:42:03.712389"], ["updated_at", "2023-02-17 19:42:03.712389"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:42:03.713987"], ["updated_at", "2023-02-17 19:42:03.713987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:42:03.715252"], ["updated_at", "2023-02-17 19:42:03.715252"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:42:03.716808"], ["updated_at", "2023-02-17 19:42:03.716808"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:42:03.718057"], ["updated_at", "2023-02-17 19:42:03.718057"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:42:03.719406"], ["updated_at", "2023-02-17 19:42:03.719406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:42:03.720617"], ["updated_at", "2023-02-17 19:42:03.720617"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:42:03.722092"], ["updated_at", "2023-02-17 19:42:03.722092"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:42:03.723278"], ["updated_at", "2023-02-17 19:42:03.723278"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:42:03.724702"], ["updated_at", "2023-02-17 19:42:03.724702"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:42:03.725986"], ["updated_at", "2023-02-17 19:42:03.725986"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:42:03.727381"], ["updated_at", "2023-02-17 19:42:03.727381"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:42:03.728608"], ["updated_at", "2023-02-17 19:42:03.728608"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:42:03.730092"], ["updated_at", "2023-02-17 19:42:03.730092"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:42:03.731319"], ["updated_at", "2023-02-17 19:42:03.731319"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:42:03.732751"], ["updated_at", "2023-02-17 19:42:03.732751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:42:03.734027"], ["updated_at", "2023-02-17 19:42:03.734027"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:42:03.735601"], ["updated_at", "2023-02-17 19:42:03.735601"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:42:03.737234"], ["updated_at", "2023-02-17 19:42:03.737234"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:42:03.738655"], ["updated_at", "2023-02-17 19:42:03.738655"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:42:03.739818"], ["updated_at", "2023-02-17 19:42:03.739818"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:42:03.741284"], ["updated_at", "2023-02-17 19:42:03.741284"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:42:03.742613"], ["updated_at", "2023-02-17 19:42:03.742613"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:42:03.744094"], ["updated_at", "2023-02-17 19:42:03.744094"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:42:03.745379"], ["updated_at", "2023-02-17 19:42:03.745379"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:42:03.746862"], ["updated_at", "2023-02-17 19:42:03.746862"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:42:03.748079"], ["updated_at", "2023-02-17 19:42:03.748079"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:42:03.749581"], ["updated_at", "2023-02-17 19:42:03.749581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:42:03.750813"], ["updated_at", "2023-02-17 19:42:03.750813"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:42:03.752266"], ["updated_at", "2023-02-17 19:42:03.752266"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:42:03.753663"], ["updated_at", "2023-02-17 19:42:03.753663"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:42:03.755080"], ["updated_at", "2023-02-17 19:42:03.755080"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:42:03.756391"], ["updated_at", "2023-02-17 19:42:03.756391"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:42:03.757838"], ["updated_at", "2023-02-17 19:42:03.757838"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:42:03.759095"], ["updated_at", "2023-02-17 19:42:03.759095"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:42:03.760670"], ["updated_at", "2023-02-17 19:42:03.760670"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:42:03.762260"], ["updated_at", "2023-02-17 19:42:03.762260"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:42:03.763775"], ["updated_at", "2023-02-17 19:42:03.763775"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:42:03.765201"], ["updated_at", "2023-02-17 19:42:03.765201"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:42:03.766873"], ["updated_at", "2023-02-17 19:42:03.766873"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:42:03.768016"], ["updated_at", "2023-02-17 19:42:03.768016"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:42:03.769233"], ["updated_at", "2023-02-17 19:42:03.769233"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:42:03.770884"], ["updated_at", "2023-02-17 19:42:03.770884"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:42:03.772384"], ["updated_at", "2023-02-17 19:42:03.772384"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:42:03.773506"], ["updated_at", "2023-02-17 19:42:03.773506"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:42:03.774650"], ["updated_at", "2023-02-17 19:42:03.774650"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:03.786497"], ["updated_at", "2023-02-17 19:42:03.786497"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:03.788036"], ["updated_at", "2023-02-17 19:42:03.788036"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:03.789096"], ["updated_at", "2023-02-17 19:42:03.789096"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.790008"], ["updated_at", "2023-02-17 19:42:03.790008"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.790815"], ["updated_at", "2023-02-17 19:42:03.790815"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.791528"], ["updated_at", "2023-02-17 19:42:03.791528"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.792343"], ["updated_at", "2023-02-17 19:42:03.792343"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.793280"], ["updated_at", "2023-02-17 19:42:03.793280"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:03.794190"], ["updated_at", "2023-02-17 19:42:03.794190"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.795035"], ["updated_at", "2023-02-17 19:42:03.795035"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.795878"], ["updated_at", "2023-02-17 19:42:03.795878"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.797024"], ["updated_at", "2023-02-17 19:42:03.797024"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.798064"], ["updated_at", "2023-02-17 19:42:03.798064"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.799026"], ["updated_at", "2023-02-17 19:42:03.799026"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.799860"], ["updated_at", "2023-02-17 19:42:03.799860"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.800728"], ["updated_at", "2023-02-17 19:42:03.800728"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.801720"], ["updated_at", "2023-02-17 19:42:03.801720"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.802538"], ["updated_at", "2023-02-17 19:42:03.802538"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.803394"], ["updated_at", "2023-02-17 19:42:03.803394"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.804301"], ["updated_at", "2023-02-17 19:42:03.804301"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.805162"], ["updated_at", "2023-02-17 19:42:03.805162"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:03.816926"], ["updated_at", "2023-02-17 19:42:03.816926"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:03.818410"], ["updated_at", "2023-02-17 19:42:03.818410"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:03.819380"], ["updated_at", "2023-02-17 19:42:03.819380"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.820243"], ["updated_at", "2023-02-17 19:42:03.820243"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.821024"], ["updated_at", "2023-02-17 19:42:03.821024"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.821761"], ["updated_at", "2023-02-17 19:42:03.821761"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.822490"], ["updated_at", "2023-02-17 19:42:03.822490"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:03.823224"], ["updated_at", "2023-02-17 19:42:03.823224"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:03.824015"], ["updated_at", "2023-02-17 19:42:03.824015"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.824884"], ["updated_at", "2023-02-17 19:42:03.824884"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.825788"], ["updated_at", "2023-02-17 19:42:03.825788"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.826798"], ["updated_at", "2023-02-17 19:42:03.826798"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.827929"], ["updated_at", "2023-02-17 19:42:03.827929"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.828782"], ["updated_at", "2023-02-17 19:42:03.828782"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.829566"], ["updated_at", "2023-02-17 19:42:03.829566"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.830376"], ["updated_at", "2023-02-17 19:42:03.830376"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.831290"], ["updated_at", "2023-02-17 19:42:03.831290"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.832153"], ["updated_at", "2023-02-17 19:42:03.832153"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.832934"], ["updated_at", "2023-02-17 19:42:03.832934"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.833694"], ["updated_at", "2023-02-17 19:42:03.833694"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:03.834553"], ["updated_at", "2023-02-17 19:42:03.834553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.851959"], ["updated_at", "2023-02-17 19:42:03.851959"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.853094"], ["updated_at", "2023-02-17 19:42:03.853094"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.854018"], ["updated_at", "2023-02-17 19:42:03.854018"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.854852"], ["updated_at", "2023-02-17 19:42:03.854852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.855710"], ["updated_at", "2023-02-17 19:42:03.855710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.856623"], ["updated_at", "2023-02-17 19:42:03.856623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.857723"], ["updated_at", "2023-02-17 19:42:03.857723"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.858615"], ["updated_at", "2023-02-17 19:42:03.858615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.859440"], ["updated_at", "2023-02-17 19:42:03.859440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.860174"], ["updated_at", "2023-02-17 19:42:03.860174"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.860953"], ["updated_at", "2023-02-17 19:42:03.860953"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.861737"], ["updated_at", "2023-02-17 19:42:03.861737"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.862461"], ["updated_at", "2023-02-17 19:42:03.862461"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.863229"], ["updated_at", "2023-02-17 19:42:03.863229"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.863975"], ["updated_at", "2023-02-17 19:42:03.863975"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:03.864801"], ["updated_at", "2023-02-17 19:42:03.864801"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.881833"], ["updated_at", "2023-02-17 19:42:03.881833"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.882887"], ["updated_at", "2023-02-17 19:42:03.882887"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.883841"], ["updated_at", "2023-02-17 19:42:03.883841"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.884695"], ["updated_at", "2023-02-17 19:42:03.884695"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.885525"], ["updated_at", "2023-02-17 19:42:03.885525"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.886283"], ["updated_at", "2023-02-17 19:42:03.886283"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.887258"], ["updated_at", "2023-02-17 19:42:03.887258"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.888333"], ["updated_at", "2023-02-17 19:42:03.888333"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.889180"], ["updated_at", "2023-02-17 19:42:03.889180"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.889919"], ["updated_at", "2023-02-17 19:42:03.889919"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.890643"], ["updated_at", "2023-02-17 19:42:03.890643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.891436"], ["updated_at", "2023-02-17 19:42:03.891436"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.892230"], ["updated_at", "2023-02-17 19:42:03.892230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.892986"], ["updated_at", "2023-02-17 19:42:03.892986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.893734"], ["updated_at", "2023-02-17 19:42:03.893734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:03.894464"], ["updated_at", "2023-02-17 19:42:03.894464"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.911419"], ["updated_at", "2023-02-17 19:42:03.911419"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.912416"], ["updated_at", "2023-02-17 19:42:03.912416"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.913304"], ["updated_at", "2023-02-17 19:42:03.913304"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.914146"], ["updated_at", "2023-02-17 19:42:03.914146"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.914987"], ["updated_at", "2023-02-17 19:42:03.914987"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.915792"], ["updated_at", "2023-02-17 19:42:03.915792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.916702"], ["updated_at", "2023-02-17 19:42:03.916702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.917759"], ["updated_at", "2023-02-17 19:42:03.917759"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.918873"], ["updated_at", "2023-02-17 19:42:03.918873"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.919720"], ["updated_at", "2023-02-17 19:42:03.919720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.920443"], ["updated_at", "2023-02-17 19:42:03.920443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.921213"], ["updated_at", "2023-02-17 19:42:03.921213"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.922092"], ["updated_at", "2023-02-17 19:42:03.922092"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.922875"], ["updated_at", "2023-02-17 19:42:03.922875"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.923588"], ["updated_at", "2023-02-17 19:42:03.923588"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:03.924289"], ["updated_at", "2023-02-17 19:42:03.924289"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.941282"], ["updated_at", "2023-02-17 19:42:03.941282"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.942322"], ["updated_at", "2023-02-17 19:42:03.942322"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.943159"], ["updated_at", "2023-02-17 19:42:03.943159"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.943885"], ["updated_at", "2023-02-17 19:42:03.943885"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.944710"], ["updated_at", "2023-02-17 19:42:03.944710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.945502"], ["updated_at", "2023-02-17 19:42:03.945502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.946487"], ["updated_at", "2023-02-17 19:42:03.946487"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.947524"], ["updated_at", "2023-02-17 19:42:03.947524"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.948341"], ["updated_at", "2023-02-17 19:42:03.948341"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.949103"], ["updated_at", "2023-02-17 19:42:03.949103"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.949837"], ["updated_at", "2023-02-17 19:42:03.949837"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.950662"], ["updated_at", "2023-02-17 19:42:03.950662"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.951465"], ["updated_at", "2023-02-17 19:42:03.951465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.952316"], ["updated_at", "2023-02-17 19:42:03.952316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.953068"], ["updated_at", "2023-02-17 19:42:03.953068"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:03.953792"], ["updated_at", "2023-02-17 19:42:03.953792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:03.970919"], ["updated_at", "2023-02-17 19:42:03.970919"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:03.971948"], ["updated_at", "2023-02-17 19:42:03.971948"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:03.972747"], ["updated_at", "2023-02-17 19:42:03.972747"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:03.973480"], ["updated_at", "2023-02-17 19:42:03.973480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.974277"], ["updated_at", "2023-02-17 19:42:03.974277"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.975063"], ["updated_at", "2023-02-17 19:42:03.975063"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.975944"], ["updated_at", "2023-02-17 19:42:03.975944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.977030"], ["updated_at", "2023-02-17 19:42:03.977030"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.977965"], ["updated_at", "2023-02-17 19:42:03.977965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.978781"], ["updated_at", "2023-02-17 19:42:03.978781"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.979546"], ["updated_at", "2023-02-17 19:42:03.979546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.980328"], ["updated_at", "2023-02-17 19:42:03.980328"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.981086"], ["updated_at", "2023-02-17 19:42:03.981086"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.981826"], ["updated_at", "2023-02-17 19:42:03.981826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.982674"], ["updated_at", "2023-02-17 19:42:03.982674"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:03.983494"], ["updated_at", "2023-02-17 19:42:03.983494"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.000551"], ["updated_at", "2023-02-17 19:42:04.000551"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.001625"], ["updated_at", "2023-02-17 19:42:04.001625"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.002457"], ["updated_at", "2023-02-17 19:42:04.002457"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.003212"], ["updated_at", "2023-02-17 19:42:04.003212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.004045"], ["updated_at", "2023-02-17 19:42:04.004045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.004936"], ["updated_at", "2023-02-17 19:42:04.004936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.005715"], ["updated_at", "2023-02-17 19:42:04.005715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.006738"], ["updated_at", "2023-02-17 19:42:04.006738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.007762"], ["updated_at", "2023-02-17 19:42:04.007762"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.008616"], ["updated_at", "2023-02-17 19:42:04.008616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.009450"], ["updated_at", "2023-02-17 19:42:04.009450"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.010173"], ["updated_at", "2023-02-17 19:42:04.010173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.010892"], ["updated_at", "2023-02-17 19:42:04.010892"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.011613"], ["updated_at", "2023-02-17 19:42:04.011613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.012414"], ["updated_at", "2023-02-17 19:42:04.012414"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.013260"], ["updated_at", "2023-02-17 19:42:04.013260"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:42:04 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:04.022673"], ["updated_at", "2023-02-17 19:42:04.022673"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:42:04.024160"], ["updated_at", "2023-02-17 19:42:04.024160"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:42:04.027741"], ["updated_at", "2023-02-17 19:42:04.027741"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:42:04.029028"], ["updated_at", "2023-02-17 19:42:04.029028"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:42:04.031998"], ["updated_at", "2023-02-17 19:42:04.031998"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:42:04.033287"], ["updated_at", "2023-02-17 19:42:04.033287"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:42:04.035597"], ["updated_at", "2023-02-17 19:42:04.035597"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:42:04.037409"], ["updated_at", "2023-02-17 19:42:04.037409"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:42:04.039216"], ["updated_at", "2023-02-17 19:42:04.039216"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:42:04.040579"], ["updated_at", "2023-02-17 19:42:04.040579"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:42:04.042157"], ["updated_at", "2023-02-17 19:42:04.042157"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:42:04.043439"], ["updated_at", "2023-02-17 19:42:04.043439"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:42:04.044895"], ["updated_at", "2023-02-17 19:42:04.044895"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:42:04.046278"], ["updated_at", "2023-02-17 19:42:04.046278"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:42:04.047945"], ["updated_at", "2023-02-17 19:42:04.047945"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:42:04.049304"], ["updated_at", "2023-02-17 19:42:04.049304"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:42:04.051104"], ["updated_at", "2023-02-17 19:42:04.051104"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:42:04.052602"], ["updated_at", "2023-02-17 19:42:04.052602"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:42:04.054479"], ["updated_at", "2023-02-17 19:42:04.054479"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:42:04.056034"], ["updated_at", "2023-02-17 19:42:04.056034"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:42:04.057910"], ["updated_at", "2023-02-17 19:42:04.057910"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:42:04.059300"], ["updated_at", "2023-02-17 19:42:04.059300"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:42:04.060798"], ["updated_at", "2023-02-17 19:42:04.060798"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:42:04.062045"], ["updated_at", "2023-02-17 19:42:04.062045"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:42:04.063560"], ["updated_at", "2023-02-17 19:42:04.063560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:42:04.065083"], ["updated_at", "2023-02-17 19:42:04.065083"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:42:04.066619"], ["updated_at", "2023-02-17 19:42:04.066619"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:42:04.068361"], ["updated_at", "2023-02-17 19:42:04.068361"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:42:04.069946"], ["updated_at", "2023-02-17 19:42:04.069946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:42:04.071189"], ["updated_at", "2023-02-17 19:42:04.071189"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:42:04.072663"], ["updated_at", "2023-02-17 19:42:04.072663"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:42:04.073978"], ["updated_at", "2023-02-17 19:42:04.073978"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:42:04.075368"], ["updated_at", "2023-02-17 19:42:04.075368"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:42:04.076735"], ["updated_at", "2023-02-17 19:42:04.076735"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:42:04.078375"], ["updated_at", "2023-02-17 19:42:04.078375"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:42:04.079593"], ["updated_at", "2023-02-17 19:42:04.079593"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:42:04.081205"], ["updated_at", "2023-02-17 19:42:04.081205"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:42:04.082490"], ["updated_at", "2023-02-17 19:42:04.082490"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:42:04.083926"], ["updated_at", "2023-02-17 19:42:04.083926"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:42:04.085248"], ["updated_at", "2023-02-17 19:42:04.085248"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:42:04.086760"], ["updated_at", "2023-02-17 19:42:04.086760"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:42:04.088398"], ["updated_at", "2023-02-17 19:42:04.088398"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:42:04.089934"], ["updated_at", "2023-02-17 19:42:04.089934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.091155"], ["updated_at", "2023-02-17 19:42:04.091155"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:42:04.092528"], ["updated_at", "2023-02-17 19:42:04.092528"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:42:04.093783"], ["updated_at", "2023-02-17 19:42:04.093783"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:42:04.095190"], ["updated_at", "2023-02-17 19:42:04.095190"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:42:04.096412"], ["updated_at", "2023-02-17 19:42:04.096412"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:42:04.098350"], ["updated_at", "2023-02-17 19:42:04.098350"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:42:04.099650"], ["updated_at", "2023-02-17 19:42:04.099650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:42:04.101008"], ["updated_at", "2023-02-17 19:42:04.101008"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:42:04.102236"], ["updated_at", "2023-02-17 19:42:04.102236"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:42:04.103681"], ["updated_at", "2023-02-17 19:42:04.103681"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:42:04.104912"], ["updated_at", "2023-02-17 19:42:04.104912"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:42:04.106367"], ["updated_at", "2023-02-17 19:42:04.106367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:42:04.107818"], ["updated_at", "2023-02-17 19:42:04.107818"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:42:04.109246"], ["updated_at", "2023-02-17 19:42:04.109246"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:42:04.110516"], ["updated_at", "2023-02-17 19:42:04.110516"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:42:04.111962"], ["updated_at", "2023-02-17 19:42:04.111962"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:42:04.113141"], ["updated_at", "2023-02-17 19:42:04.113141"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:42:04.114592"], ["updated_at", "2023-02-17 19:42:04.114592"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:42:04.115817"], ["updated_at", "2023-02-17 19:42:04.115817"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:42:04.117406"], ["updated_at", "2023-02-17 19:42:04.117406"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.119042"], ["updated_at", "2023-02-17 19:42:04.119042"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:42:04.120581"], ["updated_at", "2023-02-17 19:42:04.120581"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:42:04.121868"], ["updated_at", "2023-02-17 19:42:04.121868"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:42:04.123635"], ["updated_at", "2023-02-17 19:42:04.123635"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:42:04.124953"], ["updated_at", "2023-02-17 19:42:04.124953"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:42:04.126348"], ["updated_at", "2023-02-17 19:42:04.126348"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.128012"], ["updated_at", "2023-02-17 19:42:04.128012"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:42:04.129591"], ["updated_at", "2023-02-17 19:42:04.129591"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:42:04.130838"], ["updated_at", "2023-02-17 19:42:04.130838"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:42:04.132407"], ["updated_at", "2023-02-17 19:42:04.132407"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:42:04.133616"], ["updated_at", "2023-02-17 19:42:04.133616"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:42:04.135036"], ["updated_at", "2023-02-17 19:42:04.135036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:42:04.136298"], ["updated_at", "2023-02-17 19:42:04.136298"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:42:04.137920"], ["updated_at", "2023-02-17 19:42:04.137920"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:42:04.139293"], ["updated_at", "2023-02-17 19:42:04.139293"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:42:04.140768"], ["updated_at", "2023-02-17 19:42:04.140768"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:42:04.141941"], ["updated_at", "2023-02-17 19:42:04.141941"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:42:04.143329"], ["updated_at", "2023-02-17 19:42:04.143329"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.144563"], ["updated_at", "2023-02-17 19:42:04.144563"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:42:04.146028"], ["updated_at", "2023-02-17 19:42:04.146028"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:42:04.147730"], ["updated_at", "2023-02-17 19:42:04.147730"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:42:04.149237"], ["updated_at", "2023-02-17 19:42:04.149237"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:42:04.150421"], ["updated_at", "2023-02-17 19:42:04.150421"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:42:04.151826"], ["updated_at", "2023-02-17 19:42:04.151826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:42:04.153087"], ["updated_at", "2023-02-17 19:42:04.153087"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:42:04.154522"], ["updated_at", "2023-02-17 19:42:04.154522"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:42:04.155855"], ["updated_at", "2023-02-17 19:42:04.155855"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:42:04.157701"], ["updated_at", "2023-02-17 19:42:04.157701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:42:04.159011"], ["updated_at", "2023-02-17 19:42:04.159011"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:42:04.160548"], ["updated_at", "2023-02-17 19:42:04.160548"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:42:04.161898"], ["updated_at", "2023-02-17 19:42:04.161898"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:42:04.163316"], ["updated_at", "2023-02-17 19:42:04.163316"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:42:04.164474"], ["updated_at", "2023-02-17 19:42:04.164474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:42:04.165844"], ["updated_at", "2023-02-17 19:42:04.165844"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:42:04.167434"], ["updated_at", "2023-02-17 19:42:04.167434"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:42:04.169082"], ["updated_at", "2023-02-17 19:42:04.169082"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:42:04.170402"], ["updated_at", "2023-02-17 19:42:04.170402"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:42:04.171462"], ["updated_at", "2023-02-17 19:42:04.171462"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:04.183180"], ["updated_at", "2023-02-17 19:42:04.183180"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:04.184556"], ["updated_at", "2023-02-17 19:42:04.184556"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:04.185571"], ["updated_at", "2023-02-17 19:42:04.185571"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.186731"], ["updated_at", "2023-02-17 19:42:04.186731"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.187803"], ["updated_at", "2023-02-17 19:42:04.187803"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.188575"], ["updated_at", "2023-02-17 19:42:04.188575"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.189320"], ["updated_at", "2023-02-17 19:42:04.189320"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.190037"], ["updated_at", "2023-02-17 19:42:04.190037"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:04.190817"], ["updated_at", "2023-02-17 19:42:04.190817"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.191766"], ["updated_at", "2023-02-17 19:42:04.191766"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.192635"], ["updated_at", "2023-02-17 19:42:04.192635"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.193458"], ["updated_at", "2023-02-17 19:42:04.193458"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.194265"], ["updated_at", "2023-02-17 19:42:04.194265"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.195002"], ["updated_at", "2023-02-17 19:42:04.195002"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.195761"], ["updated_at", "2023-02-17 19:42:04.195761"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.196670"], ["updated_at", "2023-02-17 19:42:04.196670"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.197637"], ["updated_at", "2023-02-17 19:42:04.197637"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.198516"], ["updated_at", "2023-02-17 19:42:04.198516"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.199374"], ["updated_at", "2023-02-17 19:42:04.199374"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.200126"], ["updated_at", "2023-02-17 19:42:04.200126"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.200837"], ["updated_at", "2023-02-17 19:42:04.200837"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:04.212436"], ["updated_at", "2023-02-17 19:42:04.212436"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:04.213788"], ["updated_at", "2023-02-17 19:42:04.213788"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:04.214803"], ["updated_at", "2023-02-17 19:42:04.214803"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:04.215638"], ["updated_at", "2023-02-17 19:42:04.215638"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:04.216646"], ["updated_at", "2023-02-17 19:42:04.216646"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:04.217678"], ["updated_at", "2023-02-17 19:42:04.217678"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:04.218475"], ["updated_at", "2023-02-17 19:42:04.218475"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:04.219164"], ["updated_at", "2023-02-17 19:42:04.219164"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:04.219970"], ["updated_at", "2023-02-17 19:42:04.219970"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.220956"], ["updated_at", "2023-02-17 19:42:04.220956"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.221916"], ["updated_at", "2023-02-17 19:42:04.221916"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.222735"], ["updated_at", "2023-02-17 19:42:04.222735"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.223489"], ["updated_at", "2023-02-17 19:42:04.223489"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.224216"], ["updated_at", "2023-02-17 19:42:04.224216"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.224963"], ["updated_at", "2023-02-17 19:42:04.224963"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.225699"], ["updated_at", "2023-02-17 19:42:04.225699"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.226625"], ["updated_at", "2023-02-17 19:42:04.226625"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.227532"], ["updated_at", "2023-02-17 19:42:04.227532"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.228319"], ["updated_at", "2023-02-17 19:42:04.228319"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.229145"], ["updated_at", "2023-02-17 19:42:04.229145"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.229943"], ["updated_at", "2023-02-17 19:42:04.229943"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.246122"], ["updated_at", "2023-02-17 19:42:04.246122"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.247355"], ["updated_at", "2023-02-17 19:42:04.247355"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.248243"], ["updated_at", "2023-02-17 19:42:04.248243"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.248977"], ["updated_at", "2023-02-17 19:42:04.248977"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.249745"], ["updated_at", "2023-02-17 19:42:04.249745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.250558"], ["updated_at", "2023-02-17 19:42:04.250558"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.251327"], ["updated_at", "2023-02-17 19:42:04.251327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.252108"], ["updated_at", "2023-02-17 19:42:04.252108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.252825"], ["updated_at", "2023-02-17 19:42:04.252825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.253514"], ["updated_at", "2023-02-17 19:42:04.253514"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.254215"], ["updated_at", "2023-02-17 19:42:04.254215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.254904"], ["updated_at", "2023-02-17 19:42:04.254904"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.255615"], ["updated_at", "2023-02-17 19:42:04.255615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.256377"], ["updated_at", "2023-02-17 19:42:04.256377"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.257125"], ["updated_at", "2023-02-17 19:42:04.257125"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.257845"], ["updated_at", "2023-02-17 19:42:04.257845"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.273675"], ["updated_at", "2023-02-17 19:42:04.273675"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.274716"], ["updated_at", "2023-02-17 19:42:04.274716"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.275484"], ["updated_at", "2023-02-17 19:42:04.275484"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.276501"], ["updated_at", "2023-02-17 19:42:04.276501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.277506"], ["updated_at", "2023-02-17 19:42:04.277506"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.278356"], ["updated_at", "2023-02-17 19:42:04.278356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.279115"], ["updated_at", "2023-02-17 19:42:04.279115"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.279810"], ["updated_at", "2023-02-17 19:42:04.279810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.280528"], ["updated_at", "2023-02-17 19:42:04.280528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.281229"], ["updated_at", "2023-02-17 19:42:04.281229"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.282040"], ["updated_at", "2023-02-17 19:42:04.282040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.282788"], ["updated_at", "2023-02-17 19:42:04.282788"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.283506"], ["updated_at", "2023-02-17 19:42:04.283506"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.284218"], ["updated_at", "2023-02-17 19:42:04.284218"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.284928"], ["updated_at", "2023-02-17 19:42:04.284928"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.285621"], ["updated_at", "2023-02-17 19:42:04.285621"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.301155"], ["updated_at", "2023-02-17 19:42:04.301155"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.302181"], ["updated_at", "2023-02-17 19:42:04.302181"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.302936"], ["updated_at", "2023-02-17 19:42:04.302936"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.303640"], ["updated_at", "2023-02-17 19:42:04.303640"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.304464"], ["updated_at", "2023-02-17 19:42:04.304464"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.305264"], ["updated_at", "2023-02-17 19:42:04.305264"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.305993"], ["updated_at", "2023-02-17 19:42:04.305993"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.306765"], ["updated_at", "2023-02-17 19:42:04.306765"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.307510"], ["updated_at", "2023-02-17 19:42:04.307510"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.308221"], ["updated_at", "2023-02-17 19:42:04.308221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.308957"], ["updated_at", "2023-02-17 19:42:04.308957"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.309673"], ["updated_at", "2023-02-17 19:42:04.309673"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.310373"], ["updated_at", "2023-02-17 19:42:04.310373"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.311088"], ["updated_at", "2023-02-17 19:42:04.311088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.311834"], ["updated_at", "2023-02-17 19:42:04.311834"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.312590"], ["updated_at", "2023-02-17 19:42:04.312590"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.328226"], ["updated_at", "2023-02-17 19:42:04.328226"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.329212"], ["updated_at", "2023-02-17 19:42:04.329212"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.329997"], ["updated_at", "2023-02-17 19:42:04.329997"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.330769"], ["updated_at", "2023-02-17 19:42:04.330769"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.331767"], ["updated_at", "2023-02-17 19:42:04.331767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.332627"], ["updated_at", "2023-02-17 19:42:04.332627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.333480"], ["updated_at", "2023-02-17 19:42:04.333480"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.334304"], ["updated_at", "2023-02-17 19:42:04.334304"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.335040"], ["updated_at", "2023-02-17 19:42:04.335040"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.335736"], ["updated_at", "2023-02-17 19:42:04.335736"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.336431"], ["updated_at", "2023-02-17 19:42:04.336431"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.337215"], ["updated_at", "2023-02-17 19:42:04.337215"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.337966"], ["updated_at", "2023-02-17 19:42:04.337966"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.338672"], ["updated_at", "2023-02-17 19:42:04.338672"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.339356"], ["updated_at", "2023-02-17 19:42:04.339356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.340048"], ["updated_at", "2023-02-17 19:42:04.340048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.356186"], ["updated_at", "2023-02-17 19:42:04.356186"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.357261"], ["updated_at", "2023-02-17 19:42:04.357261"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.358091"], ["updated_at", "2023-02-17 19:42:04.358091"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.358817"], ["updated_at", "2023-02-17 19:42:04.358817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.359567"], ["updated_at", "2023-02-17 19:42:04.359567"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.360302"], ["updated_at", "2023-02-17 19:42:04.360302"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.361030"], ["updated_at", "2023-02-17 19:42:04.361030"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.361741"], ["updated_at", "2023-02-17 19:42:04.361741"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.362437"], ["updated_at", "2023-02-17 19:42:04.362437"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.363121"], ["updated_at", "2023-02-17 19:42:04.363121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.363868"], ["updated_at", "2023-02-17 19:42:04.363868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.364838"], ["updated_at", "2023-02-17 19:42:04.364838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.365802"], ["updated_at", "2023-02-17 19:42:04.365802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.366667"], ["updated_at", "2023-02-17 19:42:04.366667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.367611"], ["updated_at", "2023-02-17 19:42:04.367611"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.368477"], ["updated_at", "2023-02-17 19:42:04.368477"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.385166"], ["updated_at", "2023-02-17 19:42:04.385166"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.386158"], ["updated_at", "2023-02-17 19:42:04.386158"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.386919"], ["updated_at", "2023-02-17 19:42:04.386919"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.387932"], ["updated_at", "2023-02-17 19:42:04.387932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.389031"], ["updated_at", "2023-02-17 19:42:04.389031"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.389852"], ["updated_at", "2023-02-17 19:42:04.389852"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.390573"], ["updated_at", "2023-02-17 19:42:04.390573"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.391288"], ["updated_at", "2023-02-17 19:42:04.391288"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.391978"], ["updated_at", "2023-02-17 19:42:04.391978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.392669"], ["updated_at", "2023-02-17 19:42:04.392669"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.393447"], ["updated_at", "2023-02-17 19:42:04.393447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.394185"], ["updated_at", "2023-02-17 19:42:04.394185"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.394912"], ["updated_at", "2023-02-17 19:42:04.394912"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.395607"], ["updated_at", "2023-02-17 19:42:04.395607"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.396292"], ["updated_at", "2023-02-17 19:42:04.396292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.396996"], ["updated_at", "2023-02-17 19:42:04.396996"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:42:04 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:04.406476"], ["updated_at", "2023-02-17 19:42:04.406476"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:42:04.408144"], ["updated_at", "2023-02-17 19:42:04.408144"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:42:04.411271"], ["updated_at", "2023-02-17 19:42:04.411271"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:42:04.412456"], ["updated_at", "2023-02-17 19:42:04.412456"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:42:04.415536"], ["updated_at", "2023-02-17 19:42:04.415536"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:42:04.416896"], ["updated_at", "2023-02-17 19:42:04.416896"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:42:04.419457"], ["updated_at", "2023-02-17 19:42:04.419457"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:42:04.420973"], ["updated_at", "2023-02-17 19:42:04.420973"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:42:04.422600"], ["updated_at", "2023-02-17 19:42:04.422600"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:42:04.423996"], ["updated_at", "2023-02-17 19:42:04.423996"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:42:04.425442"], ["updated_at", "2023-02-17 19:42:04.425442"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:42:04.426637"], ["updated_at", "2023-02-17 19:42:04.426637"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:42:04.428193"], ["updated_at", "2023-02-17 19:42:04.428193"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:42:04.429508"], ["updated_at", "2023-02-17 19:42:04.429508"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:42:04.430977"], ["updated_at", "2023-02-17 19:42:04.430977"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:42:04.432478"], ["updated_at", "2023-02-17 19:42:04.432478"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:42:04.434057"], ["updated_at", "2023-02-17 19:42:04.434057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:42:04.435299"], ["updated_at", "2023-02-17 19:42:04.435299"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:42:04.436702"], ["updated_at", "2023-02-17 19:42:04.436702"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:42:04.438144"], ["updated_at", "2023-02-17 19:42:04.438144"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:42:04.439882"], ["updated_at", "2023-02-17 19:42:04.439882"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:42:04.441131"], ["updated_at", "2023-02-17 19:42:04.441131"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:42:04.442549"], ["updated_at", "2023-02-17 19:42:04.442549"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:42:04.443765"], ["updated_at", "2023-02-17 19:42:04.443765"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:42:04.445136"], ["updated_at", "2023-02-17 19:42:04.445136"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:42:04.446342"], ["updated_at", "2023-02-17 19:42:04.446342"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:42:04.447925"], ["updated_at", "2023-02-17 19:42:04.447925"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:42:04.449674"], ["updated_at", "2023-02-17 19:42:04.449674"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:42:04.451389"], ["updated_at", "2023-02-17 19:42:04.451389"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:42:04.452679"], ["updated_at", "2023-02-17 19:42:04.452679"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:42:04.459382"], ["updated_at", "2023-02-17 19:42:04.459382"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:42:04.460644"], ["updated_at", "2023-02-17 19:42:04.460644"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:42:04.462093"], ["updated_at", "2023-02-17 19:42:04.462093"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:42:04.463335"], ["updated_at", "2023-02-17 19:42:04.463335"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:42:04.465038"], ["updated_at", "2023-02-17 19:42:04.465038"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:42:04.466384"], ["updated_at", "2023-02-17 19:42:04.466384"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:42:04.468031"], ["updated_at", "2023-02-17 19:42:04.468031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:42:04.469620"], ["updated_at", "2023-02-17 19:42:04.469620"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:42:04.471039"], ["updated_at", "2023-02-17 19:42:04.471039"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:42:04.472236"], ["updated_at", "2023-02-17 19:42:04.472236"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:42:04.473646"], ["updated_at", "2023-02-17 19:42:04.473646"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:42:04.474799"], ["updated_at", "2023-02-17 19:42:04.474799"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:42:04.476155"], ["updated_at", "2023-02-17 19:42:04.476155"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.477323"], ["updated_at", "2023-02-17 19:42:04.477323"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:42:04.479467"], ["updated_at", "2023-02-17 19:42:04.479467"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:42:04.480828"], ["updated_at", "2023-02-17 19:42:04.480828"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:42:04.482243"], ["updated_at", "2023-02-17 19:42:04.482243"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:42:04.483569"], ["updated_at", "2023-02-17 19:42:04.483569"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:42:04.485012"], ["updated_at", "2023-02-17 19:42:04.485012"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:42:04.486181"], ["updated_at", "2023-02-17 19:42:04.486181"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:42:04.487676"], ["updated_at", "2023-02-17 19:42:04.487676"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:42:04.489263"], ["updated_at", "2023-02-17 19:42:04.489263"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:42:04.491107"], ["updated_at", "2023-02-17 19:42:04.491107"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:42:04.492452"], ["updated_at", "2023-02-17 19:42:04.492452"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:42:04.493866"], ["updated_at", "2023-02-17 19:42:04.493866"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:42:04.495052"], ["updated_at", "2023-02-17 19:42:04.495052"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:42:04.496379"], ["updated_at", "2023-02-17 19:42:04.496379"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:42:04.497720"], ["updated_at", "2023-02-17 19:42:04.497720"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:42:04.499594"], ["updated_at", "2023-02-17 19:42:04.499594"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:42:04.501009"], ["updated_at", "2023-02-17 19:42:04.501009"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:42:04.502413"], ["updated_at", "2023-02-17 19:42:04.502413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:42:04.503611"], ["updated_at", "2023-02-17 19:42:04.503611"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:42:04.505004"], ["updated_at", "2023-02-17 19:42:04.505004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.506314"], ["updated_at", "2023-02-17 19:42:04.506314"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:42:04.508262"], ["updated_at", "2023-02-17 19:42:04.508262"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:42:04.509938"], ["updated_at", "2023-02-17 19:42:04.509938"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:42:04.511383"], ["updated_at", "2023-02-17 19:42:04.511383"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:42:04.512531"], ["updated_at", "2023-02-17 19:42:04.512531"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:42:04.514061"], ["updated_at", "2023-02-17 19:42:04.514061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.515315"], ["updated_at", "2023-02-17 19:42:04.515315"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:42:04.516664"], ["updated_at", "2023-02-17 19:42:04.516664"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:42:04.518115"], ["updated_at", "2023-02-17 19:42:04.518115"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:42:04.519707"], ["updated_at", "2023-02-17 19:42:04.519707"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:42:04.521042"], ["updated_at", "2023-02-17 19:42:04.521042"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:42:04.522480"], ["updated_at", "2023-02-17 19:42:04.522480"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:42:04.524090"], ["updated_at", "2023-02-17 19:42:04.524090"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:42:04.525839"], ["updated_at", "2023-02-17 19:42:04.525839"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:42:04.527074"], ["updated_at", "2023-02-17 19:42:04.527074"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:42:04.528730"], ["updated_at", "2023-02-17 19:42:04.528730"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:42:04.530235"], ["updated_at", "2023-02-17 19:42:04.530235"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:42:04.531751"], ["updated_at", "2023-02-17 19:42:04.531751"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.532973"], ["updated_at", "2023-02-17 19:42:04.532973"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:42:04.534541"], ["updated_at", "2023-02-17 19:42:04.534541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:42:04.535748"], ["updated_at", "2023-02-17 19:42:04.535748"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:42:04.537065"], ["updated_at", "2023-02-17 19:42:04.537065"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:42:04.538479"], ["updated_at", "2023-02-17 19:42:04.538479"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:42:04.540192"], ["updated_at", "2023-02-17 19:42:04.540192"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:42:04.541572"], ["updated_at", "2023-02-17 19:42:04.541572"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:42:04.543458"], ["updated_at", "2023-02-17 19:42:04.543458"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:42:04.545125"], ["updated_at", "2023-02-17 19:42:04.545125"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:42:04.546632"], ["updated_at", "2023-02-17 19:42:04.546632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:42:04.548032"], ["updated_at", "2023-02-17 19:42:04.548032"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:42:04.549650"], ["updated_at", "2023-02-17 19:42:04.549650"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:42:04.550895"], ["updated_at", "2023-02-17 19:42:04.550895"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:42:04.552228"], ["updated_at", "2023-02-17 19:42:04.552228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:42:04.553485"], ["updated_at", "2023-02-17 19:42:04.553485"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:42:04.554744"], ["updated_at", "2023-02-17 19:42:04.554744"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:42:04.556161"], ["updated_at", "2023-02-17 19:42:04.556161"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:42:04.558134"], ["updated_at", "2023-02-17 19:42:04.558134"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:42:04.559785"], ["updated_at", "2023-02-17 19:42:04.559785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:42:04.561066"], ["updated_at", "2023-02-17 19:42:04.561066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:04.573824"], ["updated_at", "2023-02-17 19:42:04.573824"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:04.575285"], ["updated_at", "2023-02-17 19:42:04.575285"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:04.576319"], ["updated_at", "2023-02-17 19:42:04.576319"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.577213"], ["updated_at", "2023-02-17 19:42:04.577213"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.578099"], ["updated_at", "2023-02-17 19:42:04.578099"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.578987"], ["updated_at", "2023-02-17 19:42:04.578987"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.579722"], ["updated_at", "2023-02-17 19:42:04.579722"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.580431"], ["updated_at", "2023-02-17 19:42:04.580431"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:04.581341"], ["updated_at", "2023-02-17 19:42:04.581341"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.582342"], ["updated_at", "2023-02-17 19:42:04.582342"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.583241"], ["updated_at", "2023-02-17 19:42:04.583241"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.584087"], ["updated_at", "2023-02-17 19:42:04.584087"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.585112"], ["updated_at", "2023-02-17 19:42:04.585112"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.586206"], ["updated_at", "2023-02-17 19:42:04.586206"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.587218"], ["updated_at", "2023-02-17 19:42:04.587218"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.588438"], ["updated_at", "2023-02-17 19:42:04.588438"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.589615"], ["updated_at", "2023-02-17 19:42:04.589615"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.590825"], ["updated_at", "2023-02-17 19:42:04.590825"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.591882"], ["updated_at", "2023-02-17 19:42:04.591882"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.592719"], ["updated_at", "2023-02-17 19:42:04.592719"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.593513"], ["updated_at", "2023-02-17 19:42:04.593513"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:04.605895"], ["updated_at", "2023-02-17 19:42:04.605895"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:04.607184"], ["updated_at", "2023-02-17 19:42:04.607184"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:04.608283"], ["updated_at", "2023-02-17 19:42:04.608283"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:04.609522"], ["updated_at", "2023-02-17 19:42:04.609522"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:04.610384"], ["updated_at", "2023-02-17 19:42:04.610384"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:04.611100"], ["updated_at", "2023-02-17 19:42:04.611100"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:04.612120"], ["updated_at", "2023-02-17 19:42:04.612120"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:04.612924"], ["updated_at", "2023-02-17 19:42:04.612924"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:04.613774"], ["updated_at", "2023-02-17 19:42:04.613774"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.614777"], ["updated_at", "2023-02-17 19:42:04.614777"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.615638"], ["updated_at", "2023-02-17 19:42:04.615638"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.616396"], ["updated_at", "2023-02-17 19:42:04.616396"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.617168"], ["updated_at", "2023-02-17 19:42:04.617168"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.618109"], ["updated_at", "2023-02-17 19:42:04.618109"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.619576"], ["updated_at", "2023-02-17 19:42:04.619576"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.620595"], ["updated_at", "2023-02-17 19:42:04.620595"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.621391"], ["updated_at", "2023-02-17 19:42:04.621391"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.622118"], ["updated_at", "2023-02-17 19:42:04.622118"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.622890"], ["updated_at", "2023-02-17 19:42:04.622890"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.623658"], ["updated_at", "2023-02-17 19:42:04.623658"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:04.624421"], ["updated_at", "2023-02-17 19:42:04.624421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (1.7ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.645590"], ["updated_at", "2023-02-17 19:42:04.645590"]]
QuestionAnswer Create (1.4ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.648400"], ["updated_at", "2023-02-17 19:42:04.648400"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.650953"], ["updated_at", "2023-02-17 19:42:04.650953"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.652052"], ["updated_at", "2023-02-17 19:42:04.652052"]]
LikertScaleAnswer Create (1.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.653214"], ["updated_at", "2023-02-17 19:42:04.653214"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.655526"], ["updated_at", "2023-02-17 19:42:04.655526"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.656490"], ["updated_at", "2023-02-17 19:42:04.656490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.657401"], ["updated_at", "2023-02-17 19:42:04.657401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.658316"], ["updated_at", "2023-02-17 19:42:04.658316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.659498"], ["updated_at", "2023-02-17 19:42:04.659498"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.660529"], ["updated_at", "2023-02-17 19:42:04.660529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.661452"], ["updated_at", "2023-02-17 19:42:04.661452"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.662384"], ["updated_at", "2023-02-17 19:42:04.662384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.663232"], ["updated_at", "2023-02-17 19:42:04.663232"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.664137"], ["updated_at", "2023-02-17 19:42:04.664137"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:04.665137"], ["updated_at", "2023-02-17 19:42:04.665137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.681419"], ["updated_at", "2023-02-17 19:42:04.681419"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.682432"], ["updated_at", "2023-02-17 19:42:04.682432"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.683215"], ["updated_at", "2023-02-17 19:42:04.683215"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.683931"], ["updated_at", "2023-02-17 19:42:04.683931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.684660"], ["updated_at", "2023-02-17 19:42:04.684660"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.685410"], ["updated_at", "2023-02-17 19:42:04.685410"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.686148"], ["updated_at", "2023-02-17 19:42:04.686148"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.686832"], ["updated_at", "2023-02-17 19:42:04.686832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.687529"], ["updated_at", "2023-02-17 19:42:04.687529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.688214"], ["updated_at", "2023-02-17 19:42:04.688214"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.689199"], ["updated_at", "2023-02-17 19:42:04.689199"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.690362"], ["updated_at", "2023-02-17 19:42:04.690362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.691303"], ["updated_at", "2023-02-17 19:42:04.691303"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.692025"], ["updated_at", "2023-02-17 19:42:04.692025"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.692734"], ["updated_at", "2023-02-17 19:42:04.692734"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:04.693459"], ["updated_at", "2023-02-17 19:42:04.693459"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.709231"], ["updated_at", "2023-02-17 19:42:04.709231"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.710436"], ["updated_at", "2023-02-17 19:42:04.710436"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.711259"], ["updated_at", "2023-02-17 19:42:04.711259"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.711971"], ["updated_at", "2023-02-17 19:42:04.711971"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.712744"], ["updated_at", "2023-02-17 19:42:04.712744"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.713496"], ["updated_at", "2023-02-17 19:42:04.713496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.714245"], ["updated_at", "2023-02-17 19:42:04.714245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.715003"], ["updated_at", "2023-02-17 19:42:04.715003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.715736"], ["updated_at", "2023-02-17 19:42:04.715736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.716477"], ["updated_at", "2023-02-17 19:42:04.716477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.717213"], ["updated_at", "2023-02-17 19:42:04.717213"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.717918"], ["updated_at", "2023-02-17 19:42:04.717918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.718698"], ["updated_at", "2023-02-17 19:42:04.718698"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.719798"], ["updated_at", "2023-02-17 19:42:04.719798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.720710"], ["updated_at", "2023-02-17 19:42:04.720710"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:04.721536"], ["updated_at", "2023-02-17 19:42:04.721536"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.738146"], ["updated_at", "2023-02-17 19:42:04.738146"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.739536"], ["updated_at", "2023-02-17 19:42:04.739536"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.740671"], ["updated_at", "2023-02-17 19:42:04.740671"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.741703"], ["updated_at", "2023-02-17 19:42:04.741703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.742528"], ["updated_at", "2023-02-17 19:42:04.742528"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.743310"], ["updated_at", "2023-02-17 19:42:04.743310"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.744026"], ["updated_at", "2023-02-17 19:42:04.744026"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.744703"], ["updated_at", "2023-02-17 19:42:04.744703"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.745426"], ["updated_at", "2023-02-17 19:42:04.745426"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.746132"], ["updated_at", "2023-02-17 19:42:04.746132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.746820"], ["updated_at", "2023-02-17 19:42:04.746820"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.747545"], ["updated_at", "2023-02-17 19:42:04.747545"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.748247"], ["updated_at", "2023-02-17 19:42:04.748247"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.749046"], ["updated_at", "2023-02-17 19:42:04.749046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.749784"], ["updated_at", "2023-02-17 19:42:04.749784"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:04.750563"], ["updated_at", "2023-02-17 19:42:04.750563"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.766910"], ["updated_at", "2023-02-17 19:42:04.766910"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.767916"], ["updated_at", "2023-02-17 19:42:04.767916"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.768735"], ["updated_at", "2023-02-17 19:42:04.768735"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.769552"], ["updated_at", "2023-02-17 19:42:04.769552"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.770378"], ["updated_at", "2023-02-17 19:42:04.770378"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.771132"], ["updated_at", "2023-02-17 19:42:04.771132"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.771828"], ["updated_at", "2023-02-17 19:42:04.771828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.772529"], ["updated_at", "2023-02-17 19:42:04.772529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.773259"], ["updated_at", "2023-02-17 19:42:04.773259"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.774046"], ["updated_at", "2023-02-17 19:42:04.774046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.774813"], ["updated_at", "2023-02-17 19:42:04.774813"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.775727"], ["updated_at", "2023-02-17 19:42:04.775727"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.776707"], ["updated_at", "2023-02-17 19:42:04.776707"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.777718"], ["updated_at", "2023-02-17 19:42:04.777718"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.778838"], ["updated_at", "2023-02-17 19:42:04.778838"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:04.779920"], ["updated_at", "2023-02-17 19:42:04.779920"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:04.797814"], ["updated_at", "2023-02-17 19:42:04.797814"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:04.799071"], ["updated_at", "2023-02-17 19:42:04.799071"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:04.800189"], ["updated_at", "2023-02-17 19:42:04.800189"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:04.801343"], ["updated_at", "2023-02-17 19:42:04.801343"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.802465"], ["updated_at", "2023-02-17 19:42:04.802465"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.803532"], ["updated_at", "2023-02-17 19:42:04.803532"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.804585"], ["updated_at", "2023-02-17 19:42:04.804585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.805742"], ["updated_at", "2023-02-17 19:42:04.805742"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.806846"], ["updated_at", "2023-02-17 19:42:04.806846"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.807936"], ["updated_at", "2023-02-17 19:42:04.807936"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.809077"], ["updated_at", "2023-02-17 19:42:04.809077"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.810216"], ["updated_at", "2023-02-17 19:42:04.810216"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.811312"], ["updated_at", "2023-02-17 19:42:04.811312"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.812561"], ["updated_at", "2023-02-17 19:42:04.812561"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.813733"], ["updated_at", "2023-02-17 19:42:04.813733"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:04.814850"], ["updated_at", "2023-02-17 19:42:04.814850"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:42:04 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.2ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.2ms | Allocations: 532)

TRANSACTION (0.4ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (2.0ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:42:04.827312"], ["updated_at", "2023-02-17 19:42:04.827312"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.9ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:42:04.831082"], ["updated_at", "2023-02-17 19:42:04.831082"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:42:04.836375"], ["updated_at", "2023-02-17 19:42:04.836375"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:42:04.838008"], ["updated_at", "2023-02-17 19:42:04.838008"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:42:04.842425"], ["updated_at", "2023-02-17 19:42:04.842425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:42:04.844045"], ["updated_at", "2023-02-17 19:42:04.844045"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.5ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:42:04.847007"], ["updated_at", "2023-02-17 19:42:04.847007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (1.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:42:04.849495"], ["updated_at", "2023-02-17 19:42:04.849495"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (1.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:42:04.852968"], ["updated_at", "2023-02-17 19:42:04.852968"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:42:04.856136"], ["updated_at", "2023-02-17 19:42:04.856136"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:42:04.858242"], ["updated_at", "2023-02-17 19:42:04.858242"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:42:04.860232"], ["updated_at", "2023-02-17 19:42:04.860232"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:42:04.862291"], ["updated_at", "2023-02-17 19:42:04.862291"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:42:04.864175"], ["updated_at", "2023-02-17 19:42:04.864175"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:42:04.866251"], ["updated_at", "2023-02-17 19:42:04.866251"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:42:04.868154"], ["updated_at", "2023-02-17 19:42:04.868154"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:42:04.870357"], ["updated_at", "2023-02-17 19:42:04.870357"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:42:04.872222"], ["updated_at", "2023-02-17 19:42:04.872222"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:42:04.874361"], ["updated_at", "2023-02-17 19:42:04.874361"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:42:04.876240"], ["updated_at", "2023-02-17 19:42:04.876240"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:42:04.878312"], ["updated_at", "2023-02-17 19:42:04.878312"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:42:04.880242"], ["updated_at", "2023-02-17 19:42:04.880242"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:42:04.882293"], ["updated_at", "2023-02-17 19:42:04.882293"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:42:04.884129"], ["updated_at", "2023-02-17 19:42:04.884129"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:42:04.886165"], ["updated_at", "2023-02-17 19:42:04.886165"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:42:04.887974"], ["updated_at", "2023-02-17 19:42:04.887974"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:42:04.890209"], ["updated_at", "2023-02-17 19:42:04.890209"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:42:04.892108"], ["updated_at", "2023-02-17 19:42:04.892108"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:42:04.894178"], ["updated_at", "2023-02-17 19:42:04.894178"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:42:04.895892"], ["updated_at", "2023-02-17 19:42:04.895892"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:42:04.897739"], ["updated_at", "2023-02-17 19:42:04.897739"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:42:04.899383"], ["updated_at", "2023-02-17 19:42:04.899383"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:42:04.901298"], ["updated_at", "2023-02-17 19:42:04.901298"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:42:04.902909"], ["updated_at", "2023-02-17 19:42:04.902909"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:42:04.904667"], ["updated_at", "2023-02-17 19:42:04.904667"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:42:04.906534"], ["updated_at", "2023-02-17 19:42:04.906534"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:42:04.908448"], ["updated_at", "2023-02-17 19:42:04.908448"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:42:04.910674"], ["updated_at", "2023-02-17 19:42:04.910674"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:42:04.912812"], ["updated_at", "2023-02-17 19:42:04.912812"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:42:04.914707"], ["updated_at", "2023-02-17 19:42:04.914707"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.3ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:42:04.916721"], ["updated_at", "2023-02-17 19:42:04.916721"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:42:04.918914"], ["updated_at", "2023-02-17 19:42:04.918914"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:42:04.921328"], ["updated_at", "2023-02-17 19:42:04.921328"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.923294"], ["updated_at", "2023-02-17 19:42:04.923294"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:42:04.925585"], ["updated_at", "2023-02-17 19:42:04.925585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:42:04.927529"], ["updated_at", "2023-02-17 19:42:04.927529"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:42:04.929761"], ["updated_at", "2023-02-17 19:42:04.929761"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:42:04.931800"], ["updated_at", "2023-02-17 19:42:04.931800"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:42:04.934732"], ["updated_at", "2023-02-17 19:42:04.934732"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:42:04.936680"], ["updated_at", "2023-02-17 19:42:04.936680"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:42:04.938865"], ["updated_at", "2023-02-17 19:42:04.938865"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:42:04.940761"], ["updated_at", "2023-02-17 19:42:04.940761"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:42:04.942858"], ["updated_at", "2023-02-17 19:42:04.942858"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.6ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:42:04.944676"], ["updated_at", "2023-02-17 19:42:04.944676"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:42:04.947361"], ["updated_at", "2023-02-17 19:42:04.947361"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:42:04.949737"], ["updated_at", "2023-02-17 19:42:04.949737"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:42:04.952088"], ["updated_at", "2023-02-17 19:42:04.952088"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:42:04.953877"], ["updated_at", "2023-02-17 19:42:04.953877"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:42:04.955783"], ["updated_at", "2023-02-17 19:42:04.955783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:42:04.957545"], ["updated_at", "2023-02-17 19:42:04.957545"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:42:04.959399"], ["updated_at", "2023-02-17 19:42:04.959399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:42:04.961235"], ["updated_at", "2023-02-17 19:42:04.961235"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:42:04.962999"], ["updated_at", "2023-02-17 19:42:04.962999"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.964847"], ["updated_at", "2023-02-17 19:42:04.964847"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:42:04.966594"], ["updated_at", "2023-02-17 19:42:04.966594"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:42:04.968264"], ["updated_at", "2023-02-17 19:42:04.968264"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:42:04.970162"], ["updated_at", "2023-02-17 19:42:04.970162"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:42:04.972324"], ["updated_at", "2023-02-17 19:42:04.972324"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:42:04.974138"], ["updated_at", "2023-02-17 19:42:04.974138"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.975835"], ["updated_at", "2023-02-17 19:42:04.975835"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:42:04.977629"], ["updated_at", "2023-02-17 19:42:04.977629"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:42:04.979421"], ["updated_at", "2023-02-17 19:42:04.979421"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:42:04.981381"], ["updated_at", "2023-02-17 19:42:04.981381"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:42:04.982980"], ["updated_at", "2023-02-17 19:42:04.982980"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:42:04.985006"], ["updated_at", "2023-02-17 19:42:04.985006"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:42:04.986609"], ["updated_at", "2023-02-17 19:42:04.986609"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:42:04.988450"], ["updated_at", "2023-02-17 19:42:04.988450"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:42:04.990223"], ["updated_at", "2023-02-17 19:42:04.990223"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:42:04.992095"], ["updated_at", "2023-02-17 19:42:04.992095"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:42:04.993718"], ["updated_at", "2023-02-17 19:42:04.993718"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:42:04.995411"], ["updated_at", "2023-02-17 19:42:04.995411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:42:04.997181"], ["updated_at", "2023-02-17 19:42:04.997181"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:42:04.998945"], ["updated_at", "2023-02-17 19:42:04.998945"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:42:05.000672"], ["updated_at", "2023-02-17 19:42:05.000672"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:42:05.002447"], ["updated_at", "2023-02-17 19:42:05.002447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:42:05.004217"], ["updated_at", "2023-02-17 19:42:05.004217"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:42:05.006000"], ["updated_at", "2023-02-17 19:42:05.006000"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:42:05.007541"], ["updated_at", "2023-02-17 19:42:05.007541"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:42:05.009269"], ["updated_at", "2023-02-17 19:42:05.009269"]]
TRANSACTION (0.2ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:42:05.011485"], ["updated_at", "2023-02-17 19:42:05.011485"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:42:05.013400"], ["updated_at", "2023-02-17 19:42:05.013400"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:42:05.014986"], ["updated_at", "2023-02-17 19:42:05.014986"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:42:05.016802"], ["updated_at", "2023-02-17 19:42:05.016802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:42:05.018618"], ["updated_at", "2023-02-17 19:42:05.018618"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:42:05.020744"], ["updated_at", "2023-02-17 19:42:05.020744"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:42:05.022484"], ["updated_at", "2023-02-17 19:42:05.022484"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:42:05.024084"], ["updated_at", "2023-02-17 19:42:05.024084"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:42:05.026562"], ["updated_at", "2023-02-17 19:42:05.026562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.5ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:42:05.028508"], ["updated_at", "2023-02-17 19:42:05.028508"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:42:05.030604"], ["updated_at", "2023-02-17 19:42:05.030604"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:42:05.032338"], ["updated_at", "2023-02-17 19:42:05.032338"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (1.0ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:05.046765"], ["updated_at", "2023-02-17 19:42:05.046765"], ["role_id", 2]]
SurveyQuestion Create (1.5ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:05.049142"], ["updated_at", "2023-02-17 19:42:05.049142"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:05.051879"], ["updated_at", "2023-02-17 19:42:05.051879"]]
QuestionOption Create (1.0ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.053080"], ["updated_at", "2023-02-17 19:42:05.053080"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.054938"], ["updated_at", "2023-02-17 19:42:05.054938"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.056133"], ["updated_at", "2023-02-17 19:42:05.056133"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.057117"], ["updated_at", "2023-02-17 19:42:05.057117"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.057963"], ["updated_at", "2023-02-17 19:42:05.057963"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:05.058868"], ["updated_at", "2023-02-17 19:42:05.058868"]]
LikertScaleQuestion Create (0.6ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.059884"], ["updated_at", "2023-02-17 19:42:05.059884"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.061383"], ["updated_at", "2023-02-17 19:42:05.061383"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.062433"], ["updated_at", "2023-02-17 19:42:05.062433"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.063228"], ["updated_at", "2023-02-17 19:42:05.063228"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.063993"], ["updated_at", "2023-02-17 19:42:05.063993"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.064772"], ["updated_at", "2023-02-17 19:42:05.064772"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.065575"], ["updated_at", "2023-02-17 19:42:05.065575"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.066630"], ["updated_at", "2023-02-17 19:42:05.066630"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.067535"], ["updated_at", "2023-02-17 19:42:05.067535"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.068322"], ["updated_at", "2023-02-17 19:42:05.068322"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.069183"], ["updated_at", "2023-02-17 19:42:05.069183"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.070269"], ["updated_at", "2023-02-17 19:42:05.070269"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.2ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:42:05.084344"], ["updated_at", "2023-02-17 19:42:05.084344"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:42:05.085712"], ["updated_at", "2023-02-17 19:42:05.085712"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:42:05.086638"], ["updated_at", "2023-02-17 19:42:05.086638"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:05.087575"], ["updated_at", "2023-02-17 19:42:05.087575"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:05.088344"], ["updated_at", "2023-02-17 19:42:05.088344"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:05.089080"], ["updated_at", "2023-02-17 19:42:05.089080"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:05.089972"], ["updated_at", "2023-02-17 19:42:05.089972"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:42:05.091275"], ["updated_at", "2023-02-17 19:42:05.091275"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:42:05.092367"], ["updated_at", "2023-02-17 19:42:05.092367"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.093420"], ["updated_at", "2023-02-17 19:42:05.093420"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.094311"], ["updated_at", "2023-02-17 19:42:05.094311"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.095153"], ["updated_at", "2023-02-17 19:42:05.095153"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.095942"], ["updated_at", "2023-02-17 19:42:05.095942"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.096704"], ["updated_at", "2023-02-17 19:42:05.096704"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.097558"], ["updated_at", "2023-02-17 19:42:05.097558"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.098785"], ["updated_at", "2023-02-17 19:42:05.098785"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.099757"], ["updated_at", "2023-02-17 19:42:05.099757"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.100850"], ["updated_at", "2023-02-17 19:42:05.100850"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.102025"], ["updated_at", "2023-02-17 19:42:05.102025"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.102966"], ["updated_at", "2023-02-17 19:42:05.102966"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:42:05.103726"], ["updated_at", "2023-02-17 19:42:05.103726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:05.121284"], ["updated_at", "2023-02-17 19:42:05.121284"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:05.122524"], ["updated_at", "2023-02-17 19:42:05.122524"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.123426"], ["updated_at", "2023-02-17 19:42:05.123426"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.124167"], ["updated_at", "2023-02-17 19:42:05.124167"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.125016"], ["updated_at", "2023-02-17 19:42:05.125016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.125906"], ["updated_at", "2023-02-17 19:42:05.125906"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.126643"], ["updated_at", "2023-02-17 19:42:05.126643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.127381"], ["updated_at", "2023-02-17 19:42:05.127381"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.128250"], ["updated_at", "2023-02-17 19:42:05.128250"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.129139"], ["updated_at", "2023-02-17 19:42:05.129139"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.129931"], ["updated_at", "2023-02-17 19:42:05.129931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.130815"], ["updated_at", "2023-02-17 19:42:05.130815"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.131956"], ["updated_at", "2023-02-17 19:42:05.131956"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.132938"], ["updated_at", "2023-02-17 19:42:05.132938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.133761"], ["updated_at", "2023-02-17 19:42:05.133761"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:42:05.134523"], ["updated_at", "2023-02-17 19:42:05.134523"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:05.151085"], ["updated_at", "2023-02-17 19:42:05.151085"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:05.152244"], ["updated_at", "2023-02-17 19:42:05.152244"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.153106"], ["updated_at", "2023-02-17 19:42:05.153106"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.153925"], ["updated_at", "2023-02-17 19:42:05.153925"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.154690"], ["updated_at", "2023-02-17 19:42:05.154690"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.155441"], ["updated_at", "2023-02-17 19:42:05.155441"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.156186"], ["updated_at", "2023-02-17 19:42:05.156186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.156899"], ["updated_at", "2023-02-17 19:42:05.156899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.157624"], ["updated_at", "2023-02-17 19:42:05.157624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.158375"], ["updated_at", "2023-02-17 19:42:05.158375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.159106"], ["updated_at", "2023-02-17 19:42:05.159106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.159819"], ["updated_at", "2023-02-17 19:42:05.159819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.160508"], ["updated_at", "2023-02-17 19:42:05.160508"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.161574"], ["updated_at", "2023-02-17 19:42:05.161574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.162590"], ["updated_at", "2023-02-17 19:42:05.162590"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:42:05.163360"], ["updated_at", "2023-02-17 19:42:05.163360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:05.179709"], ["updated_at", "2023-02-17 19:42:05.179709"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:05.180845"], ["updated_at", "2023-02-17 19:42:05.180845"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.181821"], ["updated_at", "2023-02-17 19:42:05.181821"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.182615"], ["updated_at", "2023-02-17 19:42:05.182615"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.183398"], ["updated_at", "2023-02-17 19:42:05.183398"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.184217"], ["updated_at", "2023-02-17 19:42:05.184217"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.184986"], ["updated_at", "2023-02-17 19:42:05.184986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.185691"], ["updated_at", "2023-02-17 19:42:05.185691"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.186407"], ["updated_at", "2023-02-17 19:42:05.186407"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.187138"], ["updated_at", "2023-02-17 19:42:05.187138"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.187847"], ["updated_at", "2023-02-17 19:42:05.187847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.188558"], ["updated_at", "2023-02-17 19:42:05.188558"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.189265"], ["updated_at", "2023-02-17 19:42:05.189265"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.190003"], ["updated_at", "2023-02-17 19:42:05.190003"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.190706"], ["updated_at", "2023-02-17 19:42:05.190706"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:42:05.191759"], ["updated_at", "2023-02-17 19:42:05.191759"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:05.209093"], ["updated_at", "2023-02-17 19:42:05.209093"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:05.210191"], ["updated_at", "2023-02-17 19:42:05.210191"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.211209"], ["updated_at", "2023-02-17 19:42:05.211209"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.212141"], ["updated_at", "2023-02-17 19:42:05.212141"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.212986"], ["updated_at", "2023-02-17 19:42:05.212986"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.213714"], ["updated_at", "2023-02-17 19:42:05.213714"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.214585"], ["updated_at", "2023-02-17 19:42:05.214585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.215355"], ["updated_at", "2023-02-17 19:42:05.215355"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.216097"], ["updated_at", "2023-02-17 19:42:05.216097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.216889"], ["updated_at", "2023-02-17 19:42:05.216889"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.217658"], ["updated_at", "2023-02-17 19:42:05.217658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.218415"], ["updated_at", "2023-02-17 19:42:05.218415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.219127"], ["updated_at", "2023-02-17 19:42:05.219127"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.219826"], ["updated_at", "2023-02-17 19:42:05.219826"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.220632"], ["updated_at", "2023-02-17 19:42:05.220632"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:42:05.221653"], ["updated_at", "2023-02-17 19:42:05.221653"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:05.239196"], ["updated_at", "2023-02-17 19:42:05.239196"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:05.240175"], ["updated_at", "2023-02-17 19:42:05.240175"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.240926"], ["updated_at", "2023-02-17 19:42:05.240926"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.241982"], ["updated_at", "2023-02-17 19:42:05.241982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.242869"], ["updated_at", "2023-02-17 19:42:05.242869"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.243629"], ["updated_at", "2023-02-17 19:42:05.243629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.244316"], ["updated_at", "2023-02-17 19:42:05.244316"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.245036"], ["updated_at", "2023-02-17 19:42:05.245036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.245878"], ["updated_at", "2023-02-17 19:42:05.245878"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.246616"], ["updated_at", "2023-02-17 19:42:05.246616"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.247402"], ["updated_at", "2023-02-17 19:42:05.247402"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.248164"], ["updated_at", "2023-02-17 19:42:05.248164"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.248964"], ["updated_at", "2023-02-17 19:42:05.248964"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.249817"], ["updated_at", "2023-02-17 19:42:05.249817"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.250566"], ["updated_at", "2023-02-17 19:42:05.250566"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:42:05.251348"], ["updated_at", "2023-02-17 19:42:05.251348"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:42:05.268149"], ["updated_at", "2023-02-17 19:42:05.268149"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:42:05.269178"], ["updated_at", "2023-02-17 19:42:05.269178"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:42:05.269956"], ["updated_at", "2023-02-17 19:42:05.269956"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:42:05.270643"], ["updated_at", "2023-02-17 19:42:05.270643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.271598"], ["updated_at", "2023-02-17 19:42:05.271598"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.272548"], ["updated_at", "2023-02-17 19:42:05.272548"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.273318"], ["updated_at", "2023-02-17 19:42:05.273318"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.274045"], ["updated_at", "2023-02-17 19:42:05.274045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.274755"], ["updated_at", "2023-02-17 19:42:05.274755"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.275637"], ["updated_at", "2023-02-17 19:42:05.275637"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.276654"], ["updated_at", "2023-02-17 19:42:05.276654"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.277406"], ["updated_at", "2023-02-17 19:42:05.277406"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.278110"], ["updated_at", "2023-02-17 19:42:05.278110"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.278808"], ["updated_at", "2023-02-17 19:42:05.278808"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.279594"], ["updated_at", "2023-02-17 19:42:05.279594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:42:05.280411"], ["updated_at", "2023-02-17 19:42:05.280411"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:42:05 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:42:05 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:42:05 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 179)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.3ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
 (2.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
 (0.8ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (1.0ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms | Allocations: 2360)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by ScrapperController#index as JSON

Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:43:01.477332"], ["updated_at", "2023-02-17 19:43:01.477332"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:43:01.491957"], ["updated_at", "2023-02-17 19:43:01.491957"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:43:01.497847"], ["updated_at", "2023-02-17 19:43:01.497847"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by ScrapperController#show as HTML Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms | Allocations: 409)

Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:43:01.507729"], ["updated_at", "2023-02-17 19:43:01.507729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:43:01.514756"], ["updated_at", "2023-02-17 19:43:01.514756"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:43:01.518291"], ["updated_at", "2023-02-17 19:43:01.518291"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:43:01.520785"], ["updated_at", "2023-02-17 19:43:01.520785"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 54ms (Views: 0.2ms | ActiveRecord: 5.0ms | Allocations: 28611)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by ScrapperController#show as HTML Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms | Allocations: 2382)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Processing by ScrapperController#index as JSON

TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Parameters: {"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}], "scrapper"=>{"classes"=>[{"codigo"=>"CIC0105", "turma"=>"TA", "nome"=>"ENGENHARIA DE SOFTWARE", "semestre"=>"2021.2", "horario"=>"35M12"}]}}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:43:01.537728"], ["updated_at", "2023-02-17 19:43:01.537728"], ["role_id", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? ORDER BY "subjects"."id" ASC LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 10ms (Views: 5.8ms | ActiveRecord: 0.9ms | Allocations: 4604)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:43:01.547425"], ["updated_at", "2023-02-17 19:43:01.547425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00007f1769ab8308>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} } Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."code" = ? AND "cclasses"."semester" = ? AND "cclasses"."time" = ? AND "cclasses"."subject_id" = ? ORDER BY "cclasses"."id" ASC LIMIT ?  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.3ms | Allocations: 658)

TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 1], ["created_at", "2023-02-17 19:43:01.562828"], ["updated_at", "2023-02-17 19:43:01.562828"]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 511)

Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#index as HTML

Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", nil], ["created_at", "2023-02-17 19:43:01.568988"], ["updated_at", "2023-02-17 19:43:01.568988"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms | Allocations: 1528)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Clara Jordao Perna"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["role_id", 34], ["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Processing by SurveysController#index as HTML

Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.1ms | Allocations: 1528)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#index as HTML Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 126)

Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:43:01.578929"], ["updated_at", "2023-02-17 19:43:01.578929"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by SurveysController#index as HTML

Enrollment Load (0.1ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 1], ["cclass_id", 1], ["LIMIT", 1]]

Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 126)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:43:01.586054"], ["updated_at", "2023-02-17 19:43:01.586054"]]

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."name" = ? LIMIT ?  [["name", "discente"], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."name" = ? AND "members"."course" = ? AND "members"."registration" = ? AND "members"."username" = ? AND "members"."degree" = ? AND "members"."role_id" = ? AND "members"."email" = ? LIMIT ?  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["role_id", 34], ["email", "anapaulaoncosta@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Paula Oliveira da Nobrega Costa"], ["registration", "190142120"], ["username", "190142120"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "anapaulaoncosta@gmail.com"], ["created_at", "2023-02-17 19:43:01.590048"], ["updated_at", "2023-02-17 19:43:01.590048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Enrollment Load (0.0ms)  SELECT "enrollments".* FROM "enrollments" WHERE "enrollments"."member_id" = ? AND "enrollments"."cclass_id" = ? LIMIT ?  [["member_id", 2], ["cclass_id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:43:01.592375"], ["updated_at", "2023-02-17 19:43:01.592375"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 56ms (Views: 0.2ms | ActiveRecord: 5.4ms | Allocations: 28612)

Member Load (0.1ms)  SELECT "members".* FROM "members" ORDER BY "members"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.5ms | Allocations: 5762)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
Member Exists? (0.2ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms | Allocations: 315)

TRANSACTION (0.0ms)  rollback transaction

Processing by SurveysController#create as HTML

TRANSACTION (0.1ms)  begin transaction
Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário"], ["description", "Descrição teste"], ["expiration_date", nil], ["semester", "2022/2"], ["created_at", "2023-02-17 19:43:01.611263"], ["updated_at", "2023-02-17 19:43:01.611263"], ["role_id", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.611697"], ["updated_at", "2023-02-17 19:43:01.611697"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.617211"], ["updated_at", "2023-02-17 19:43:01.617211"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."survey_id" = ?  [["survey_id", 1]]

Completed 200 OK in 12ms (Views: 7.4ms | ActiveRecord: 0.9ms | Allocations: 4605)

Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.622820"], ["updated_at", "2023-02-17 19:43:01.622820"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#create as HTML

Parameters: {"survey"=>{"description"=>"Descrição teste", "expiration_date"=>"", "invalid_key"=>"[FILTERED]", "name"=>"Questionário", "role_id"=>"1", "semester"=>"2022/2"}}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Unpermitted parameter: :invalid_key. Context: { controller: SurveysController, action: create, request: #<ActionController::TestRequest:0x00005606059df380>, params: {“survey”=>{“description”=>“Descrição teste”, “expiration_date”=>“”, “invalid_key”=>“”, “name”=>“Questionário”, “role_id”=>“1”, “semester”=>“2022/2”}, “controller”=>“surveys”, “action”=>“create”} }

Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:43:01.624288"], ["updated_at", "2023-02-17 19:43:01.624288"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 422 Unprocessable Entity in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 330)

TRANSACTION (0.1ms)  rollback transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:43:01.627317"], ["updated_at", "2023-02-17 19:43:01.627317"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 149)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:43:01.628595"], ["updated_at", "2023-02-17 19:43:01.628595"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}

Completed 404 Not Found in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 149)

Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:43:01.631580"], ["updated_at", "2023-02-17 19:43:01.631580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:43:01.632756"], ["updated_at", "2023-02-17 19:43:01.632756"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]

Processing by SurveysController#show as HTML

Parameters: {"id"=>"1"}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:43:01.635184"], ["updated_at", "2023-02-17 19:43:01.635184"]]
Role Load (0.2ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.4ms | Allocations: 658)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:43:01.636632"], ["updated_at", "2023-02-17 19:43:01.636632"], ["role_id", 34]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:43:01.638148"], ["updated_at", "2023-02-17 19:43:01.638148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#show as HTML

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Parameters: {"id"=>"1"}
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:43:01.639680"], ["updated_at", "2023-02-17 19:43:01.639680"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 200 OK in 2ms (Views: 1.2ms | ActiveRecord: 0.1ms | Allocations: 511)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:43:01.641111"], ["updated_at", "2023-02-17 19:43:01.641111"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:43:01.642279"], ["updated_at", "2023-02-17 19:43:01.642279"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:43:01.643837"], ["updated_at", "2023-02-17 19:43:01.643837"]]

Processing by SurveysController#index as HTML

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:43:01.645182"], ["updated_at", "2023-02-17 19:43:01.645182"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms | Allocations: 1528)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:43:01.646617"], ["updated_at", "2023-02-17 19:43:01.646617"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:43:01.647973"], ["updated_at", "2023-02-17 19:43:01.647973"], ["role_id", 34]]
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:43:01.649437"], ["updated_at", "2023-02-17 19:43:01.649437"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#index as HTML

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:43:01.650974"], ["updated_at", "2023-02-17 19:43:01.650974"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:43:01.652440"], ["updated_at", "2023-02-17 19:43:01.652440"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms | Allocations: 1528)

Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:43:01.653635"], ["updated_at", "2023-02-17 19:43:01.653635"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:43:01.654984"], ["updated_at", "2023-02-17 19:43:01.654984"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Processing by SurveysController#index as HTML

Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:43:01.656358"], ["updated_at", "2023-02-17 19:43:01.656358"], ["role_id", 34]]

Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms | Allocations: 126)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:43:01.657803"], ["updated_at", "2023-02-17 19:43:01.657803"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Processing by SurveysController#index as HTML

Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:43:01.659466"], ["updated_at", "2023-02-17 19:43:01.659466"], ["role_id", 34]]

Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms | Allocations: 126)

TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:43:01.661210"], ["updated_at", "2023-02-17 19:43:01.661210"]]
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:43:01.662612"], ["updated_at", "2023-02-17 19:43:01.662612"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:43:01.664335"], ["updated_at", "2023-02-17 19:43:01.664335"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"acjpjvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:43:01.666110"], ["updated_at", "2023-02-17 19:43:01.666110"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:43:01.667946"], ["updated_at", "2023-02-17 19:43:01.667946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:43:01.669224"], ["updated_at", "2023-02-17 19:43:01.669224"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:43:01.670695"], ["updated_at", "2023-02-17 19:43:01.670695"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:43:01.672002"], ["updated_at", "2023-02-17 19:43:01.672002"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:43:01.673549"], ["updated_at", "2023-02-17 19:43:01.673549"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:43:01.674850"], ["updated_at", "2023-02-17 19:43:01.674850"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "acjpjvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1

Completed 200 OK in 11ms (Views: 0.2ms | ActiveRecord: 0.7ms | Allocations: 5762)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:43:01.676366"], ["updated_at", "2023-02-17 19:43:01.676366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:43:01.677688"], ["updated_at", "2023-02-17 19:43:01.677688"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:43:01.679309"], ["updated_at", "2023-02-17 19:43:01.679309"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:43:01.680899"], ["updated_at", "2023-02-17 19:43:01.680899"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by UsersController#create as HTML

Parameters: {"created_at"=>"", "email_pessoa"=>"lalajvjp@gmail.com", "senha_pessoa"=>"1234567", "updated_at"=>""}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:43:01.682425"], ["updated_at", "2023-02-17 19:43:01.682425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Member Exists? (0.1ms)  SELECT 1 AS one FROM "members" WHERE "members"."email" = ? LIMIT ?  [["email", "lalajvjp@gmail.com"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.1ms | Allocations: 315)

Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:43:01.684483"], ["updated_at", "2023-02-17 19:43:01.684483"], ["role_id", 34]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:43:01.686182"], ["updated_at", "2023-02-17 19:43:01.686182"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:43:01.687486"], ["updated_at", "2023-02-17 19:43:01.687486"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:43:01.689064"], ["updated_at", "2023-02-17 19:43:01.689064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.5ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:43:01.690398"], ["updated_at", "2023-02-17 19:43:01.690398"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:43:01.692713"], ["updated_at", "2023-02-17 19:43:01.692713"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.694316"], ["updated_at", "2023-02-17 19:43:01.694316"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:43:01.694393"], ["updated_at", "2023-02-17 19:43:01.694393"], ["role_id", 34]]
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:43:01.696197"], ["updated_at", "2023-02-17 19:43:01.696197"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:43:01.697914"], ["updated_at", "2023-02-17 19:43:01.697914"], ["role_id", 34]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.5ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.700022"], ["updated_at", "2023-02-17 19:43:01.700022"]]
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:43:01.701501"], ["updated_at", "2023-02-17 19:43:01.701501"]]
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:43:01.703245"], ["updated_at", "2023-02-17 19:43:01.703245"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:43:01.705109"], ["updated_at", "2023-02-17 19:43:01.705109"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.705779"], ["updated_at", "2023-02-17 19:43:01.705779"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.4ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:43:01.706823"], ["updated_at", "2023-02-17 19:43:01.706823"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:43:01.709587"], ["updated_at", "2023-02-17 19:43:01.709587"]]
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:43:01.711346"], ["updated_at", "2023-02-17 19:43:01.711346"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.712080"], ["updated_at", "2023-02-17 19:43:01.712080"]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  ROLLBACK TO SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:43:01.713231"], ["updated_at", "2023-02-17 19:43:01.713231"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:43:01.714962"], ["updated_at", "2023-02-17 19:43:01.714962"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:43:01.717196"], ["updated_at", "2023-02-17 19:43:01.717196"]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.718654"], ["updated_at", "2023-02-17 19:43:01.718654"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:43:01.719341"], ["updated_at", "2023-02-17 19:43:01.719341"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:43:01.720799"], ["updated_at", "2023-02-17 19:43:01.720799"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:43:01.721975"], ["updated_at", "2023-02-17 19:43:01.721975"], ["role_id", 34]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:43:01.723421"], ["updated_at", "2023-02-17 19:43:01.723421"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.724033"], ["updated_at", "2023-02-17 19:43:01.724033"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:43:01.724646"], ["updated_at", "2023-02-17 19:43:01.724646"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:43:01.726639"], ["updated_at", "2023-02-17 19:43:01.726639"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:43:01.728039"], ["updated_at", "2023-02-17 19:43:01.728039"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:43:01.729624"], ["updated_at", "2023-02-17 19:43:01.729624"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.729983"], ["updated_at", "2023-02-17 19:43:01.729983"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:43:01.730839"], ["updated_at", "2023-02-17 19:43:01.730839"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:43:01.732261"], ["updated_at", "2023-02-17 19:43:01.732261"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:43:01.733894"], ["updated_at", "2023-02-17 19:43:01.733894"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:01.735156"], ["updated_at", "2023-02-17 19:43:01.735156"]]
TRANSACTION (0.0ms)  ROLLBACK TO SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.0ms)  rollback transaction
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:43:01.735909"], ["updated_at", "2023-02-17 19:43:01.735909"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:43:01.737187"], ["updated_at", "2023-02-17 19:43:01.737187"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:43:01.738541"], ["updated_at", "2023-02-17 19:43:01.738541"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:43:01.739801"], ["updated_at", "2023-02-17 19:43:01.739801"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:43:01.741245"], ["updated_at", "2023-02-17 19:43:01.741245"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:43:01.743032"], ["updated_at", "2023-02-17 19:43:01.743032"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:43:01.744670"], ["updated_at", "2023-02-17 19:43:01.744670"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:43:01 -0300

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:43:01.746033"], ["updated_at", "2023-02-17 19:43:01.746033"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:43:01.747403"], ["updated_at", "2023-02-17 19:43:01.747403"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:43:01.749033"], ["updated_at", "2023-02-17 19:43:01.749033"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:43:01.750943"], ["updated_at", "2023-02-17 19:43:01.750943"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:43:01.752220"], ["updated_at", "2023-02-17 19:43:01.752220"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:43:01.753632"], ["updated_at", "2023-02-17 19:43:01.753632"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:43:01.754819"], ["updated_at", "2023-02-17 19:43:01.754819"], ["role_id", 34]]
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.2ms | Allocations: 232)

TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:43:01.756236"], ["updated_at", "2023-02-17 19:43:01.756236"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:43:01.757507"], ["updated_at", "2023-02-17 19:43:01.757507"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:43:01.758862"], ["updated_at", "2023-02-17 19:43:01.758862"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:43:01.760066"], ["updated_at", "2023-02-17 19:43:01.760066"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:43:01.761608"], ["updated_at", "2023-02-17 19:43:01.761608"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:43:01 -0300

Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:43:01.763266"], ["updated_at", "2023-02-17 19:43:01.763266"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.1ms)  SAVEPOINT active_record_1

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 180)

Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:43:01.765168"], ["updated_at", "2023-02-17 19:43:01.765168"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
TRANSACTION (0.1ms)  begin transaction
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:43:01.766983"], ["updated_at", "2023-02-17 19:43:01.766983"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:43:01.768925"], ["updated_at", "2023-02-17 19:43:01.768925"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:43:01.770813"], ["updated_at", "2023-02-17 19:43:01.770813"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:43:01.772407"], ["updated_at", "2023-02-17 19:43:01.772407"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:43:01.773590"], ["updated_at", "2023-02-17 19:43:01.773590"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:43:01.775056"], ["updated_at", "2023-02-17 19:43:01.775056"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:43:01.776152"], ["updated_at", "2023-02-17 19:43:01.776152"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:43:01.777338"], ["updated_at", "2023-02-17 19:43:01.777338"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:43:01.779004"], ["updated_at", "2023-02-17 19:43:01.779004"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:43:01.783053"], ["updated_at", "2023-02-17 19:43:01.783053"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:43:01.785372"], ["updated_at", "2023-02-17 19:43:01.785372"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.2ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:43:01.786708"], ["updated_at", "2023-02-17 19:43:01.786708"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:01.816348"], ["updated_at", "2023-02-17 19:43:01.816348"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:01.818033"], ["updated_at", "2023-02-17 19:43:01.818033"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:01.819105"], ["updated_at", "2023-02-17 19:43:01.819105"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:01.819988"], ["updated_at", "2023-02-17 19:43:01.819988"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:01.820882"], ["updated_at", "2023-02-17 19:43:01.820882"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:01.821589"], ["updated_at", "2023-02-17 19:43:01.821589"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:01.822281"], ["updated_at", "2023-02-17 19:43:01.822281"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:01.822938"], ["updated_at", "2023-02-17 19:43:01.822938"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:01.823659"], ["updated_at", "2023-02-17 19:43:01.823659"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.824591"], ["updated_at", "2023-02-17 19:43:01.824591"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.825491"], ["updated_at", "2023-02-17 19:43:01.825491"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.826249"], ["updated_at", "2023-02-17 19:43:01.826249"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.826962"], ["updated_at", "2023-02-17 19:43:01.826962"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.827679"], ["updated_at", "2023-02-17 19:43:01.827679"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.828451"], ["updated_at", "2023-02-17 19:43:01.828451"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.829277"], ["updated_at", "2023-02-17 19:43:01.829277"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.830030"], ["updated_at", "2023-02-17 19:43:01.830030"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.830828"], ["updated_at", "2023-02-17 19:43:01.830828"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.831538"], ["updated_at", "2023-02-17 19:43:01.831538"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.832290"], ["updated_at", "2023-02-17 19:43:01.832290"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.833187"], ["updated_at", "2023-02-17 19:43:01.833187"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:01.844510"], ["updated_at", "2023-02-17 19:43:01.844510"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:01.845764"], ["updated_at", "2023-02-17 19:43:01.845764"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:01.846741"], ["updated_at", "2023-02-17 19:43:01.846741"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:01.847571"], ["updated_at", "2023-02-17 19:43:01.847571"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:01.848345"], ["updated_at", "2023-02-17 19:43:01.848345"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:01.849170"], ["updated_at", "2023-02-17 19:43:01.849170"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:01.850050"], ["updated_at", "2023-02-17 19:43:01.850050"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:01.850801"], ["updated_at", "2023-02-17 19:43:01.850801"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:01.851557"], ["updated_at", "2023-02-17 19:43:01.851557"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.852403"], ["updated_at", "2023-02-17 19:43:01.852403"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.853258"], ["updated_at", "2023-02-17 19:43:01.853258"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.854062"], ["updated_at", "2023-02-17 19:43:01.854062"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.854801"], ["updated_at", "2023-02-17 19:43:01.854801"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.855507"], ["updated_at", "2023-02-17 19:43:01.855507"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.856255"], ["updated_at", "2023-02-17 19:43:01.856255"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.856976"], ["updated_at", "2023-02-17 19:43:01.856976"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.857802"], ["updated_at", "2023-02-17 19:43:01.857802"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.858541"], ["updated_at", "2023-02-17 19:43:01.858541"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.859294"], ["updated_at", "2023-02-17 19:43:01.859294"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.860154"], ["updated_at", "2023-02-17 19:43:01.860154"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:01.861315"], ["updated_at", "2023-02-17 19:43:01.861315"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:01.896885"], ["updated_at", "2023-02-17 19:43:01.896885"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:01.897984"], ["updated_at", "2023-02-17 19:43:01.897984"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:01.898870"], ["updated_at", "2023-02-17 19:43:01.898870"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.899774"], ["updated_at", "2023-02-17 19:43:01.899774"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.901504"], ["updated_at", "2023-02-17 19:43:01.901504"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.902655"], ["updated_at", "2023-02-17 19:43:01.902655"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.903479"], ["updated_at", "2023-02-17 19:43:01.903479"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.904226"], ["updated_at", "2023-02-17 19:43:01.904226"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.904965"], ["updated_at", "2023-02-17 19:43:01.904965"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.905663"], ["updated_at", "2023-02-17 19:43:01.905663"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.906371"], ["updated_at", "2023-02-17 19:43:01.906371"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.907046"], ["updated_at", "2023-02-17 19:43:01.907046"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.907767"], ["updated_at", "2023-02-17 19:43:01.907767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.908470"], ["updated_at", "2023-02-17 19:43:01.908470"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.909527"], ["updated_at", "2023-02-17 19:43:01.909527"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:01.910550"], ["updated_at", "2023-02-17 19:43:01.910550"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:01.926555"], ["updated_at", "2023-02-17 19:43:01.926555"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:01.927617"], ["updated_at", "2023-02-17 19:43:01.927617"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:01.928669"], ["updated_at", "2023-02-17 19:43:01.928669"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.929629"], ["updated_at", "2023-02-17 19:43:01.929629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.930415"], ["updated_at", "2023-02-17 19:43:01.930415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.931133"], ["updated_at", "2023-02-17 19:43:01.931133"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.932087"], ["updated_at", "2023-02-17 19:43:01.932087"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.933212"], ["updated_at", "2023-02-17 19:43:01.933212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.934048"], ["updated_at", "2023-02-17 19:43:01.934048"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.934821"], ["updated_at", "2023-02-17 19:43:01.934821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.935497"], ["updated_at", "2023-02-17 19:43:01.935497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.936202"], ["updated_at", "2023-02-17 19:43:01.936202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.936937"], ["updated_at", "2023-02-17 19:43:01.936937"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.937665"], ["updated_at", "2023-02-17 19:43:01.937665"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.938351"], ["updated_at", "2023-02-17 19:43:01.938351"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:01.939033"], ["updated_at", "2023-02-17 19:43:01.939033"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:01.954599"], ["updated_at", "2023-02-17 19:43:01.954599"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:01.955544"], ["updated_at", "2023-02-17 19:43:01.955544"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:01.956316"], ["updated_at", "2023-02-17 19:43:01.956316"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.957091"], ["updated_at", "2023-02-17 19:43:01.957091"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.957938"], ["updated_at", "2023-02-17 19:43:01.957938"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.958727"], ["updated_at", "2023-02-17 19:43:01.958727"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.959415"], ["updated_at", "2023-02-17 19:43:01.959415"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.960115"], ["updated_at", "2023-02-17 19:43:01.960115"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.960810"], ["updated_at", "2023-02-17 19:43:01.960810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.961634"], ["updated_at", "2023-02-17 19:43:01.961634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.962394"], ["updated_at", "2023-02-17 19:43:01.962394"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.963206"], ["updated_at", "2023-02-17 19:43:01.963206"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.963973"], ["updated_at", "2023-02-17 19:43:01.963973"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.964693"], ["updated_at", "2023-02-17 19:43:01.964693"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.965391"], ["updated_at", "2023-02-17 19:43:01.965391"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:01.966148"], ["updated_at", "2023-02-17 19:43:01.966148"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:01.981688"], ["updated_at", "2023-02-17 19:43:01.981688"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:01.982800"], ["updated_at", "2023-02-17 19:43:01.982800"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:01.984098"], ["updated_at", "2023-02-17 19:43:01.984098"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:01.984949"], ["updated_at", "2023-02-17 19:43:01.984949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.985725"], ["updated_at", "2023-02-17 19:43:01.985725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.986502"], ["updated_at", "2023-02-17 19:43:01.986502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.987222"], ["updated_at", "2023-02-17 19:43:01.987222"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.987911"], ["updated_at", "2023-02-17 19:43:01.987911"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.988627"], ["updated_at", "2023-02-17 19:43:01.988627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.989315"], ["updated_at", "2023-02-17 19:43:01.989315"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.990029"], ["updated_at", "2023-02-17 19:43:01.990029"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.990797"], ["updated_at", "2023-02-17 19:43:01.990797"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.991527"], ["updated_at", "2023-02-17 19:43:01.991527"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.992245"], ["updated_at", "2023-02-17 19:43:01.992245"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.992932"], ["updated_at", "2023-02-17 19:43:01.992932"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:01.993789"], ["updated_at", "2023-02-17 19:43:01.993789"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.010819"], ["updated_at", "2023-02-17 19:43:02.010819"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.011862"], ["updated_at", "2023-02-17 19:43:02.011862"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.012707"], ["updated_at", "2023-02-17 19:43:02.012707"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.013413"], ["updated_at", "2023-02-17 19:43:02.013413"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.014186"], ["updated_at", "2023-02-17 19:43:02.014186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.014905"], ["updated_at", "2023-02-17 19:43:02.014905"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.015614"], ["updated_at", "2023-02-17 19:43:02.015614"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.016738"], ["updated_at", "2023-02-17 19:43:02.016738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.017492"], ["updated_at", "2023-02-17 19:43:02.017492"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.018186"], ["updated_at", "2023-02-17 19:43:02.018186"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.018859"], ["updated_at", "2023-02-17 19:43:02.018859"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.019594"], ["updated_at", "2023-02-17 19:43:02.019594"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.020326"], ["updated_at", "2023-02-17 19:43:02.020326"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.021057"], ["updated_at", "2023-02-17 19:43:02.021057"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.021722"], ["updated_at", "2023-02-17 19:43:02.021722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.022407"], ["updated_at", "2023-02-17 19:43:02.022407"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.037830"], ["updated_at", "2023-02-17 19:43:02.037830"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.038823"], ["updated_at", "2023-02-17 19:43:02.038823"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.039576"], ["updated_at", "2023-02-17 19:43:02.039576"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.040301"], ["updated_at", "2023-02-17 19:43:02.040301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.041085"], ["updated_at", "2023-02-17 19:43:02.041085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.041832"], ["updated_at", "2023-02-17 19:43:02.041832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.042529"], ["updated_at", "2023-02-17 19:43:02.042529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.043230"], ["updated_at", "2023-02-17 19:43:02.043230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.043915"], ["updated_at", "2023-02-17 19:43:02.043915"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.044636"], ["updated_at", "2023-02-17 19:43:02.044636"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.045375"], ["updated_at", "2023-02-17 19:43:02.045375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.046071"], ["updated_at", "2023-02-17 19:43:02.046071"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.046795"], ["updated_at", "2023-02-17 19:43:02.046795"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.047463"], ["updated_at", "2023-02-17 19:43:02.047463"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.048151"], ["updated_at", "2023-02-17 19:43:02.048151"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.048873"], ["updated_at", "2023-02-17 19:43:02.048873"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/cclasses/1/members” for 127.0.0.1 at 2023-02-17 16:43:02 -0300 Processing by MembersController#index as HTML

Parameters: {"id"=>"1"}
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.4ms)  SELECT "members".* FROM "members" INNER JOIN "enrollments" ON "members"."id" = "enrollments"."member_id" WHERE "enrollments"."cclass_id" = ?  [["cclass_id", 1]]

Completed 200 OK in 17ms (Views: 12.8ms | ActiveRecord: 0.5ms | Allocations: 10855)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:02.083876"], ["updated_at", "2023-02-17 19:43:02.083876"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:43:02.085344"], ["updated_at", "2023-02-17 19:43:02.085344"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:43:02.088180"], ["updated_at", "2023-02-17 19:43:02.088180"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:43:02.089352"], ["updated_at", "2023-02-17 19:43:02.089352"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:43:02.092106"], ["updated_at", "2023-02-17 19:43:02.092106"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:43:02.093280"], ["updated_at", "2023-02-17 19:43:02.093280"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:43:02.095404"], ["updated_at", "2023-02-17 19:43:02.095404"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:43:02.096823"], ["updated_at", "2023-02-17 19:43:02.096823"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:43:02.098436"], ["updated_at", "2023-02-17 19:43:02.098436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:43:02.099918"], ["updated_at", "2023-02-17 19:43:02.099918"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:43:02.101387"], ["updated_at", "2023-02-17 19:43:02.101387"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:43:02.102834"], ["updated_at", "2023-02-17 19:43:02.102834"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:43:02.104560"], ["updated_at", "2023-02-17 19:43:02.104560"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:43:02.105818"], ["updated_at", "2023-02-17 19:43:02.105818"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:43:02.107264"], ["updated_at", "2023-02-17 19:43:02.107264"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:43:02.108521"], ["updated_at", "2023-02-17 19:43:02.108521"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:43:02.109879"], ["updated_at", "2023-02-17 19:43:02.109879"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:43:02.111200"], ["updated_at", "2023-02-17 19:43:02.111200"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:43:02.112806"], ["updated_at", "2023-02-17 19:43:02.112806"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:43:02.114021"], ["updated_at", "2023-02-17 19:43:02.114021"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:43:02.115429"], ["updated_at", "2023-02-17 19:43:02.115429"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:43:02.116805"], ["updated_at", "2023-02-17 19:43:02.116805"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:43:02.118245"], ["updated_at", "2023-02-17 19:43:02.118245"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:43:02.119505"], ["updated_at", "2023-02-17 19:43:02.119505"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:43:02.120946"], ["updated_at", "2023-02-17 19:43:02.120946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:43:02.122193"], ["updated_at", "2023-02-17 19:43:02.122193"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:43:02.123603"], ["updated_at", "2023-02-17 19:43:02.123603"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:43:02.124833"], ["updated_at", "2023-02-17 19:43:02.124833"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:43:02.126229"], ["updated_at", "2023-02-17 19:43:02.126229"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:43:02.127436"], ["updated_at", "2023-02-17 19:43:02.127436"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:43:02.128889"], ["updated_at", "2023-02-17 19:43:02.128889"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:43:02.130235"], ["updated_at", "2023-02-17 19:43:02.130235"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:43:02.131638"], ["updated_at", "2023-02-17 19:43:02.131638"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:43:02.132888"], ["updated_at", "2023-02-17 19:43:02.132888"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:43:02.134396"], ["updated_at", "2023-02-17 19:43:02.134396"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:43:02.135605"], ["updated_at", "2023-02-17 19:43:02.135605"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:43:02.137048"], ["updated_at", "2023-02-17 19:43:02.137048"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:43:02.138277"], ["updated_at", "2023-02-17 19:43:02.138277"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:43:02.139690"], ["updated_at", "2023-02-17 19:43:02.139690"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:43:02.140952"], ["updated_at", "2023-02-17 19:43:02.140952"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:43:02.142302"], ["updated_at", "2023-02-17 19:43:02.142302"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:43:02.143495"], ["updated_at", "2023-02-17 19:43:02.143495"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:43:02.145015"], ["updated_at", "2023-02-17 19:43:02.145015"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:43:02.146231"], ["updated_at", "2023-02-17 19:43:02.146231"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:43:02.147627"], ["updated_at", "2023-02-17 19:43:02.147627"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:43:02.148862"], ["updated_at", "2023-02-17 19:43:02.148862"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:43:02.150359"], ["updated_at", "2023-02-17 19:43:02.150359"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:43:02.151609"], ["updated_at", "2023-02-17 19:43:02.151609"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:43:02.153297"], ["updated_at", "2023-02-17 19:43:02.153297"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:43:02.154816"], ["updated_at", "2023-02-17 19:43:02.154816"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:43:02.156664"], ["updated_at", "2023-02-17 19:43:02.156664"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:43:02.158205"], ["updated_at", "2023-02-17 19:43:02.158205"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:43:02.159727"], ["updated_at", "2023-02-17 19:43:02.159727"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:43:02.160967"], ["updated_at", "2023-02-17 19:43:02.160967"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:43:02.162501"], ["updated_at", "2023-02-17 19:43:02.162501"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:43:02.163739"], ["updated_at", "2023-02-17 19:43:02.163739"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:43:02.165168"], ["updated_at", "2023-02-17 19:43:02.165168"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:43:02.166524"], ["updated_at", "2023-02-17 19:43:02.166524"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:43:02.167937"], ["updated_at", "2023-02-17 19:43:02.167937"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:43:02.169152"], ["updated_at", "2023-02-17 19:43:02.169152"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:43:02.170609"], ["updated_at", "2023-02-17 19:43:02.170609"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:43:02.171847"], ["updated_at", "2023-02-17 19:43:02.171847"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:43:02.173222"], ["updated_at", "2023-02-17 19:43:02.173222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:43:02.174571"], ["updated_at", "2023-02-17 19:43:02.174571"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:43:02.175965"], ["updated_at", "2023-02-17 19:43:02.175965"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:43:02.177145"], ["updated_at", "2023-02-17 19:43:02.177145"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:43:02.178653"], ["updated_at", "2023-02-17 19:43:02.178653"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:43:02.179891"], ["updated_at", "2023-02-17 19:43:02.179891"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:43:02.181303"], ["updated_at", "2023-02-17 19:43:02.181303"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:43:02.182596"], ["updated_at", "2023-02-17 19:43:02.182596"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:43:02.184133"], ["updated_at", "2023-02-17 19:43:02.184133"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:43:02.185354"], ["updated_at", "2023-02-17 19:43:02.185354"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:43:02.186793"], ["updated_at", "2023-02-17 19:43:02.186793"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:43:02.188006"], ["updated_at", "2023-02-17 19:43:02.188006"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:43:02.189420"], ["updated_at", "2023-02-17 19:43:02.189420"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:43:02.190677"], ["updated_at", "2023-02-17 19:43:02.190677"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:43:02.192098"], ["updated_at", "2023-02-17 19:43:02.192098"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:43:02.193289"], ["updated_at", "2023-02-17 19:43:02.193289"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:43:02.194723"], ["updated_at", "2023-02-17 19:43:02.194723"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:43:02.195947"], ["updated_at", "2023-02-17 19:43:02.195947"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:43:02.197352"], ["updated_at", "2023-02-17 19:43:02.197352"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:43:02.198572"], ["updated_at", "2023-02-17 19:43:02.198572"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:43:02.200123"], ["updated_at", "2023-02-17 19:43:02.200123"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:43:02.201343"], ["updated_at", "2023-02-17 19:43:02.201343"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:43:02.202767"], ["updated_at", "2023-02-17 19:43:02.202767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:43:02.204052"], ["updated_at", "2023-02-17 19:43:02.204052"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:43:02.205470"], ["updated_at", "2023-02-17 19:43:02.205470"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:43:02.206701"], ["updated_at", "2023-02-17 19:43:02.206701"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:43:02.208093"], ["updated_at", "2023-02-17 19:43:02.208093"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:43:02.209303"], ["updated_at", "2023-02-17 19:43:02.209303"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:43:02.210706"], ["updated_at", "2023-02-17 19:43:02.210706"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:43:02.212042"], ["updated_at", "2023-02-17 19:43:02.212042"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:43:02.213526"], ["updated_at", "2023-02-17 19:43:02.213526"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:43:02.214729"], ["updated_at", "2023-02-17 19:43:02.214729"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:43:02.216134"], ["updated_at", "2023-02-17 19:43:02.216134"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:43:02.217366"], ["updated_at", "2023-02-17 19:43:02.217366"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:43:02.218595"], ["updated_at", "2023-02-17 19:43:02.218595"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:43:02.220057"], ["updated_at", "2023-02-17 19:43:02.220057"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:43:02.221598"], ["updated_at", "2023-02-17 19:43:02.221598"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:43:02.222726"], ["updated_at", "2023-02-17 19:43:02.222726"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:43:02.223788"], ["updated_at", "2023-02-17 19:43:02.223788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:02.235346"], ["updated_at", "2023-02-17 19:43:02.235346"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:02.236687"], ["updated_at", "2023-02-17 19:43:02.236687"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:02.237669"], ["updated_at", "2023-02-17 19:43:02.237669"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.238515"], ["updated_at", "2023-02-17 19:43:02.238515"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.239286"], ["updated_at", "2023-02-17 19:43:02.239286"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.240035"], ["updated_at", "2023-02-17 19:43:02.240035"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.240797"], ["updated_at", "2023-02-17 19:43:02.240797"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.241530"], ["updated_at", "2023-02-17 19:43:02.241530"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:02.242317"], ["updated_at", "2023-02-17 19:43:02.242317"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.243180"], ["updated_at", "2023-02-17 19:43:02.243180"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.244043"], ["updated_at", "2023-02-17 19:43:02.244043"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.244830"], ["updated_at", "2023-02-17 19:43:02.244830"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.245589"], ["updated_at", "2023-02-17 19:43:02.245589"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.246331"], ["updated_at", "2023-02-17 19:43:02.246331"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.247058"], ["updated_at", "2023-02-17 19:43:02.247058"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.247824"], ["updated_at", "2023-02-17 19:43:02.247824"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.248692"], ["updated_at", "2023-02-17 19:43:02.248692"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.249505"], ["updated_at", "2023-02-17 19:43:02.249505"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.250362"], ["updated_at", "2023-02-17 19:43:02.250362"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.251105"], ["updated_at", "2023-02-17 19:43:02.251105"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.251849"], ["updated_at", "2023-02-17 19:43:02.251849"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:02.263243"], ["updated_at", "2023-02-17 19:43:02.263243"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:02.264463"], ["updated_at", "2023-02-17 19:43:02.264463"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:02.265514"], ["updated_at", "2023-02-17 19:43:02.265514"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:02.266510"], ["updated_at", "2023-02-17 19:43:02.266510"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:02.267319"], ["updated_at", "2023-02-17 19:43:02.267319"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:02.267993"], ["updated_at", "2023-02-17 19:43:02.267993"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:02.268709"], ["updated_at", "2023-02-17 19:43:02.268709"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:02.269437"], ["updated_at", "2023-02-17 19:43:02.269437"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:02.270350"], ["updated_at", "2023-02-17 19:43:02.270350"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.271252"], ["updated_at", "2023-02-17 19:43:02.271252"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.272048"], ["updated_at", "2023-02-17 19:43:02.272048"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.272831"], ["updated_at", "2023-02-17 19:43:02.272831"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.273696"], ["updated_at", "2023-02-17 19:43:02.273696"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.274459"], ["updated_at", "2023-02-17 19:43:02.274459"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.275223"], ["updated_at", "2023-02-17 19:43:02.275223"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.275934"], ["updated_at", "2023-02-17 19:43:02.275934"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.276663"], ["updated_at", "2023-02-17 19:43:02.276663"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.277431"], ["updated_at", "2023-02-17 19:43:02.277431"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.278210"], ["updated_at", "2023-02-17 19:43:02.278210"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.279117"], ["updated_at", "2023-02-17 19:43:02.279117"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.280282"], ["updated_at", "2023-02-17 19:43:02.280282"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.297790"], ["updated_at", "2023-02-17 19:43:02.297790"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.298835"], ["updated_at", "2023-02-17 19:43:02.298835"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.300028"], ["updated_at", "2023-02-17 19:43:02.300028"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.300789"], ["updated_at", "2023-02-17 19:43:02.300789"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.301642"], ["updated_at", "2023-02-17 19:43:02.301642"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.302447"], ["updated_at", "2023-02-17 19:43:02.302447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.303173"], ["updated_at", "2023-02-17 19:43:02.303173"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.303864"], ["updated_at", "2023-02-17 19:43:02.303864"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.304538"], ["updated_at", "2023-02-17 19:43:02.304538"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.305271"], ["updated_at", "2023-02-17 19:43:02.305271"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.305943"], ["updated_at", "2023-02-17 19:43:02.305943"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.306645"], ["updated_at", "2023-02-17 19:43:02.306645"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.307322"], ["updated_at", "2023-02-17 19:43:02.307322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.308027"], ["updated_at", "2023-02-17 19:43:02.308027"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.308716"], ["updated_at", "2023-02-17 19:43:02.308716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.309435"], ["updated_at", "2023-02-17 19:43:02.309435"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.324753"], ["updated_at", "2023-02-17 19:43:02.324753"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.325713"], ["updated_at", "2023-02-17 19:43:02.325713"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.326483"], ["updated_at", "2023-02-17 19:43:02.326483"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.327175"], ["updated_at", "2023-02-17 19:43:02.327175"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.327934"], ["updated_at", "2023-02-17 19:43:02.327934"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.328647"], ["updated_at", "2023-02-17 19:43:02.328647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.329362"], ["updated_at", "2023-02-17 19:43:02.329362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.330045"], ["updated_at", "2023-02-17 19:43:02.330045"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.330715"], ["updated_at", "2023-02-17 19:43:02.330715"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.331442"], ["updated_at", "2023-02-17 19:43:02.331442"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.332121"], ["updated_at", "2023-02-17 19:43:02.332121"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.332812"], ["updated_at", "2023-02-17 19:43:02.332812"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.333629"], ["updated_at", "2023-02-17 19:43:02.333629"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.334327"], ["updated_at", "2023-02-17 19:43:02.334327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.334997"], ["updated_at", "2023-02-17 19:43:02.334997"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.335710"], ["updated_at", "2023-02-17 19:43:02.335710"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.351043"], ["updated_at", "2023-02-17 19:43:02.351043"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.352045"], ["updated_at", "2023-02-17 19:43:02.352045"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.352829"], ["updated_at", "2023-02-17 19:43:02.352829"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.353550"], ["updated_at", "2023-02-17 19:43:02.353550"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.354354"], ["updated_at", "2023-02-17 19:43:02.354354"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.355100"], ["updated_at", "2023-02-17 19:43:02.355100"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.355810"], ["updated_at", "2023-02-17 19:43:02.355810"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.356512"], ["updated_at", "2023-02-17 19:43:02.356512"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.357235"], ["updated_at", "2023-02-17 19:43:02.357235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.357915"], ["updated_at", "2023-02-17 19:43:02.357915"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.358623"], ["updated_at", "2023-02-17 19:43:02.358623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.359317"], ["updated_at", "2023-02-17 19:43:02.359317"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.360016"], ["updated_at", "2023-02-17 19:43:02.360016"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.360705"], ["updated_at", "2023-02-17 19:43:02.360705"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.361423"], ["updated_at", "2023-02-17 19:43:02.361423"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.362142"], ["updated_at", "2023-02-17 19:43:02.362142"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.377720"], ["updated_at", "2023-02-17 19:43:02.377720"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.378755"], ["updated_at", "2023-02-17 19:43:02.378755"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.379555"], ["updated_at", "2023-02-17 19:43:02.379555"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.380291"], ["updated_at", "2023-02-17 19:43:02.380291"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.381066"], ["updated_at", "2023-02-17 19:43:02.381066"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.381791"], ["updated_at", "2023-02-17 19:43:02.381791"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.382501"], ["updated_at", "2023-02-17 19:43:02.382501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.383327"], ["updated_at", "2023-02-17 19:43:02.383327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.384108"], ["updated_at", "2023-02-17 19:43:02.384108"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.384833"], ["updated_at", "2023-02-17 19:43:02.384833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.385542"], ["updated_at", "2023-02-17 19:43:02.385542"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.386233"], ["updated_at", "2023-02-17 19:43:02.386233"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.386924"], ["updated_at", "2023-02-17 19:43:02.386924"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.387622"], ["updated_at", "2023-02-17 19:43:02.387622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.388322"], ["updated_at", "2023-02-17 19:43:02.388322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.389103"], ["updated_at", "2023-02-17 19:43:02.389103"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.405827"], ["updated_at", "2023-02-17 19:43:02.405827"]]
QuestionAnswer Create (12.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.407033"], ["updated_at", "2023-02-17 19:43:02.407033"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.420086"], ["updated_at", "2023-02-17 19:43:02.420086"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.420982"], ["updated_at", "2023-02-17 19:43:02.420982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.421792"], ["updated_at", "2023-02-17 19:43:02.421792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.422532"], ["updated_at", "2023-02-17 19:43:02.422532"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.423235"], ["updated_at", "2023-02-17 19:43:02.423235"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.423899"], ["updated_at", "2023-02-17 19:43:02.423899"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.424612"], ["updated_at", "2023-02-17 19:43:02.424612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.425890"], ["updated_at", "2023-02-17 19:43:02.425890"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.426745"], ["updated_at", "2023-02-17 19:43:02.426745"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.427453"], ["updated_at", "2023-02-17 19:43:02.427453"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.428469"], ["updated_at", "2023-02-17 19:43:02.428469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.430150"], ["updated_at", "2023-02-17 19:43:02.430150"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.430908"], ["updated_at", "2023-02-17 19:43:02.430908"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.431597"], ["updated_at", "2023-02-17 19:43:02.431597"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.447255"], ["updated_at", "2023-02-17 19:43:02.447255"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.448229"], ["updated_at", "2023-02-17 19:43:02.448229"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.449112"], ["updated_at", "2023-02-17 19:43:02.449112"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.449931"], ["updated_at", "2023-02-17 19:43:02.449931"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.450720"], ["updated_at", "2023-02-17 19:43:02.450720"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.451496"], ["updated_at", "2023-02-17 19:43:02.451496"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.452191"], ["updated_at", "2023-02-17 19:43:02.452191"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.452891"], ["updated_at", "2023-02-17 19:43:02.452891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.453574"], ["updated_at", "2023-02-17 19:43:02.453574"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.454226"], ["updated_at", "2023-02-17 19:43:02.454226"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.454884"], ["updated_at", "2023-02-17 19:43:02.454884"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.455549"], ["updated_at", "2023-02-17 19:43:02.455549"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.456223"], ["updated_at", "2023-02-17 19:43:02.456223"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.456909"], ["updated_at", "2023-02-17 19:43:02.456909"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.457596"], ["updated_at", "2023-02-17 19:43:02.457596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.458512"], ["updated_at", "2023-02-17 19:43:02.458512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members” for 127.0.0.1 at 2023-02-17 16:43:02 -0300 Processing by MembersController#index as HTML

Member Load (0.3ms)  SELECT "members".* FROM "members"

Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.3ms | Allocations: 7429)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:02.476477"], ["updated_at", "2023-02-17 19:43:02.476477"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:43:02.477906"], ["updated_at", "2023-02-17 19:43:02.477906"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:43:02.480776"], ["updated_at", "2023-02-17 19:43:02.480776"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:43:02.482007"], ["updated_at", "2023-02-17 19:43:02.482007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:43:02.484783"], ["updated_at", "2023-02-17 19:43:02.484783"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:43:02.485913"], ["updated_at", "2023-02-17 19:43:02.485913"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.2ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:43:02.487893"], ["updated_at", "2023-02-17 19:43:02.487893"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:43:02.489675"], ["updated_at", "2023-02-17 19:43:02.489675"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:43:02.491311"], ["updated_at", "2023-02-17 19:43:02.491311"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:43:02.492587"], ["updated_at", "2023-02-17 19:43:02.492587"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:43:02.493934"], ["updated_at", "2023-02-17 19:43:02.493934"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:43:02.495087"], ["updated_at", "2023-02-17 19:43:02.495087"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:43:02.496425"], ["updated_at", "2023-02-17 19:43:02.496425"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:43:02.497616"], ["updated_at", "2023-02-17 19:43:02.497616"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:43:02.499305"], ["updated_at", "2023-02-17 19:43:02.499305"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:43:02.500699"], ["updated_at", "2023-02-17 19:43:02.500699"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:43:02.502059"], ["updated_at", "2023-02-17 19:43:02.502059"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:43:02.503205"], ["updated_at", "2023-02-17 19:43:02.503205"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:43:02.504542"], ["updated_at", "2023-02-17 19:43:02.504542"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:43:02.505740"], ["updated_at", "2023-02-17 19:43:02.505740"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:43:02.507064"], ["updated_at", "2023-02-17 19:43:02.507064"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:43:02.508216"], ["updated_at", "2023-02-17 19:43:02.508216"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:43:02.509788"], ["updated_at", "2023-02-17 19:43:02.509788"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:43:02.511006"], ["updated_at", "2023-02-17 19:43:02.511006"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:43:02.512429"], ["updated_at", "2023-02-17 19:43:02.512429"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:43:02.513610"], ["updated_at", "2023-02-17 19:43:02.513610"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:43:02.514932"], ["updated_at", "2023-02-17 19:43:02.514932"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:43:02.516065"], ["updated_at", "2023-02-17 19:43:02.516065"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:43:02.517495"], ["updated_at", "2023-02-17 19:43:02.517495"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:43:02.518895"], ["updated_at", "2023-02-17 19:43:02.518895"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:43:02.520501"], ["updated_at", "2023-02-17 19:43:02.520501"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:43:02.521707"], ["updated_at", "2023-02-17 19:43:02.521707"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:43:02.523051"], ["updated_at", "2023-02-17 19:43:02.523051"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:43:02.524229"], ["updated_at", "2023-02-17 19:43:02.524229"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:43:02.525553"], ["updated_at", "2023-02-17 19:43:02.525553"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:43:02.526698"], ["updated_at", "2023-02-17 19:43:02.526698"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:43:02.528041"], ["updated_at", "2023-02-17 19:43:02.528041"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:43:02.529650"], ["updated_at", "2023-02-17 19:43:02.529650"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:43:02.531120"], ["updated_at", "2023-02-17 19:43:02.531120"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:43:02.532299"], ["updated_at", "2023-02-17 19:43:02.532299"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:43:02.533789"], ["updated_at", "2023-02-17 19:43:02.533789"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:43:02.535000"], ["updated_at", "2023-02-17 19:43:02.535000"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:43:02.536344"], ["updated_at", "2023-02-17 19:43:02.536344"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:43:02.537480"], ["updated_at", "2023-02-17 19:43:02.537480"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:43:02.538891"], ["updated_at", "2023-02-17 19:43:02.538891"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:43:02.540138"], ["updated_at", "2023-02-17 19:43:02.540138"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:43:02.541517"], ["updated_at", "2023-02-17 19:43:02.541517"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:43:02.542691"], ["updated_at", "2023-02-17 19:43:02.542691"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:43:02.544030"], ["updated_at", "2023-02-17 19:43:02.544030"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:43:02.545168"], ["updated_at", "2023-02-17 19:43:02.545168"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:43:02.546466"], ["updated_at", "2023-02-17 19:43:02.546466"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:43:02.547605"], ["updated_at", "2023-02-17 19:43:02.547605"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:43:02.549279"], ["updated_at", "2023-02-17 19:43:02.549279"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:43:02.550779"], ["updated_at", "2023-02-17 19:43:02.550779"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:43:02.552192"], ["updated_at", "2023-02-17 19:43:02.552192"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:43:02.553422"], ["updated_at", "2023-02-17 19:43:02.553422"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:43:02.554940"], ["updated_at", "2023-02-17 19:43:02.554940"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:43:02.556180"], ["updated_at", "2023-02-17 19:43:02.556180"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:43:02.557686"], ["updated_at", "2023-02-17 19:43:02.557686"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:43:02.559326"], ["updated_at", "2023-02-17 19:43:02.559326"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:43:02.560964"], ["updated_at", "2023-02-17 19:43:02.560964"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:43:02.562288"], ["updated_at", "2023-02-17 19:43:02.562288"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:43:02.563835"], ["updated_at", "2023-02-17 19:43:02.563835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:43:02.565302"], ["updated_at", "2023-02-17 19:43:02.565302"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:43:02.566884"], ["updated_at", "2023-02-17 19:43:02.566884"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:43:02.568346"], ["updated_at", "2023-02-17 19:43:02.568346"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:43:02.570100"], ["updated_at", "2023-02-17 19:43:02.570100"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:43:02.571558"], ["updated_at", "2023-02-17 19:43:02.571558"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:43:02.573206"], ["updated_at", "2023-02-17 19:43:02.573206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:43:02.574653"], ["updated_at", "2023-02-17 19:43:02.574653"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:43:02.576290"], ["updated_at", "2023-02-17 19:43:02.576290"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:43:02.577718"], ["updated_at", "2023-02-17 19:43:02.577718"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:43:02.579493"], ["updated_at", "2023-02-17 19:43:02.579493"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:43:02.581138"], ["updated_at", "2023-02-17 19:43:02.581138"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:43:02.582802"], ["updated_at", "2023-02-17 19:43:02.582802"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:43:02.584382"], ["updated_at", "2023-02-17 19:43:02.584382"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:43:02.586001"], ["updated_at", "2023-02-17 19:43:02.586001"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:43:02.587476"], ["updated_at", "2023-02-17 19:43:02.587476"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:43:02.589310"], ["updated_at", "2023-02-17 19:43:02.589310"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:43:02.590902"], ["updated_at", "2023-02-17 19:43:02.590902"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:43:02.592562"], ["updated_at", "2023-02-17 19:43:02.592562"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:43:02.594029"], ["updated_at", "2023-02-17 19:43:02.594029"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:43:02.595701"], ["updated_at", "2023-02-17 19:43:02.595701"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:43:02.597246"], ["updated_at", "2023-02-17 19:43:02.597246"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:43:02.599001"], ["updated_at", "2023-02-17 19:43:02.599001"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:43:02.600668"], ["updated_at", "2023-02-17 19:43:02.600668"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:43:02.602242"], ["updated_at", "2023-02-17 19:43:02.602242"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:43:02.603683"], ["updated_at", "2023-02-17 19:43:02.603683"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:43:02.605322"], ["updated_at", "2023-02-17 19:43:02.605322"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:43:02.606703"], ["updated_at", "2023-02-17 19:43:02.606703"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:43:02.608337"], ["updated_at", "2023-02-17 19:43:02.608337"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:43:02.610085"], ["updated_at", "2023-02-17 19:43:02.610085"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:43:02.612030"], ["updated_at", "2023-02-17 19:43:02.612030"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:43:02.613410"], ["updated_at", "2023-02-17 19:43:02.613410"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:43:02.615066"], ["updated_at", "2023-02-17 19:43:02.615066"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:43:02.616532"], ["updated_at", "2023-02-17 19:43:02.616532"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:43:02.618652"], ["updated_at", "2023-02-17 19:43:02.618652"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:43:02.620407"], ["updated_at", "2023-02-17 19:43:02.620407"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:43:02.622150"], ["updated_at", "2023-02-17 19:43:02.622150"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:43:02.623585"], ["updated_at", "2023-02-17 19:43:02.623585"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:43:02.625098"], ["updated_at", "2023-02-17 19:43:02.625098"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:02.638023"], ["updated_at", "2023-02-17 19:43:02.638023"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:02.639620"], ["updated_at", "2023-02-17 19:43:02.639620"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:02.640955"], ["updated_at", "2023-02-17 19:43:02.640955"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.642257"], ["updated_at", "2023-02-17 19:43:02.642257"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.643252"], ["updated_at", "2023-02-17 19:43:02.643252"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.644087"], ["updated_at", "2023-02-17 19:43:02.644087"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.645016"], ["updated_at", "2023-02-17 19:43:02.645016"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.645915"], ["updated_at", "2023-02-17 19:43:02.645915"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:02.646727"], ["updated_at", "2023-02-17 19:43:02.646727"]]
LikertScaleQuestion Create (0.2ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.647640"], ["updated_at", "2023-02-17 19:43:02.647640"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.648696"], ["updated_at", "2023-02-17 19:43:02.648696"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.650254"], ["updated_at", "2023-02-17 19:43:02.650254"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.651809"], ["updated_at", "2023-02-17 19:43:02.651809"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.652668"], ["updated_at", "2023-02-17 19:43:02.652668"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.653687"], ["updated_at", "2023-02-17 19:43:02.653687"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.655167"], ["updated_at", "2023-02-17 19:43:02.655167"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.656351"], ["updated_at", "2023-02-17 19:43:02.656351"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.657254"], ["updated_at", "2023-02-17 19:43:02.657254"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.658086"], ["updated_at", "2023-02-17 19:43:02.658086"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.659095"], ["updated_at", "2023-02-17 19:43:02.659095"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.660139"], ["updated_at", "2023-02-17 19:43:02.660139"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (1.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.6ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:02.686163"], ["updated_at", "2023-02-17 19:43:02.686163"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:02.690311"], ["updated_at", "2023-02-17 19:43:02.690311"]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:02.692274"], ["updated_at", "2023-02-17 19:43:02.692274"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:02.694158"], ["updated_at", "2023-02-17 19:43:02.694158"]]
QuestionOption Create (0.2ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:02.695984"], ["updated_at", "2023-02-17 19:43:02.695984"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:02.697456"], ["updated_at", "2023-02-17 19:43:02.697456"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:02.702252"], ["updated_at", "2023-02-17 19:43:02.702252"]]
QuestionOption Create (0.5ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:02.703947"], ["updated_at", "2023-02-17 19:43:02.703947"]]
SurveyQuestion Create (0.4ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:02.705510"], ["updated_at", "2023-02-17 19:43:02.705510"]]
LikertScaleQuestion Create (2.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.707433"], ["updated_at", "2023-02-17 19:43:02.707433"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.711210"], ["updated_at", "2023-02-17 19:43:02.711210"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.712260"], ["updated_at", "2023-02-17 19:43:02.712260"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.713189"], ["updated_at", "2023-02-17 19:43:02.713189"]]
LikertScaleQuestion Create (0.7ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.714056"], ["updated_at", "2023-02-17 19:43:02.714056"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.715753"], ["updated_at", "2023-02-17 19:43:02.715753"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.716835"], ["updated_at", "2023-02-17 19:43:02.716835"]]
LikertScaleQuestion Create (0.9ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.718132"], ["updated_at", "2023-02-17 19:43:02.718132"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.720249"], ["updated_at", "2023-02-17 19:43:02.720249"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.721336"], ["updated_at", "2023-02-17 19:43:02.721336"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.722244"], ["updated_at", "2023-02-17 19:43:02.722244"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:02.723676"], ["updated_at", "2023-02-17 19:43:02.723676"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.2ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.3ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.748712"], ["updated_at", "2023-02-17 19:43:02.748712"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.752228"], ["updated_at", "2023-02-17 19:43:02.752228"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.753658"], ["updated_at", "2023-02-17 19:43:02.753658"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.754700"], ["updated_at", "2023-02-17 19:43:02.754700"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.755751"], ["updated_at", "2023-02-17 19:43:02.755751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.757184"], ["updated_at", "2023-02-17 19:43:02.757184"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.758237"], ["updated_at", "2023-02-17 19:43:02.758237"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.761015"], ["updated_at", "2023-02-17 19:43:02.761015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.762007"], ["updated_at", "2023-02-17 19:43:02.762007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.762881"], ["updated_at", "2023-02-17 19:43:02.762881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.763730"], ["updated_at", "2023-02-17 19:43:02.763730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.764832"], ["updated_at", "2023-02-17 19:43:02.764832"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.766390"], ["updated_at", "2023-02-17 19:43:02.766390"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.767403"], ["updated_at", "2023-02-17 19:43:02.767403"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.768569"], ["updated_at", "2023-02-17 19:43:02.768569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:02.771363"], ["updated_at", "2023-02-17 19:43:02.771363"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.795829"], ["updated_at", "2023-02-17 19:43:02.795829"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.797233"], ["updated_at", "2023-02-17 19:43:02.797233"]]
QuestionAnswer Create (1.3ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.798207"], ["updated_at", "2023-02-17 19:43:02.798207"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.800780"], ["updated_at", "2023-02-17 19:43:02.800780"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.802282"], ["updated_at", "2023-02-17 19:43:02.802282"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.803230"], ["updated_at", "2023-02-17 19:43:02.803230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.803970"], ["updated_at", "2023-02-17 19:43:02.803970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.804667"], ["updated_at", "2023-02-17 19:43:02.804667"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.805432"], ["updated_at", "2023-02-17 19:43:02.805432"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.806269"], ["updated_at", "2023-02-17 19:43:02.806269"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.807130"], ["updated_at", "2023-02-17 19:43:02.807130"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.808792"], ["updated_at", "2023-02-17 19:43:02.808792"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.811154"], ["updated_at", "2023-02-17 19:43:02.811154"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.812268"], ["updated_at", "2023-02-17 19:43:02.812268"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.813346"], ["updated_at", "2023-02-17 19:43:02.813346"]]
LikertScaleAnswer Create (0.7ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:02.815009"], ["updated_at", "2023-02-17 19:43:02.815009"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.2ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.4ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.4ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.2ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.858633"], ["updated_at", "2023-02-17 19:43:02.858633"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.860565"], ["updated_at", "2023-02-17 19:43:02.860565"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.861940"], ["updated_at", "2023-02-17 19:43:02.861940"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.863227"], ["updated_at", "2023-02-17 19:43:02.863227"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.864236"], ["updated_at", "2023-02-17 19:43:02.864236"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.865259"], ["updated_at", "2023-02-17 19:43:02.865259"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.866944"], ["updated_at", "2023-02-17 19:43:02.866944"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.868828"], ["updated_at", "2023-02-17 19:43:02.868828"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.870015"], ["updated_at", "2023-02-17 19:43:02.870015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.871104"], ["updated_at", "2023-02-17 19:43:02.871104"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.872088"], ["updated_at", "2023-02-17 19:43:02.872088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.873239"], ["updated_at", "2023-02-17 19:43:02.873239"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.874296"], ["updated_at", "2023-02-17 19:43:02.874296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.876825"], ["updated_at", "2023-02-17 19:43:02.876825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.877786"], ["updated_at", "2023-02-17 19:43:02.877786"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:02.878540"], ["updated_at", "2023-02-17 19:43:02.878540"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.2ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.7ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.900614"], ["updated_at", "2023-02-17 19:43:02.900614"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.902342"], ["updated_at", "2023-02-17 19:43:02.902342"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.903363"], ["updated_at", "2023-02-17 19:43:02.903363"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.904088"], ["updated_at", "2023-02-17 19:43:02.904088"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.905006"], ["updated_at", "2023-02-17 19:43:02.905006"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.905821"], ["updated_at", "2023-02-17 19:43:02.905821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.906497"], ["updated_at", "2023-02-17 19:43:02.906497"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.907404"], ["updated_at", "2023-02-17 19:43:02.907404"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.908752"], ["updated_at", "2023-02-17 19:43:02.908752"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.909738"], ["updated_at", "2023-02-17 19:43:02.909738"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.910842"], ["updated_at", "2023-02-17 19:43:02.910842"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.911819"], ["updated_at", "2023-02-17 19:43:02.911819"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.912630"], ["updated_at", "2023-02-17 19:43:02.912630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.913344"], ["updated_at", "2023-02-17 19:43:02.913344"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.914018"], ["updated_at", "2023-02-17 19:43:02.914018"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:02.914713"], ["updated_at", "2023-02-17 19:43:02.914713"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.930932"], ["updated_at", "2023-02-17 19:43:02.930932"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.931909"], ["updated_at", "2023-02-17 19:43:02.931909"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.932670"], ["updated_at", "2023-02-17 19:43:02.932670"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.933459"], ["updated_at", "2023-02-17 19:43:02.933459"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.934196"], ["updated_at", "2023-02-17 19:43:02.934196"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.934970"], ["updated_at", "2023-02-17 19:43:02.934970"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.935751"], ["updated_at", "2023-02-17 19:43:02.935751"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.936451"], ["updated_at", "2023-02-17 19:43:02.936451"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.937136"], ["updated_at", "2023-02-17 19:43:02.937136"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.937823"], ["updated_at", "2023-02-17 19:43:02.937823"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.938517"], ["updated_at", "2023-02-17 19:43:02.938517"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.939221"], ["updated_at", "2023-02-17 19:43:02.939221"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.940032"], ["updated_at", "2023-02-17 19:43:02.940032"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.941081"], ["updated_at", "2023-02-17 19:43:02.941081"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.941821"], ["updated_at", "2023-02-17 19:43:02.941821"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:02.942501"], ["updated_at", "2023-02-17 19:43:02.942501"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:02.958269"], ["updated_at", "2023-02-17 19:43:02.958269"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:02.959239"], ["updated_at", "2023-02-17 19:43:02.959239"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:02.959991"], ["updated_at", "2023-02-17 19:43:02.959991"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:02.960847"], ["updated_at", "2023-02-17 19:43:02.960847"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.961681"], ["updated_at", "2023-02-17 19:43:02.961681"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.962410"], ["updated_at", "2023-02-17 19:43:02.962410"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.963107"], ["updated_at", "2023-02-17 19:43:02.963107"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.963833"], ["updated_at", "2023-02-17 19:43:02.963833"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.964499"], ["updated_at", "2023-02-17 19:43:02.964499"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.965190"], ["updated_at", "2023-02-17 19:43:02.965190"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.965868"], ["updated_at", "2023-02-17 19:43:02.965868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.966643"], ["updated_at", "2023-02-17 19:43:02.966643"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.967342"], ["updated_at", "2023-02-17 19:43:02.967342"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.968036"], ["updated_at", "2023-02-17 19:43:02.968036"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.968716"], ["updated_at", "2023-02-17 19:43:02.968716"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:02.969448"], ["updated_at", "2023-02-17 19:43:02.969448"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:43:02 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 416)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:02.978259"], ["updated_at", "2023-02-17 19:43:02.978259"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.2ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:43:02.979687"], ["updated_at", "2023-02-17 19:43:02.979687"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:43:02.982850"], ["updated_at", "2023-02-17 19:43:02.982850"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:43:02.984230"], ["updated_at", "2023-02-17 19:43:02.984230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:43:02.986987"], ["updated_at", "2023-02-17 19:43:02.986987"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:43:02.988202"], ["updated_at", "2023-02-17 19:43:02.988202"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:43:02.990426"], ["updated_at", "2023-02-17 19:43:02.990426"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:43:02.991989"], ["updated_at", "2023-02-17 19:43:02.991989"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:43:02.993691"], ["updated_at", "2023-02-17 19:43:02.993691"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:43:02.995157"], ["updated_at", "2023-02-17 19:43:02.995157"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:43:02.996714"], ["updated_at", "2023-02-17 19:43:02.996714"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:43:02.998089"], ["updated_at", "2023-02-17 19:43:02.998089"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:43:02.999688"], ["updated_at", "2023-02-17 19:43:02.999688"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:43:03.001404"], ["updated_at", "2023-02-17 19:43:03.001404"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:43:03.003031"], ["updated_at", "2023-02-17 19:43:03.003031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:43:03.004354"], ["updated_at", "2023-02-17 19:43:03.004354"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:43:03.005880"], ["updated_at", "2023-02-17 19:43:03.005880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:43:03.007241"], ["updated_at", "2023-02-17 19:43:03.007241"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:43:03.009010"], ["updated_at", "2023-02-17 19:43:03.009010"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:43:03.010475"], ["updated_at", "2023-02-17 19:43:03.010475"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:43:03.012269"], ["updated_at", "2023-02-17 19:43:03.012269"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:43:03.013625"], ["updated_at", "2023-02-17 19:43:03.013625"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:43:03.015129"], ["updated_at", "2023-02-17 19:43:03.015129"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:43:03.016596"], ["updated_at", "2023-02-17 19:43:03.016596"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:43:03.018158"], ["updated_at", "2023-02-17 19:43:03.018158"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:43:03.019464"], ["updated_at", "2023-02-17 19:43:03.019464"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:43:03.021084"], ["updated_at", "2023-02-17 19:43:03.021084"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:43:03.022436"], ["updated_at", "2023-02-17 19:43:03.022436"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:43:03.023983"], ["updated_at", "2023-02-17 19:43:03.023983"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:43:03.025340"], ["updated_at", "2023-02-17 19:43:03.025340"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:43:03.026867"], ["updated_at", "2023-02-17 19:43:03.026867"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:43:03.028200"], ["updated_at", "2023-02-17 19:43:03.028200"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:43:03.029721"], ["updated_at", "2023-02-17 19:43:03.029721"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:43:03.031380"], ["updated_at", "2023-02-17 19:43:03.031380"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:43:03.033131"], ["updated_at", "2023-02-17 19:43:03.033131"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:43:03.034507"], ["updated_at", "2023-02-17 19:43:03.034507"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:43:03.036040"], ["updated_at", "2023-02-17 19:43:03.036040"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:43:03.037377"], ["updated_at", "2023-02-17 19:43:03.037377"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:43:03.038886"], ["updated_at", "2023-02-17 19:43:03.038886"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:43:03.040313"], ["updated_at", "2023-02-17 19:43:03.040313"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:43:03.042084"], ["updated_at", "2023-02-17 19:43:03.042084"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:43:03.043417"], ["updated_at", "2023-02-17 19:43:03.043417"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:43:03.044919"], ["updated_at", "2023-02-17 19:43:03.044919"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.046302"], ["updated_at", "2023-02-17 19:43:03.046302"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:43:03.047823"], ["updated_at", "2023-02-17 19:43:03.047823"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:43:03.049181"], ["updated_at", "2023-02-17 19:43:03.049181"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:43:03.050895"], ["updated_at", "2023-02-17 19:43:03.050895"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:43:03.052329"], ["updated_at", "2023-02-17 19:43:03.052329"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:43:03.053883"], ["updated_at", "2023-02-17 19:43:03.053883"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:43:03.055255"], ["updated_at", "2023-02-17 19:43:03.055255"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:43:03.056809"], ["updated_at", "2023-02-17 19:43:03.056809"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:43:03.058163"], ["updated_at", "2023-02-17 19:43:03.058163"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:43:03.059650"], ["updated_at", "2023-02-17 19:43:03.059650"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:43:03.061280"], ["updated_at", "2023-02-17 19:43:03.061280"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:43:03.063009"], ["updated_at", "2023-02-17 19:43:03.063009"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:43:03.064361"], ["updated_at", "2023-02-17 19:43:03.064361"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:43:03.065915"], ["updated_at", "2023-02-17 19:43:03.065915"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:43:03.067386"], ["updated_at", "2023-02-17 19:43:03.067386"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:43:03.068922"], ["updated_at", "2023-02-17 19:43:03.068922"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:43:03.070323"], ["updated_at", "2023-02-17 19:43:03.070323"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:43:03.072169"], ["updated_at", "2023-02-17 19:43:03.072169"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:43:03.073610"], ["updated_at", "2023-02-17 19:43:03.073610"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:43:03.075146"], ["updated_at", "2023-02-17 19:43:03.075146"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.076546"], ["updated_at", "2023-02-17 19:43:03.076546"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:43:03.078099"], ["updated_at", "2023-02-17 19:43:03.078099"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:43:03.079415"], ["updated_at", "2023-02-17 19:43:03.079415"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:43:03.081029"], ["updated_at", "2023-02-17 19:43:03.081029"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:43:03.082429"], ["updated_at", "2023-02-17 19:43:03.082429"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:43:03.084130"], ["updated_at", "2023-02-17 19:43:03.084130"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.085463"], ["updated_at", "2023-02-17 19:43:03.085463"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:43:03.086973"], ["updated_at", "2023-02-17 19:43:03.086973"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:43:03.088314"], ["updated_at", "2023-02-17 19:43:03.088314"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:43:03.089828"], ["updated_at", "2023-02-17 19:43:03.089828"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:43:03.091482"], ["updated_at", "2023-02-17 19:43:03.091482"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:43:03.093173"], ["updated_at", "2023-02-17 19:43:03.093173"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:43:03.094529"], ["updated_at", "2023-02-17 19:43:03.094529"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:43:03.096031"], ["updated_at", "2023-02-17 19:43:03.096031"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:43:03.097364"], ["updated_at", "2023-02-17 19:43:03.097364"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:43:03.098902"], ["updated_at", "2023-02-17 19:43:03.098902"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:43:03.100361"], ["updated_at", "2023-02-17 19:43:03.100361"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:43:03.102196"], ["updated_at", "2023-02-17 19:43:03.102196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.103540"], ["updated_at", "2023-02-17 19:43:03.103540"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:43:03.105061"], ["updated_at", "2023-02-17 19:43:03.105061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:43:03.106428"], ["updated_at", "2023-02-17 19:43:03.106428"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:43:03.107946"], ["updated_at", "2023-02-17 19:43:03.107946"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:43:03.109285"], ["updated_at", "2023-02-17 19:43:03.109285"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:43:03.110834"], ["updated_at", "2023-02-17 19:43:03.110834"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:43:03.112317"], ["updated_at", "2023-02-17 19:43:03.112317"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:43:03.113933"], ["updated_at", "2023-02-17 19:43:03.113933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:43:03.115296"], ["updated_at", "2023-02-17 19:43:03.115296"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:43:03.116896"], ["updated_at", "2023-02-17 19:43:03.116896"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:43:03.118272"], ["updated_at", "2023-02-17 19:43:03.118272"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:43:03.119753"], ["updated_at", "2023-02-17 19:43:03.119753"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:43:03.121356"], ["updated_at", "2023-02-17 19:43:03.121356"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:43:03.123020"], ["updated_at", "2023-02-17 19:43:03.123020"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:43:03.124236"], ["updated_at", "2023-02-17 19:43:03.124236"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:43:03.125623"], ["updated_at", "2023-02-17 19:43:03.125623"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:43:03.127156"], ["updated_at", "2023-02-17 19:43:03.127156"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:43:03.128813"], ["updated_at", "2023-02-17 19:43:03.128813"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:43:03.130112"], ["updated_at", "2023-02-17 19:43:03.130112"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:43:03.131546"], ["updated_at", "2023-02-17 19:43:03.131546"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:03.143918"], ["updated_at", "2023-02-17 19:43:03.143918"], ["role_id", 2]]
SurveyQuestion Create (0.2ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:03.145313"], ["updated_at", "2023-02-17 19:43:03.145313"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:03.146385"], ["updated_at", "2023-02-17 19:43:03.146385"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.147360"], ["updated_at", "2023-02-17 19:43:03.147360"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.148242"], ["updated_at", "2023-02-17 19:43:03.148242"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.149074"], ["updated_at", "2023-02-17 19:43:03.149074"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.149997"], ["updated_at", "2023-02-17 19:43:03.149997"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.151530"], ["updated_at", "2023-02-17 19:43:03.151530"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:03.152549"], ["updated_at", "2023-02-17 19:43:03.152549"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.153568"], ["updated_at", "2023-02-17 19:43:03.153568"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.154524"], ["updated_at", "2023-02-17 19:43:03.154524"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.155373"], ["updated_at", "2023-02-17 19:43:03.155373"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.156214"], ["updated_at", "2023-02-17 19:43:03.156214"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.157074"], ["updated_at", "2023-02-17 19:43:03.157074"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.157882"], ["updated_at", "2023-02-17 19:43:03.157882"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.158677"], ["updated_at", "2023-02-17 19:43:03.158677"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.159476"], ["updated_at", "2023-02-17 19:43:03.159476"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.160276"], ["updated_at", "2023-02-17 19:43:03.160276"]]
LikertScaleQuestion Create (0.4ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.161395"], ["updated_at", "2023-02-17 19:43:03.161395"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.162801"], ["updated_at", "2023-02-17 19:43:03.162801"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.163882"], ["updated_at", "2023-02-17 19:43:03.163882"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:03.176072"], ["updated_at", "2023-02-17 19:43:03.176072"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:03.177324"], ["updated_at", "2023-02-17 19:43:03.177324"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:03.178349"], ["updated_at", "2023-02-17 19:43:03.178349"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.179397"], ["updated_at", "2023-02-17 19:43:03.179397"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.180301"], ["updated_at", "2023-02-17 19:43:03.180301"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.181340"], ["updated_at", "2023-02-17 19:43:03.181340"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.182377"], ["updated_at", "2023-02-17 19:43:03.182377"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.183332"], ["updated_at", "2023-02-17 19:43:03.183332"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:03.184281"], ["updated_at", "2023-02-17 19:43:03.184281"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.185380"], ["updated_at", "2023-02-17 19:43:03.185380"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.186352"], ["updated_at", "2023-02-17 19:43:03.186352"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.187252"], ["updated_at", "2023-02-17 19:43:03.187252"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.188134"], ["updated_at", "2023-02-17 19:43:03.188134"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.189065"], ["updated_at", "2023-02-17 19:43:03.189065"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.189983"], ["updated_at", "2023-02-17 19:43:03.189983"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.190980"], ["updated_at", "2023-02-17 19:43:03.190980"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.192074"], ["updated_at", "2023-02-17 19:43:03.192074"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.193088"], ["updated_at", "2023-02-17 19:43:03.193088"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.194015"], ["updated_at", "2023-02-17 19:43:03.194015"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.194906"], ["updated_at", "2023-02-17 19:43:03.194906"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.195788"], ["updated_at", "2023-02-17 19:43:03.195788"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.213189"], ["updated_at", "2023-02-17 19:43:03.213189"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.214269"], ["updated_at", "2023-02-17 19:43:03.214269"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.215148"], ["updated_at", "2023-02-17 19:43:03.215148"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.215893"], ["updated_at", "2023-02-17 19:43:03.215893"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.216836"], ["updated_at", "2023-02-17 19:43:03.216836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.217814"], ["updated_at", "2023-02-17 19:43:03.217814"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.218670"], ["updated_at", "2023-02-17 19:43:03.218670"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.219546"], ["updated_at", "2023-02-17 19:43:03.219546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.220417"], ["updated_at", "2023-02-17 19:43:03.220417"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.221455"], ["updated_at", "2023-02-17 19:43:03.221455"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.222447"], ["updated_at", "2023-02-17 19:43:03.222447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.223287"], ["updated_at", "2023-02-17 19:43:03.223287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.224075"], ["updated_at", "2023-02-17 19:43:03.224075"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.224854"], ["updated_at", "2023-02-17 19:43:03.224854"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.225646"], ["updated_at", "2023-02-17 19:43:03.225646"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.226478"], ["updated_at", "2023-02-17 19:43:03.226478"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.243648"], ["updated_at", "2023-02-17 19:43:03.243648"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.244691"], ["updated_at", "2023-02-17 19:43:03.244691"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.245535"], ["updated_at", "2023-02-17 19:43:03.245535"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.246300"], ["updated_at", "2023-02-17 19:43:03.246300"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.247105"], ["updated_at", "2023-02-17 19:43:03.247105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.247876"], ["updated_at", "2023-02-17 19:43:03.247876"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.248617"], ["updated_at", "2023-02-17 19:43:03.248617"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.249370"], ["updated_at", "2023-02-17 19:43:03.249370"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.250196"], ["updated_at", "2023-02-17 19:43:03.250196"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.250954"], ["updated_at", "2023-02-17 19:43:03.250954"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.252032"], ["updated_at", "2023-02-17 19:43:03.252032"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.252886"], ["updated_at", "2023-02-17 19:43:03.252886"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.253626"], ["updated_at", "2023-02-17 19:43:03.253626"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.254356"], ["updated_at", "2023-02-17 19:43:03.254356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.255105"], ["updated_at", "2023-02-17 19:43:03.255105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.255843"], ["updated_at", "2023-02-17 19:43:03.255843"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.272937"], ["updated_at", "2023-02-17 19:43:03.272937"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.273983"], ["updated_at", "2023-02-17 19:43:03.273983"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.274763"], ["updated_at", "2023-02-17 19:43:03.274763"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.275452"], ["updated_at", "2023-02-17 19:43:03.275452"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.276196"], ["updated_at", "2023-02-17 19:43:03.276196"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.276920"], ["updated_at", "2023-02-17 19:43:03.276920"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.277689"], ["updated_at", "2023-02-17 19:43:03.277689"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.278591"], ["updated_at", "2023-02-17 19:43:03.278591"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.279613"], ["updated_at", "2023-02-17 19:43:03.279613"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.280658"], ["updated_at", "2023-02-17 19:43:03.280658"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.281495"], ["updated_at", "2023-02-17 19:43:03.281495"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.282361"], ["updated_at", "2023-02-17 19:43:03.282361"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.283301"], ["updated_at", "2023-02-17 19:43:03.283301"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.284053"], ["updated_at", "2023-02-17 19:43:03.284053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.284730"], ["updated_at", "2023-02-17 19:43:03.284730"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.285415"], ["updated_at", "2023-02-17 19:43:03.285415"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.302494"], ["updated_at", "2023-02-17 19:43:03.302494"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.303467"], ["updated_at", "2023-02-17 19:43:03.303467"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.304323"], ["updated_at", "2023-02-17 19:43:03.304323"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.305189"], ["updated_at", "2023-02-17 19:43:03.305189"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.306130"], ["updated_at", "2023-02-17 19:43:03.306130"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.307011"], ["updated_at", "2023-02-17 19:43:03.307011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.307841"], ["updated_at", "2023-02-17 19:43:03.307841"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.308565"], ["updated_at", "2023-02-17 19:43:03.308565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.309569"], ["updated_at", "2023-02-17 19:43:03.309569"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.310535"], ["updated_at", "2023-02-17 19:43:03.310535"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.311327"], ["updated_at", "2023-02-17 19:43:03.311327"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.312149"], ["updated_at", "2023-02-17 19:43:03.312149"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.313015"], ["updated_at", "2023-02-17 19:43:03.313015"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.313836"], ["updated_at", "2023-02-17 19:43:03.313836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.314712"], ["updated_at", "2023-02-17 19:43:03.314712"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.315553"], ["updated_at", "2023-02-17 19:43:03.315553"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.333298"], ["updated_at", "2023-02-17 19:43:03.333298"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.334344"], ["updated_at", "2023-02-17 19:43:03.334344"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.335234"], ["updated_at", "2023-02-17 19:43:03.335234"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.336119"], ["updated_at", "2023-02-17 19:43:03.336119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.336992"], ["updated_at", "2023-02-17 19:43:03.336992"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.337737"], ["updated_at", "2023-02-17 19:43:03.337737"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.338589"], ["updated_at", "2023-02-17 19:43:03.338589"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.339648"], ["updated_at", "2023-02-17 19:43:03.339648"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.340612"], ["updated_at", "2023-02-17 19:43:03.340612"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.341513"], ["updated_at", "2023-02-17 19:43:03.341513"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.342384"], ["updated_at", "2023-02-17 19:43:03.342384"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.343154"], ["updated_at", "2023-02-17 19:43:03.343154"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.343949"], ["updated_at", "2023-02-17 19:43:03.343949"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.344803"], ["updated_at", "2023-02-17 19:43:03.344803"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.345694"], ["updated_at", "2023-02-17 19:43:03.345694"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.346474"], ["updated_at", "2023-02-17 19:43:03.346474"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.364333"], ["updated_at", "2023-02-17 19:43:03.364333"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.365436"], ["updated_at", "2023-02-17 19:43:03.365436"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.366521"], ["updated_at", "2023-02-17 19:43:03.366521"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.367458"], ["updated_at", "2023-02-17 19:43:03.367458"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.368540"], ["updated_at", "2023-02-17 19:43:03.368540"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.369576"], ["updated_at", "2023-02-17 19:43:03.369576"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.370424"], ["updated_at", "2023-02-17 19:43:03.370424"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.371230"], ["updated_at", "2023-02-17 19:43:03.371230"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.372067"], ["updated_at", "2023-02-17 19:43:03.372067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.372866"], ["updated_at", "2023-02-17 19:43:03.372866"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.373702"], ["updated_at", "2023-02-17 19:43:03.373702"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.374516"], ["updated_at", "2023-02-17 19:43:03.374516"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.375240"], ["updated_at", "2023-02-17 19:43:03.375240"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.375981"], ["updated_at", "2023-02-17 19:43:03.375981"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.376736"], ["updated_at", "2023-02-17 19:43:03.376736"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.377519"], ["updated_at", "2023-02-17 19:43:03.377519"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/members/1” for 127.0.0.1 at 2023-02-17 16:43:03 -0300 Processing by MembersController#show as HTML

Parameters: {"id"=>"1"}
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 319)

TRANSACTION (0.3ms)  rollback transaction
TRANSACTION (0.1ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.3ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:03.388236"], ["updated_at", "2023-02-17 19:43:03.388236"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:43:03.390014"], ["updated_at", "2023-02-17 19:43:03.390014"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:43:03.393228"], ["updated_at", "2023-02-17 19:43:03.393228"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:43:03.394496"], ["updated_at", "2023-02-17 19:43:03.394496"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.1ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:43:03.397474"], ["updated_at", "2023-02-17 19:43:03.397474"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:43:03.399005"], ["updated_at", "2023-02-17 19:43:03.399005"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:43:03.401504"], ["updated_at", "2023-02-17 19:43:03.401504"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:43:03.403030"], ["updated_at", "2023-02-17 19:43:03.403030"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:43:03.404767"], ["updated_at", "2023-02-17 19:43:03.404767"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:43:03.406245"], ["updated_at", "2023-02-17 19:43:03.406245"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:43:03.407772"], ["updated_at", "2023-02-17 19:43:03.407772"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:43:03.409254"], ["updated_at", "2023-02-17 19:43:03.409254"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:43:03.410792"], ["updated_at", "2023-02-17 19:43:03.410792"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:43:03.412103"], ["updated_at", "2023-02-17 19:43:03.412103"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:43:03.413594"], ["updated_at", "2023-02-17 19:43:03.413594"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:43:03.414881"], ["updated_at", "2023-02-17 19:43:03.414881"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:43:03.416448"], ["updated_at", "2023-02-17 19:43:03.416448"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:43:03.417800"], ["updated_at", "2023-02-17 19:43:03.417800"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:43:03.419640"], ["updated_at", "2023-02-17 19:43:03.419640"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:43:03.420919"], ["updated_at", "2023-02-17 19:43:03.420919"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:43:03.422436"], ["updated_at", "2023-02-17 19:43:03.422436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:43:03.423723"], ["updated_at", "2023-02-17 19:43:03.423723"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:43:03.425108"], ["updated_at", "2023-02-17 19:43:03.425108"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:43:03.426283"], ["updated_at", "2023-02-17 19:43:03.426283"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:43:03.427749"], ["updated_at", "2023-02-17 19:43:03.427749"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:43:03.429416"], ["updated_at", "2023-02-17 19:43:03.429416"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:43:03.430996"], ["updated_at", "2023-02-17 19:43:03.430996"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:43:03.432201"], ["updated_at", "2023-02-17 19:43:03.432201"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:43:03.433682"], ["updated_at", "2023-02-17 19:43:03.433682"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:43:03.434872"], ["updated_at", "2023-02-17 19:43:03.434872"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:43:03.436206"], ["updated_at", "2023-02-17 19:43:03.436206"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:43:03.437367"], ["updated_at", "2023-02-17 19:43:03.437367"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:43:03.438923"], ["updated_at", "2023-02-17 19:43:03.438923"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:43:03.440157"], ["updated_at", "2023-02-17 19:43:03.440157"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:43:03.441513"], ["updated_at", "2023-02-17 19:43:03.441513"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:43:03.442664"], ["updated_at", "2023-02-17 19:43:03.442664"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:43:03.443971"], ["updated_at", "2023-02-17 19:43:03.443971"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:43:03.445159"], ["updated_at", "2023-02-17 19:43:03.445159"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:43:03.446497"], ["updated_at", "2023-02-17 19:43:03.446497"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:43:03.447651"], ["updated_at", "2023-02-17 19:43:03.447651"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:43:03.449367"], ["updated_at", "2023-02-17 19:43:03.449367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:43:03.450791"], ["updated_at", "2023-02-17 19:43:03.450791"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:43:03.452137"], ["updated_at", "2023-02-17 19:43:03.452137"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.453305"], ["updated_at", "2023-02-17 19:43:03.453305"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:43:03.454683"], ["updated_at", "2023-02-17 19:43:03.454683"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:43:03.455822"], ["updated_at", "2023-02-17 19:43:03.455822"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:43:03.457167"], ["updated_at", "2023-02-17 19:43:03.457167"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:43:03.458380"], ["updated_at", "2023-02-17 19:43:03.458380"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:43:03.460097"], ["updated_at", "2023-02-17 19:43:03.460097"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:43:03.461343"], ["updated_at", "2023-02-17 19:43:03.461343"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:43:03.462656"], ["updated_at", "2023-02-17 19:43:03.462656"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:43:03.463956"], ["updated_at", "2023-02-17 19:43:03.463956"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:43:03.465339"], ["updated_at", "2023-02-17 19:43:03.465339"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:43:03.466621"], ["updated_at", "2023-02-17 19:43:03.466621"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:43:03.468092"], ["updated_at", "2023-02-17 19:43:03.468092"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:43:03.469497"], ["updated_at", "2023-02-17 19:43:03.469497"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:43:03.470890"], ["updated_at", "2023-02-17 19:43:03.470890"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:43:03.472058"], ["updated_at", "2023-02-17 19:43:03.472058"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:43:03.473399"], ["updated_at", "2023-02-17 19:43:03.473399"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:43:03.474585"], ["updated_at", "2023-02-17 19:43:03.474585"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:43:03.475916"], ["updated_at", "2023-02-17 19:43:03.475916"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:43:03.477099"], ["updated_at", "2023-02-17 19:43:03.477099"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:43:03.478657"], ["updated_at", "2023-02-17 19:43:03.478657"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.480180"], ["updated_at", "2023-02-17 19:43:03.480180"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:43:03.481604"], ["updated_at", "2023-02-17 19:43:03.481604"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:43:03.482790"], ["updated_at", "2023-02-17 19:43:03.482790"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:43:03.484353"], ["updated_at", "2023-02-17 19:43:03.484353"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:43:03.485626"], ["updated_at", "2023-02-17 19:43:03.485626"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:43:03.486938"], ["updated_at", "2023-02-17 19:43:03.486938"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.488078"], ["updated_at", "2023-02-17 19:43:03.488078"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:43:03.489933"], ["updated_at", "2023-02-17 19:43:03.489933"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:43:03.491195"], ["updated_at", "2023-02-17 19:43:03.491195"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:43:03.492520"], ["updated_at", "2023-02-17 19:43:03.492520"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:43:03.493740"], ["updated_at", "2023-02-17 19:43:03.493740"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:43:03.495249"], ["updated_at", "2023-02-17 19:43:03.495249"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:43:03.496428"], ["updated_at", "2023-02-17 19:43:03.496428"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:43:03.497969"], ["updated_at", "2023-02-17 19:43:03.497969"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.6ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:43:03.499378"], ["updated_at", "2023-02-17 19:43:03.499378"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:43:03.501899"], ["updated_at", "2023-02-17 19:43:03.501899"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:43:03.503442"], ["updated_at", "2023-02-17 19:43:03.503442"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:43:03.504880"], ["updated_at", "2023-02-17 19:43:03.504880"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.506179"], ["updated_at", "2023-02-17 19:43:03.506179"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:43:03.507529"], ["updated_at", "2023-02-17 19:43:03.507529"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:43:03.508833"], ["updated_at", "2023-02-17 19:43:03.508833"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:43:03.510570"], ["updated_at", "2023-02-17 19:43:03.510570"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:43:03.511953"], ["updated_at", "2023-02-17 19:43:03.511953"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:43:03.513548"], ["updated_at", "2023-02-17 19:43:03.513548"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:43:03.514940"], ["updated_at", "2023-02-17 19:43:03.514940"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:43:03.516623"], ["updated_at", "2023-02-17 19:43:03.516623"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.2ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:43:03.518099"], ["updated_at", "2023-02-17 19:43:03.518099"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:43:03.519941"], ["updated_at", "2023-02-17 19:43:03.519941"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:43:03.521209"], ["updated_at", "2023-02-17 19:43:03.521209"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:43:03.522706"], ["updated_at", "2023-02-17 19:43:03.522706"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:43:03.524048"], ["updated_at", "2023-02-17 19:43:03.524048"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:43:03.525413"], ["updated_at", "2023-02-17 19:43:03.525413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:43:03.526622"], ["updated_at", "2023-02-17 19:43:03.526622"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:43:03.528007"], ["updated_at", "2023-02-17 19:43:03.528007"], ["role_id", 35]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:43:03.529744"], ["updated_at", "2023-02-17 19:43:03.529744"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:43:03.531525"], ["updated_at", "2023-02-17 19:43:03.531525"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:43:03.532835"], ["updated_at", "2023-02-17 19:43:03.532835"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:43:03.534105"], ["updated_at", "2023-02-17 19:43:03.534105"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:03.546159"], ["updated_at", "2023-02-17 19:43:03.546159"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:03.547625"], ["updated_at", "2023-02-17 19:43:03.547625"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:03.548671"], ["updated_at", "2023-02-17 19:43:03.548671"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.549759"], ["updated_at", "2023-02-17 19:43:03.549759"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.550604"], ["updated_at", "2023-02-17 19:43:03.550604"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.551289"], ["updated_at", "2023-02-17 19:43:03.551289"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.551999"], ["updated_at", "2023-02-17 19:43:03.551999"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.552744"], ["updated_at", "2023-02-17 19:43:03.552744"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:03.553494"], ["updated_at", "2023-02-17 19:43:03.553494"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.554339"], ["updated_at", "2023-02-17 19:43:03.554339"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.555146"], ["updated_at", "2023-02-17 19:43:03.555146"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.555963"], ["updated_at", "2023-02-17 19:43:03.555963"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.556779"], ["updated_at", "2023-02-17 19:43:03.556779"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.557515"], ["updated_at", "2023-02-17 19:43:03.557515"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.558232"], ["updated_at", "2023-02-17 19:43:03.558232"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.559011"], ["updated_at", "2023-02-17 19:43:03.559011"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.559810"], ["updated_at", "2023-02-17 19:43:03.559810"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.560631"], ["updated_at", "2023-02-17 19:43:03.560631"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.561439"], ["updated_at", "2023-02-17 19:43:03.561439"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.562524"], ["updated_at", "2023-02-17 19:43:03.562524"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.563623"], ["updated_at", "2023-02-17 19:43:03.563623"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:03.575379"], ["updated_at", "2023-02-17 19:43:03.575379"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:03.576649"], ["updated_at", "2023-02-17 19:43:03.576649"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:03.577567"], ["updated_at", "2023-02-17 19:43:03.577567"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.578501"], ["updated_at", "2023-02-17 19:43:03.578501"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.579559"], ["updated_at", "2023-02-17 19:43:03.579559"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.580452"], ["updated_at", "2023-02-17 19:43:03.580452"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.581215"], ["updated_at", "2023-02-17 19:43:03.581215"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.581899"], ["updated_at", "2023-02-17 19:43:03.581899"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:03.582666"], ["updated_at", "2023-02-17 19:43:03.582666"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.583607"], ["updated_at", "2023-02-17 19:43:03.583607"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.584493"], ["updated_at", "2023-02-17 19:43:03.584493"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.585261"], ["updated_at", "2023-02-17 19:43:03.585261"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.585978"], ["updated_at", "2023-02-17 19:43:03.585978"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.586710"], ["updated_at", "2023-02-17 19:43:03.586710"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.587425"], ["updated_at", "2023-02-17 19:43:03.587425"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.588236"], ["updated_at", "2023-02-17 19:43:03.588236"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.589015"], ["updated_at", "2023-02-17 19:43:03.589015"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.589765"], ["updated_at", "2023-02-17 19:43:03.589765"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.590610"], ["updated_at", "2023-02-17 19:43:03.590610"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.591355"], ["updated_at", "2023-02-17 19:43:03.591355"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.592158"], ["updated_at", "2023-02-17 19:43:03.592158"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.608456"], ["updated_at", "2023-02-17 19:43:03.608456"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.609588"], ["updated_at", "2023-02-17 19:43:03.609588"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.610410"], ["updated_at", "2023-02-17 19:43:03.610410"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.611349"], ["updated_at", "2023-02-17 19:43:03.611349"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.612502"], ["updated_at", "2023-02-17 19:43:03.612502"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.613546"], ["updated_at", "2023-02-17 19:43:03.613546"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.614296"], ["updated_at", "2023-02-17 19:43:03.614296"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.615011"], ["updated_at", "2023-02-17 19:43:03.615011"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.615749"], ["updated_at", "2023-02-17 19:43:03.615749"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.616588"], ["updated_at", "2023-02-17 19:43:03.616588"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.617879"], ["updated_at", "2023-02-17 19:43:03.617879"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.618661"], ["updated_at", "2023-02-17 19:43:03.618661"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.619362"], ["updated_at", "2023-02-17 19:43:03.619362"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.620037"], ["updated_at", "2023-02-17 19:43:03.620037"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.620724"], ["updated_at", "2023-02-17 19:43:03.620724"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.621436"], ["updated_at", "2023-02-17 19:43:03.621436"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.637336"], ["updated_at", "2023-02-17 19:43:03.637336"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.638297"], ["updated_at", "2023-02-17 19:43:03.638297"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.639054"], ["updated_at", "2023-02-17 19:43:03.639054"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.639756"], ["updated_at", "2023-02-17 19:43:03.639756"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.640490"], ["updated_at", "2023-02-17 19:43:03.640490"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.641212"], ["updated_at", "2023-02-17 19:43:03.641212"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.641891"], ["updated_at", "2023-02-17 19:43:03.641891"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.642552"], ["updated_at", "2023-02-17 19:43:03.642552"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.643229"], ["updated_at", "2023-02-17 19:43:03.643229"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.643902"], ["updated_at", "2023-02-17 19:43:03.643902"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.644622"], ["updated_at", "2023-02-17 19:43:03.644622"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.645375"], ["updated_at", "2023-02-17 19:43:03.645375"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.646070"], ["updated_at", "2023-02-17 19:43:03.646070"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.646747"], ["updated_at", "2023-02-17 19:43:03.646747"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.647524"], ["updated_at", "2023-02-17 19:43:03.647524"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:03.648255"], ["updated_at", "2023-02-17 19:43:03.648255"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.663713"], ["updated_at", "2023-02-17 19:43:03.663713"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.664835"], ["updated_at", "2023-02-17 19:43:03.664835"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.665760"], ["updated_at", "2023-02-17 19:43:03.665760"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.666596"], ["updated_at", "2023-02-17 19:43:03.666596"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.667401"], ["updated_at", "2023-02-17 19:43:03.667401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.668119"], ["updated_at", "2023-02-17 19:43:03.668119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.668802"], ["updated_at", "2023-02-17 19:43:03.668802"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.669500"], ["updated_at", "2023-02-17 19:43:03.669500"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.670204"], ["updated_at", "2023-02-17 19:43:03.670204"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.670881"], ["updated_at", "2023-02-17 19:43:03.670881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.671560"], ["updated_at", "2023-02-17 19:43:03.671560"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.672255"], ["updated_at", "2023-02-17 19:43:03.672255"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.672958"], ["updated_at", "2023-02-17 19:43:03.672958"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.673657"], ["updated_at", "2023-02-17 19:43:03.673657"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.674347"], ["updated_at", "2023-02-17 19:43:03.674347"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:03.675036"], ["updated_at", "2023-02-17 19:43:03.675036"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.691007"], ["updated_at", "2023-02-17 19:43:03.691007"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.691986"], ["updated_at", "2023-02-17 19:43:03.691986"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.692750"], ["updated_at", "2023-02-17 19:43:03.692750"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.693469"], ["updated_at", "2023-02-17 19:43:03.693469"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.694234"], ["updated_at", "2023-02-17 19:43:03.694234"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.695007"], ["updated_at", "2023-02-17 19:43:03.695007"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.695739"], ["updated_at", "2023-02-17 19:43:03.695739"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.696440"], ["updated_at", "2023-02-17 19:43:03.696440"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.697142"], ["updated_at", "2023-02-17 19:43:03.697142"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.697861"], ["updated_at", "2023-02-17 19:43:03.697861"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.698565"], ["updated_at", "2023-02-17 19:43:03.698565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.699287"], ["updated_at", "2023-02-17 19:43:03.699287"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.700114"], ["updated_at", "2023-02-17 19:43:03.700114"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.700825"], ["updated_at", "2023-02-17 19:43:03.700825"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.701536"], ["updated_at", "2023-02-17 19:43:03.701536"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:03.702242"], ["updated_at", "2023-02-17 19:43:03.702242"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.724938"], ["updated_at", "2023-02-17 19:43:03.724938"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.725894"], ["updated_at", "2023-02-17 19:43:03.725894"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.726628"], ["updated_at", "2023-02-17 19:43:03.726628"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.727322"], ["updated_at", "2023-02-17 19:43:03.727322"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.728072"], ["updated_at", "2023-02-17 19:43:03.728072"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.728771"], ["updated_at", "2023-02-17 19:43:03.728771"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.729443"], ["updated_at", "2023-02-17 19:43:03.729443"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.730113"], ["updated_at", "2023-02-17 19:43:03.730113"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.730779"], ["updated_at", "2023-02-17 19:43:03.730779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.731433"], ["updated_at", "2023-02-17 19:43:03.731433"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.732105"], ["updated_at", "2023-02-17 19:43:03.732105"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.732766"], ["updated_at", "2023-02-17 19:43:03.732766"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.733565"], ["updated_at", "2023-02-17 19:43:03.733565"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.734241"], ["updated_at", "2023-02-17 19:43:03.734241"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.734918"], ["updated_at", "2023-02-17 19:43:03.734918"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:03.735580"], ["updated_at", "2023-02-17 19:43:03.735580"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.750396"], ["updated_at", "2023-02-17 19:43:03.750396"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.751361"], ["updated_at", "2023-02-17 19:43:03.751361"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.752111"], ["updated_at", "2023-02-17 19:43:03.752111"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.752799"], ["updated_at", "2023-02-17 19:43:03.752799"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.753753"], ["updated_at", "2023-02-17 19:43:03.753753"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.754797"], ["updated_at", "2023-02-17 19:43:03.754797"]]
LikertScaleAnswer Create (0.2ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.755868"], ["updated_at", "2023-02-17 19:43:03.755868"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.756982"], ["updated_at", "2023-02-17 19:43:03.756982"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.758024"], ["updated_at", "2023-02-17 19:43:03.758024"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.759085"], ["updated_at", "2023-02-17 19:43:03.759085"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.760170"], ["updated_at", "2023-02-17 19:43:03.760170"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.761178"], ["updated_at", "2023-02-17 19:43:03.761178"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.762250"], ["updated_at", "2023-02-17 19:43:03.762250"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.763356"], ["updated_at", "2023-02-17 19:43:03.763356"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.764551"], ["updated_at", "2023-02-17 19:43:03.764551"]]
LikertScaleAnswer Create (0.3ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:03.765662"], ["updated_at", "2023-02-17 19:43:03.765662"]]
TRANSACTION (0.5ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects” for 127.0.0.1 at 2023-02-17 16:43:03 -0300 Processing by SubjectsController#index as HTML

Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects"

Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.1ms | Allocations: 532)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
Subject Exists? (0.2ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0097"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "BANCOS DE DADOS"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0097"], ["name", "BANCOS DE DADOS"], ["created_at", "2023-02-17 19:43:03.776927"], ["updated_at", "2023-02-17 19:43:03.776927"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35T45"], ["subject_id", 1], ["created_at", "2023-02-17 19:43:03.778376"], ["updated_at", "2023-02-17 19:43:03.778376"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0105"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "ENGENHARIA DE SOFTWARE"], ["LIMIT", 1]]
Subject Create (0.6ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0105"], ["name", "ENGENHARIA DE SOFTWARE"], ["created_at", "2023-02-17 19:43:03.782401"], ["updated_at", "2023-02-17 19:43:03.782401"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M12"], ["subject_id", 2], ["created_at", "2023-02-17 19:43:03.784878"], ["updated_at", "2023-02-17 19:43:03.784878"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? AND "subjects"."name" = ? LIMIT ?  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."code" = ? LIMIT ?  [["code", "CIC0202"], ["LIMIT", 1]]
Subject Exists? (0.1ms)  SELECT 1 AS one FROM "subjects" WHERE "subjects"."name" = ? LIMIT ?  [["name", "PROGRAMAÇÃO CONCORRENTE"], ["LIMIT", 1]]
Subject Create (0.2ms)  INSERT INTO "subjects" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["code", "CIC0202"], ["name", "PROGRAMAÇÃO CONCORRENTE"], ["created_at", "2023-02-17 19:43:03.788132"], ["updated_at", "2023-02-17 19:43:03.788132"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Cclass Create (0.1ms)  INSERT INTO "cclasses" ("code", "semester", "time", "subject_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["code", "TA"], ["semester", "2021.2"], ["time", "35M34"], ["subject_id", 3], ["created_at", "2023-02-17 19:43:03.789672"], ["updated_at", "2023-02-17 19:43:03.789672"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" ORDER BY "cclasses"."id" ASC LIMIT ?  [["LIMIT", 1]]
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "discente"], ["description", "discente"], ["created_at", "2023-02-17 19:43:03.791758"], ["updated_at", "2023-02-17 19:43:03.791758"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Ana Clara Jordao Perna"], ["registration", "190084006"], ["username", "190084006"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "acjpjvjp@gmail.com"], ["created_at", "2023-02-17 19:43:03.793175"], ["updated_at", "2023-02-17 19:43:03.793175"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 1], ["created_at", "2023-02-17 19:43:03.794703"], ["updated_at", "2023-02-17 19:43:03.794703"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Andre Carvalho de Roure"], ["registration", "200033522"], ["username", "200033522"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andreCarvalhoroure@gmail.com"], ["created_at", "2023-02-17 19:43:03.796605"], ["updated_at", "2023-02-17 19:43:03.796605"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 2], ["created_at", "2023-02-17 19:43:03.798210"], ["updated_at", "2023-02-17 19:43:03.798210"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "André Carvalho Marques"], ["registration", "150005491"], ["username", "150005491"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "andre.acm97@outlook.com"], ["created_at", "2023-02-17 19:43:03.799395"], ["updated_at", "2023-02-17 19:43:03.799395"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 3], ["created_at", "2023-02-17 19:43:03.801676"], ["updated_at", "2023-02-17 19:43:03.801676"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Antonio Vinicius de Moura Rodrigues"], ["registration", "190084502"], ["username", "190084502"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "antoniovmoura.r@gmail.com"], ["created_at", "2023-02-17 19:43:03.802897"], ["updated_at", "2023-02-17 19:43:03.802897"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 4], ["created_at", "2023-02-17 19:43:03.804255"], ["updated_at", "2023-02-17 19:43:03.804255"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Arthur Barreiros de Oliveira Mota"], ["registration", "190102829"], ["username", "190102829"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arthurbarreirosmota@gmail.com"], ["created_at", "2023-02-17 19:43:03.806112"], ["updated_at", "2023-02-17 19:43:03.806112"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 5], ["created_at", "2023-02-17 19:43:03.807585"], ["updated_at", "2023-02-17 19:43:03.807585"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "ARTHUR RODRIGUES NEVES"], ["registration", "202014403"], ["username", "202014403"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "arthurcontroleambiental@gmail.com"], ["created_at", "2023-02-17 19:43:03.808720"], ["updated_at", "2023-02-17 19:43:03.808720"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 6], ["created_at", "2023-02-17 19:43:03.810023"], ["updated_at", "2023-02-17 19:43:03.810023"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Bianca Glycia Boueri"], ["registration", "170161561"], ["username", "170161561"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "biancaglyciaboueri@gmail.com"], ["created_at", "2023-02-17 19:43:03.811194"], ["updated_at", "2023-02-17 19:43:03.811194"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 7], ["created_at", "2023-02-17 19:43:03.813196"], ["updated_at", "2023-02-17 19:43:03.813196"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Caio Otávio Peluti Alencar"], ["registration", "190085312"], ["username", "190085312"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "peluticaio@gmail.com"], ["created_at", "2023-02-17 19:43:03.814591"], ["updated_at", "2023-02-17 19:43:03.814591"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 8], ["created_at", "2023-02-17 19:43:03.815914"], ["updated_at", "2023-02-17 19:43:03.815914"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Camila Frealdo Fraga"], ["registration", "170007561"], ["username", "170007561"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "camilizx2021@gmail.com"], ["created_at", "2023-02-17 19:43:03.817951"], ["updated_at", "2023-02-17 19:43:03.817951"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 9], ["created_at", "2023-02-17 19:43:03.819447"], ["updated_at", "2023-02-17 19:43:03.819447"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Claudio Roberto Oliveira Peres de Barros"], ["registration", "190097591"], ["username", "190097591"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "dinhobarros15@gmail.com"], ["created_at", "2023-02-17 19:43:03.820602"], ["updated_at", "2023-02-17 19:43:03.820602"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 10], ["created_at", "2023-02-17 19:43:03.822486"], ["updated_at", "2023-02-17 19:43:03.822486"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Daltro Oliveira Vinuto"], ["registration", "160025966"], ["username", "160025966"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "daltroov777@gmail.com"], ["created_at", "2023-02-17 19:43:03.823787"], ["updated_at", "2023-02-17 19:43:03.823787"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 11], ["created_at", "2023-02-17 19:43:03.825177"], ["updated_at", "2023-02-17 19:43:03.825177"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Davi de Moura Amaral"], ["registration", "200016750"], ["username", "200016750"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "davimouraamaral@gmail.com"], ["created_at", "2023-02-17 19:43:03.826321"], ["updated_at", "2023-02-17 19:43:03.826321"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 12], ["created_at", "2023-02-17 19:43:03.827604"], ["updated_at", "2023-02-17 19:43:03.827604"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.3ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Eduardo Xavier Dantas"], ["registration", "190086530"], ["username", "190086530"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "eduardoxdantas@gmail.com"], ["created_at", "2023-02-17 19:43:03.828930"], ["updated_at", "2023-02-17 19:43:03.828930"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 13], ["created_at", "2023-02-17 19:43:03.830885"], ["updated_at", "2023-02-17 19:43:03.830885"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Nunes Leal Sampaio"], ["registration", "190062789"], ["username", "190062789"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzonleal2016@hotmail.com"], ["created_at", "2023-02-17 19:43:03.832159"], ["updated_at", "2023-02-17 19:43:03.832159"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 14], ["created_at", "2023-02-17 19:43:03.834002"], ["updated_at", "2023-02-17 19:43:03.834002"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Enzo Yoshio Niho"], ["registration", "190027304"], ["username", "190027304"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "enzoyn@hotmail.com"], ["created_at", "2023-02-17 19:43:03.835737"], ["updated_at", "2023-02-17 19:43:03.835737"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 15], ["created_at", "2023-02-17 19:43:03.837201"], ["updated_at", "2023-02-17 19:43:03.837201"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Faustino Lima da Rocha"], ["registration", "190013249"], ["username", "190013249"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielfaustino99@gmail.com"], ["created_at", "2023-02-17 19:43:03.839037"], ["updated_at", "2023-02-17 19:43:03.839037"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 16], ["created_at", "2023-02-17 19:43:03.840582"], ["updated_at", "2023-02-17 19:43:03.840582"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gabriel Ligoski"], ["registration", "190087498"], ["username", "190087498"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabriel.ligoski@gmail.com"], ["created_at", "2023-02-17 19:43:03.841732"], ["updated_at", "2023-02-17 19:43:03.841732"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 17], ["created_at", "2023-02-17 19:43:03.843035"], ["updated_at", "2023-02-17 19:43:03.843035"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "GABRIEL MENDES CIRIATICO GUIMARÃES"], ["registration", "202033202"], ["username", "202033202"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gabrielciriatico@gmail.com"], ["created_at", "2023-02-17 19:43:03.844162"], ["updated_at", "2023-02-17 19:43:03.844162"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 18], ["created_at", "2023-02-17 19:43:03.846058"], ["updated_at", "2023-02-17 19:43:03.846058"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues dos Santos"], ["registration", "190014121"], ["username", "190014121"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "190014121@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.847390"], ["updated_at", "2023-02-17 19:43:03.847390"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 19], ["created_at", "2023-02-17 19:43:03.848716"], ["updated_at", "2023-02-17 19:43:03.848716"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Gustavo Rodrigues Gualberto"], ["registration", "190108266"], ["username", "190108266"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "gustavorgualberto@gmail.com"], ["created_at", "2023-02-17 19:43:03.850275"], ["updated_at", "2023-02-17 19:43:03.850275"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 20], ["created_at", "2023-02-17 19:43:03.852222"], ["updated_at", "2023-02-17 19:43:03.852222"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Igor David Morais"], ["registration", "180102141"], ["username", "180102141"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "igordavid13@gmail.com"], ["created_at", "2023-02-17 19:43:03.853498"], ["updated_at", "2023-02-17 19:43:03.853498"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 21], ["created_at", "2023-02-17 19:43:03.854826"], ["updated_at", "2023-02-17 19:43:03.854826"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Jefte Augusto Gomes Batista"], ["registration", "180057570"], ["username", "180057570"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "ndaffte@gmail.com"], ["created_at", "2023-02-17 19:43:03.856693"], ["updated_at", "2023-02-17 19:43:03.856693"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 22], ["created_at", "2023-02-17 19:43:03.858132"], ["updated_at", "2023-02-17 19:43:03.858132"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Karolina de Souza Silva"], ["registration", "190046791"], ["username", "190046791"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "karolinasouza@outlook.com"], ["created_at", "2023-02-17 19:43:03.859274"], ["updated_at", "2023-02-17 19:43:03.859274"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 23], ["created_at", "2023-02-17 19:43:03.860550"], ["updated_at", "2023-02-17 19:43:03.860550"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Kléber Rodrigues da Costa Júnior"], ["registration", "200053680"], ["username", "200053680"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "kleberrjr7@gmail.com"], ["created_at", "2023-02-17 19:43:03.861925"], ["updated_at", "2023-02-17 19:43:03.861925"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 24], ["created_at", "2023-02-17 19:43:03.863512"], ["updated_at", "2023-02-17 19:43:03.863512"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luca Delpino Barbabella"], ["registration", "180125559"], ["username", "180125559"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "barbadluca@gmail.com"], ["created_at", "2023-02-17 19:43:03.864669"], ["updated_at", "2023-02-17 19:43:03.864669"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 25], ["created_at", "2023-02-17 19:43:03.865995"], ["updated_at", "2023-02-17 19:43:03.865995"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas de Almeida Abreu Faria"], ["registration", "170016668"], ["username", "170016668"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasaafaria@gmail.com"], ["created_at", "2023-02-17 19:43:03.867600"], ["updated_at", "2023-02-17 19:43:03.867600"], ["role_id", 34]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 26], ["created_at", "2023-02-17 19:43:03.868958"], ["updated_at", "2023-02-17 19:43:03.868958"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Gonçalves Ramalho"], ["registration", "190098091"], ["username", "190098091"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lucasramalho29@gmail.com"], ["created_at", "2023-02-17 19:43:03.870113"], ["updated_at", "2023-02-17 19:43:03.870113"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 27], ["created_at", "2023-02-17 19:43:03.871401"], ["updated_at", "2023-02-17 19:43:03.871401"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Monteiro Miranda"], ["registration", "170149684"], ["username", "170149684"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "luquinha_miranda@hotmail.com"], ["created_at", "2023-02-17 19:43:03.872512"], ["updated_at", "2023-02-17 19:43:03.872512"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 28], ["created_at", "2023-02-17 19:43:03.873804"], ["updated_at", "2023-02-17 19:43:03.873804"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Lucas Resende Silveira Reis"], ["registration", "180144421"], ["username", "180144421"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180144421@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.874914"], ["updated_at", "2023-02-17 19:43:03.874914"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 29], ["created_at", "2023-02-17 19:43:03.876230"], ["updated_at", "2023-02-17 19:43:03.876230"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luis Fernando Freitas Lamellas"], ["registration", "190016841"], ["username", "190016841"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lflamellas@icloud.com"], ["created_at", "2023-02-17 19:43:03.877384"], ["updated_at", "2023-02-17 19:43:03.877384"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 30], ["created_at", "2023-02-17 19:43:03.878921"], ["updated_at", "2023-02-17 19:43:03.878921"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Luiza de Araujo Nunes Gomes"], ["registration", "190112794"], ["username", "190112794"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "luizangomes@outlook.com"], ["created_at", "2023-02-17 19:43:03.880198"], ["updated_at", "2023-02-17 19:43:03.880198"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 31], ["created_at", "2023-02-17 19:43:03.881514"], ["updated_at", "2023-02-17 19:43:03.881514"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Aiache Postiglione"], ["registration", "180126652"], ["username", "180126652"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "180126652@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.882641"], ["updated_at", "2023-02-17 19:43:03.882641"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 32], ["created_at", "2023-02-17 19:43:03.884071"], ["updated_at", "2023-02-17 19:43:03.884071"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Marcelo Junqueira Ferreira"], ["registration", "200023624"], ["username", "200023624"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "marcelojunqueiraf@gmail.com"], ["created_at", "2023-02-17 19:43:03.885217"], ["updated_at", "2023-02-17 19:43:03.885217"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 33], ["created_at", "2023-02-17 19:43:03.886534"], ["updated_at", "2023-02-17 19:43:03.886534"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARIA EDUARDA CARVALHO SANTOS"], ["registration", "190092556"], ["username", "190092556"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "auntduda@gmail.com"], ["created_at", "2023-02-17 19:43:03.887673"], ["updated_at", "2023-02-17 19:43:03.887673"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 34], ["created_at", "2023-02-17 19:43:03.889007"], ["updated_at", "2023-02-17 19:43:03.889007"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maria Eduarda Lacerda Dantas"], ["registration", "200067184"], ["username", "200067184"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "lacwerda@gmail.com"], ["created_at", "2023-02-17 19:43:03.890138"], ["updated_at", "2023-02-17 19:43:03.890138"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 35], ["created_at", "2023-02-17 19:43:03.891413"], ["updated_at", "2023-02-17 19:43:03.891413"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Maylla Krislainy de Sousa Silva"], ["registration", "190043873"], ["username", "190043873"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "mayllak@hotmail.com"], ["created_at", "2023-02-17 19:43:03.892523"], ["updated_at", "2023-02-17 19:43:03.892523"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 36], ["created_at", "2023-02-17 19:43:03.893815"], ["updated_at", "2023-02-17 19:43:03.893815"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Pedro Cesar Ribeiro Passos"], ["registration", "180139312"], ["username", "180139312"], ["degree", "graduando"], ["course", "ENGENHARIA MECATRÔNICA - CONTROLE E AUTOMAÇÃO/FTD"], ["email", "pedrocesarribeiro2013@gmail.com"], ["created_at", "2023-02-17 19:43:03.895060"], ["updated_at", "2023-02-17 19:43:03.895060"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 37], ["created_at", "2023-02-17 19:43:03.896558"], ["updated_at", "2023-02-17 19:43:03.896558"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rafael Mascarenhas Dal Moro"], ["registration", "170021041"], ["username", "170021041"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "170021041@aluno.unb.br"], ["created_at", "2023-02-17 19:43:03.897718"], ["updated_at", "2023-02-17 19:43:03.897718"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.2ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 38], ["created_at", "2023-02-17 19:43:03.899061"], ["updated_at", "2023-02-17 19:43:03.899061"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Rodrigo Mamedio Arrelaro"], ["registration", "190095164"], ["username", "190095164"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "arrelaro1@hotmail.com"], ["created_at", "2023-02-17 19:43:03.900343"], ["updated_at", "2023-02-17 19:43:03.900343"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 39], ["created_at", "2023-02-17 19:43:03.901680"], ["updated_at", "2023-02-17 19:43:03.901680"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago de Oliveira Albuquerque"], ["registration", "140177442"], ["username", "140177442"], ["degree", "graduando"], ["course", "ENGENHARIA DE COMPUTAÇÃO/CIC"], ["email", "thiago.work.ti@outlook.com"], ["created_at", "2023-02-17 19:43:03.902804"], ["updated_at", "2023-02-17 19:43:03.902804"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 40], ["created_at", "2023-02-17 19:43:03.904126"], ["updated_at", "2023-02-17 19:43:03.904126"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Thiago Elias dos Reis"], ["registration", "190126892"], ["username", "190126892"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "thiagoeliasdosreis01@gmail.com"], ["created_at", "2023-02-17 19:43:03.905263"], ["updated_at", "2023-02-17 19:43:03.905263"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 41], ["created_at", "2023-02-17 19:43:03.906564"], ["updated_at", "2023-02-17 19:43:03.906564"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Victor Hugo Rodrigues Fernandes"], ["registration", "180132041"], ["username", "180132041"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "aluno0sem.luz@gmail.com"], ["created_at", "2023-02-17 19:43:03.907673"], ["updated_at", "2023-02-17 19:43:03.907673"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 42], ["created_at", "2023-02-17 19:43:03.908968"], ["updated_at", "2023-02-17 19:43:03.908968"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "Vinicius Lima Passos"], ["registration", "200028545"], ["username", "200028545"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "viniciuslimapassos@gmail.com"], ["created_at", "2023-02-17 19:43:03.910096"], ["updated_at", "2023-02-17 19:43:03.910096"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 43], ["created_at", "2023-02-17 19:43:03.911413"], ["updated_at", "2023-02-17 19:43:03.911413"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "William Xavier dos Santos"], ["registration", "190075384"], ["username", "190075384"], ["degree", "graduando"], ["course", "CIÊNCIA DA COMPUTAÇÃO/CIC"], ["email", "wilxavier@me.com"], ["created_at", "2023-02-17 19:43:03.912609"], ["updated_at", "2023-02-17 19:43:03.912609"], ["role_id", 34]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 44], ["created_at", "2023-02-17 19:43:03.913929"], ["updated_at", "2023-02-17 19:43:03.913929"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Role Create (0.1ms)  INSERT INTO "roles" ("name", "description", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["name", "docente"], ["description", "docente"], ["created_at", "2023-02-17 19:43:03.914955"], ["updated_at", "2023-02-17 19:43:03.914955"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Member Create (0.1ms)  INSERT INTO "members" ("name", "registration", "username", "degree", "course", "email", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)  [["name", "MARISTELA TERTO DE HOLANDA"], ["registration", "83807519491"], ["username", "83807519491"], ["degree", "DOUTORADO"], ["course", "DEPTO CIÊNCIAS DA COMPUTAÇÃO"], ["email", "mholanda@unb.br"], ["created_at", "2023-02-17 19:43:03.916089"], ["updated_at", "2023-02-17 19:43:03.916089"], ["role_id", 35]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
Enrollment Create (0.1ms)  INSERT INTO "enrollments" ("cclass_id", "member_id", "created_at", "updated_at") VALUES (?, ?, ?, ?)  [["cclass_id", 1], ["member_id", 45], ["created_at", "2023-02-17 19:43:03.917524"], ["updated_at", "2023-02-17 19:43:03.917524"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "discursive"], ["created_at", "2023-02-17 19:43:03.918939"], ["updated_at", "2023-02-17 19:43:03.918939"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "multiple_choice"], ["created_at", "2023-02-17 19:43:03.920077"], ["updated_at", "2023-02-17 19:43:03.920077"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.0ms)  SAVEPOINT active_record_1
QuestionType Create (0.1ms)  INSERT INTO "question_types" ("name", "created_at", "updated_at") VALUES (?, ?, ?)  [["name", "likert_scale"], ["created_at", "2023-02-17 19:43:03.921043"], ["updated_at", "2023-02-17 19:43:03.921043"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.1ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.2ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 1"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:03.932508"], ["updated_at", "2023-02-17 19:43:03.932508"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 1], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:03.933884"], ["updated_at", "2023-02-17 19:43:03.933884"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 1], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:03.934845"], ["updated_at", "2023-02-17 19:43:03.934845"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.935676"], ["updated_at", "2023-02-17 19:43:03.935676"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.936423"], ["updated_at", "2023-02-17 19:43:03.936423"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.937118"], ["updated_at", "2023-02-17 19:43:03.937118"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.937781"], ["updated_at", "2023-02-17 19:43:03.937781"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.938436"], ["updated_at", "2023-02-17 19:43:03.938436"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 1], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:03.939148"], ["updated_at", "2023-02-17 19:43:03.939148"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.939983"], ["updated_at", "2023-02-17 19:43:03.939983"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.940783"], ["updated_at", "2023-02-17 19:43:03.940783"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.941498"], ["updated_at", "2023-02-17 19:43:03.941498"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.942199"], ["updated_at", "2023-02-17 19:43:03.942199"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.942891"], ["updated_at", "2023-02-17 19:43:03.942891"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.943580"], ["updated_at", "2023-02-17 19:43:03.943580"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.944289"], ["updated_at", "2023-02-17 19:43:03.944289"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.944993"], ["updated_at", "2023-02-17 19:43:03.944993"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.945700"], ["updated_at", "2023-02-17 19:43:03.945700"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.946401"], ["updated_at", "2023-02-17 19:43:03.946401"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.947115"], ["updated_at", "2023-02-17 19:43:03.947115"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.947843"], ["updated_at", "2023-02-17 19:43:03.947843"]]
TRANSACTION (0.1ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Role Load (0.1ms)  SELECT "roles".* FROM "roles" WHERE "roles"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
QuestionType Load (0.0ms)  SELECT "question_types".* FROM "question_types" WHERE "question_types"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Survey Create (0.1ms)  INSERT INTO "surveys" ("name", "description", "expiration_date", "semester", "created_at", "updated_at", "role_id") VALUES (?, ?, ?, ?, ?, ?, ?)  [["name", "Questionário 2"], ["description", "this is a test survey"], ["expiration_date", "2028-06-21 15:15:50"], ["semester", "2021/2"], ["created_at", "2023-02-17 19:43:03.959221"], ["updated_at", "2023-02-17 19:43:03.959221"], ["role_id", 2]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sugestões ou comentários adicionais para esta disciplina."], ["question_number", 1], ["optional", 1], ["survey_id", 2], ["question_type_id", 1], ["created_at", "2023-02-17 19:43:03.960431"], ["updated_at", "2023-02-17 19:43:03.960431"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Uma pergunta múltipla escolha."], ["question_number", 2], ["optional", 0], ["survey_id", 2], ["question_type_id", 2], ["created_at", "2023-02-17 19:43:03.961300"], ["updated_at", "2023-02-17 19:43:03.961300"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 1], ["content", "option 1"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.962163"], ["updated_at", "2023-02-17 19:43:03.962163"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 2], ["content", "option 2"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.962900"], ["updated_at", "2023-02-17 19:43:03.962900"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 3], ["content", "option 3"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.963562"], ["updated_at", "2023-02-17 19:43:03.963562"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 4], ["content", "option 4"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.964220"], ["updated_at", "2023-02-17 19:43:03.964220"]]
QuestionOption Create (0.1ms)  INSERT INTO "question_options" ("option_number", "content", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["option_number", 5], ["content", "option 5"], ["survey_question_id", 5], ["created_at", "2023-02-17 19:43:03.964878"], ["updated_at", "2023-02-17 19:43:03.964878"]]
SurveyQuestion Create (0.1ms)  INSERT INTO "survey_questions" ("question", "question_number", "optional", "survey_id", "question_type_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?)  [["question", "Sobre o ensino da disciplina/turma, julgue cada item e marque a coluna correspondente ao valor de seu julgamento."], ["question_number", 3], ["optional", 0], ["survey_id", 2], ["question_type_id", 3], ["created_at", "2023-02-17 19:43:03.965613"], ["updated_at", "2023-02-17 19:43:03.965613"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor apresentou o plano de ensino de maneira clara e coerente com a ementa."], ["question_number", 1], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.966524"], ["updated_at", "2023-02-17 19:43:03.966524"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor foi efetivo na comunicação com os estudantes (clareza nos objetivos e estratégias didáticas)."], ["question_number", 2], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.967295"], ["updated_at", "2023-02-17 19:43:03.967295"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos síncronos."], ["question_number", 3], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.968018"], ["updated_at", "2023-02-17 19:43:03.968018"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou preferencialmente recursos didáticos assíncronos."], ["question_number", 4], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.968717"], ["updated_at", "2023-02-17 19:43:03.968717"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias didáticas da disciplina foram efetivas para aprendizagem."], ["question_number", 5], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.969431"], ["updated_at", "2023-02-17 19:43:03.969431"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "A bibliografia básica da disciplina estava disponível para acesso online."], ["question_number", 6], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.970148"], ["updated_at", "2023-02-17 19:43:03.970148"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Tive curiosidade ou interesse na disciplina."], ["question_number", 7], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.970861"], ["updated_at", "2023-02-17 19:43:03.970861"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 8], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.971568"], ["updated_at", "2023-02-17 19:43:03.971568"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "As estratégias adotadas foram efetivas para o meu engajamento na disciplina."], ["question_number", 9], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.972267"], ["updated_at", "2023-02-17 19:43:03.972267"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O apoio pedagógico do professor e/ou monitor(es) foi efetivo para a disciplina."], ["question_number", 10], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.972983"], ["updated_at", "2023-02-17 19:43:03.972983"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "O professor utilizou recursos diversificados de mídias digitais (áudio, vídeo, podcast, etc.)."], ["question_number", 11], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.973703"], ["updated_at", "2023-02-17 19:43:03.973703"]]
LikertScaleQuestion Create (0.1ms)  INSERT INTO "likert_scale_questions" ("question", "question_number", "scale_points", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?)  [["question", "Os materiais disponibilizados fizeram uso de linguagem clara e coerente com os objetivos da disciplina."], ["question_number", 12], ["scale_points", 5], ["survey_question_id", 6], ["created_at", "2023-02-17 19:43:03.974408"], ["updated_at", "2023-02-17 19:43:03.974408"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 1], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:03.989627"], ["updated_at", "2023-02-17 19:43:03.989627"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 1], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:03.990682"], ["updated_at", "2023-02-17 19:43:03.990682"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 1], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:03.991501"], ["updated_at", "2023-02-17 19:43:03.991501"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 1], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:03.992202"], ["updated_at", "2023-02-17 19:43:03.992202"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.992962"], ["updated_at", "2023-02-17 19:43:03.992962"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.993722"], ["updated_at", "2023-02-17 19:43:03.993722"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.994401"], ["updated_at", "2023-02-17 19:43:03.994401"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.995069"], ["updated_at", "2023-02-17 19:43:03.995069"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.995725"], ["updated_at", "2023-02-17 19:43:03.995725"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.996389"], ["updated_at", "2023-02-17 19:43:03.996389"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 7], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.997074"], ["updated_at", "2023-02-17 19:43:03.997074"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 8], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.997735"], ["updated_at", "2023-02-17 19:43:03.997735"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 9], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.998397"], ["updated_at", "2023-02-17 19:43:03.998397"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.999084"], ["updated_at", "2023-02-17 19:43:03.999084"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:03.999836"], ["updated_at", "2023-02-17 19:43:03.999836"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 12], ["question_answer_id", 3], ["created_at", "2023-02-17 19:43:04.000544"], ["updated_at", "2023-02-17 19:43:04.000544"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.6ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 2], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:04.016213"], ["updated_at", "2023-02-17 19:43:04.016213"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 2], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:04.017761"], ["updated_at", "2023-02-17 19:43:04.017761"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "1"], ["survey_answer_id", 2], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:04.018605"], ["updated_at", "2023-02-17 19:43:04.018605"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 2], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:04.019309"], ["updated_at", "2023-02-17 19:43:04.019309"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.020053"], ["updated_at", "2023-02-17 19:43:04.020053"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 2], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.020770"], ["updated_at", "2023-02-17 19:43:04.020770"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 3], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.021452"], ["updated_at", "2023-02-17 19:43:04.021452"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 4], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.022103"], ["updated_at", "2023-02-17 19:43:04.022103"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.022767"], ["updated_at", "2023-02-17 19:43:04.022767"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.023447"], ["updated_at", "2023-02-17 19:43:04.023447"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 7], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.024115"], ["updated_at", "2023-02-17 19:43:04.024115"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 8], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.024779"], ["updated_at", "2023-02-17 19:43:04.024779"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.025457"], ["updated_at", "2023-02-17 19:43:04.025457"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.026624"], ["updated_at", "2023-02-17 19:43:04.026624"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.027577"], ["updated_at", "2023-02-17 19:43:04.027577"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 6], ["created_at", "2023-02-17 19:43:04.028367"], ["updated_at", "2023-02-17 19:43:04.028367"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 3], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:04.043501"], ["updated_at", "2023-02-17 19:43:04.043501"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 3], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:04.044479"], ["updated_at", "2023-02-17 19:43:04.044479"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "4"], ["survey_answer_id", 3], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:04.045403"], ["updated_at", "2023-02-17 19:43:04.045403"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 3], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:04.046161"], ["updated_at", "2023-02-17 19:43:04.046161"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 1], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.046903"], ["updated_at", "2023-02-17 19:43:04.046903"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.047593"], ["updated_at", "2023-02-17 19:43:04.047593"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.048292"], ["updated_at", "2023-02-17 19:43:04.048292"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 4], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.049010"], ["updated_at", "2023-02-17 19:43:04.049010"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 5], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.049775"], ["updated_at", "2023-02-17 19:43:04.049775"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 6], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.050600"], ["updated_at", "2023-02-17 19:43:04.050600"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.051306"], ["updated_at", "2023-02-17 19:43:04.051306"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.051978"], ["updated_at", "2023-02-17 19:43:04.051978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 9], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.052647"], ["updated_at", "2023-02-17 19:43:04.052647"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 10], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.053326"], ["updated_at", "2023-02-17 19:43:04.053326"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.053978"], ["updated_at", "2023-02-17 19:43:04.053978"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 9], ["created_at", "2023-02-17 19:43:04.054650"], ["updated_at", "2023-02-17 19:43:04.054650"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.1ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
Cclass Load (0.1ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 4], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:04.072618"], ["updated_at", "2023-02-17 19:43:04.072618"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 4], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:04.073649"], ["updated_at", "2023-02-17 19:43:04.073649"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "2"], ["survey_answer_id", 4], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:04.074428"], ["updated_at", "2023-02-17 19:43:04.074428"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 4], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:04.075119"], ["updated_at", "2023-02-17 19:43:04.075119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.075881"], ["updated_at", "2023-02-17 19:43:04.075881"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 2], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.076585"], ["updated_at", "2023-02-17 19:43:04.076585"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 3], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.077268"], ["updated_at", "2023-02-17 19:43:04.077268"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.078097"], ["updated_at", "2023-02-17 19:43:04.078097"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 5], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.079119"], ["updated_at", "2023-02-17 19:43:04.079119"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 6], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.079858"], ["updated_at", "2023-02-17 19:43:04.079858"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 7], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.080529"], ["updated_at", "2023-02-17 19:43:04.080529"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.081207"], ["updated_at", "2023-02-17 19:43:04.081207"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.081863"], ["updated_at", "2023-02-17 19:43:04.081863"]]
LikertScaleAnswer Create (0.4ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 10], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.082551"], ["updated_at", "2023-02-17 19:43:04.082551"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 11], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.083634"], ["updated_at", "2023-02-17 19:43:04.083634"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 12], ["question_answer_id", 12], ["created_at", "2023-02-17 19:43:04.084360"], ["updated_at", "2023-02-17 19:43:04.084360"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.1ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 5], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:04.101230"], ["updated_at", "2023-02-17 19:43:04.101230"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 5], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:04.102258"], ["updated_at", "2023-02-17 19:43:04.102258"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 5], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:04.102980"], ["updated_at", "2023-02-17 19:43:04.102980"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 5], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:04.103659"], ["updated_at", "2023-02-17 19:43:04.103659"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 1], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.104912"], ["updated_at", "2023-02-17 19:43:04.104912"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 2], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.105895"], ["updated_at", "2023-02-17 19:43:04.105895"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.106623"], ["updated_at", "2023-02-17 19:43:04.106623"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 4], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.107311"], ["updated_at", "2023-02-17 19:43:04.107311"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 1], ["likert_scale_question_id", 5], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.107976"], ["updated_at", "2023-02-17 19:43:04.107976"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 6], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.108645"], ["updated_at", "2023-02-17 19:43:04.108645"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.109368"], ["updated_at", "2023-02-17 19:43:04.109368"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 8], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.110067"], ["updated_at", "2023-02-17 19:43:04.110067"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.110728"], ["updated_at", "2023-02-17 19:43:04.110728"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 10], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.111477"], ["updated_at", "2023-02-17 19:43:04.111477"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 11], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.112531"], ["updated_at", "2023-02-17 19:43:04.112531"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 15], ["created_at", "2023-02-17 19:43:04.113409"], ["updated_at", "2023-02-17 19:43:04.113409"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1
TRANSACTION (0.1ms)  SAVEPOINT active_record_1
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys" WHERE "surveys"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
Member Load (0.0ms)  SELECT "members".* FROM "members" WHERE "members"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
Cclass Load (0.0ms)  SELECT "cclasses".* FROM "cclasses" WHERE "cclasses"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.0ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
SurveyQuestion Load (0.1ms)  SELECT "survey_questions".* FROM "survey_questions" WHERE "survey_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 2], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 3], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 4], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 5], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 6], ["LIMIT", 1]]
LikertScaleQuestion Load (0.0ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 7], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 8], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 9], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 10], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 11], ["LIMIT", 1]]
LikertScaleQuestion Load (0.1ms)  SELECT "likert_scale_questions".* FROM "likert_scale_questions" WHERE "likert_scale_questions"."id" = ? LIMIT ?  [["id", 12], ["LIMIT", 1]]
SurveyAnswer Create (0.2ms)  INSERT INTO "survey_answers" ("survey_id", "member_id", "cclass_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["survey_id", 1], ["member_id", 6], ["cclass_id", 1], ["created_at", "2023-02-17 19:43:04.130489"], ["updated_at", "2023-02-17 19:43:04.130489"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "Adorei essa disciplina!!!"], ["survey_answer_id", 6], ["survey_question_id", 1], ["created_at", "2023-02-17 19:43:04.131532"], ["updated_at", "2023-02-17 19:43:04.131532"]]
QuestionAnswer Create (0.2ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", "3"], ["survey_answer_id", 6], ["survey_question_id", 2], ["created_at", "2023-02-17 19:43:04.132442"], ["updated_at", "2023-02-17 19:43:04.132442"]]
QuestionAnswer Create (0.1ms)  INSERT INTO "question_answers" ("answer", "survey_answer_id", "survey_question_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", nil], ["survey_answer_id", 6], ["survey_question_id", 3], ["created_at", "2023-02-17 19:43:04.133630"], ["updated_at", "2023-02-17 19:43:04.133630"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 1], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.134627"], ["updated_at", "2023-02-17 19:43:04.134627"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 2], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.135386"], ["updated_at", "2023-02-17 19:43:04.135386"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 3], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.136106"], ["updated_at", "2023-02-17 19:43:04.136106"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 4], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.136798"], ["updated_at", "2023-02-17 19:43:04.136798"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 5], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.137472"], ["updated_at", "2023-02-17 19:43:04.137472"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 6], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.138145"], ["updated_at", "2023-02-17 19:43:04.138145"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 4], ["likert_scale_question_id", 7], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.138822"], ["updated_at", "2023-02-17 19:43:04.138822"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 8], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.139501"], ["updated_at", "2023-02-17 19:43:04.139501"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 5], ["likert_scale_question_id", 9], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.140187"], ["updated_at", "2023-02-17 19:43:04.140187"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 2], ["likert_scale_question_id", 10], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.140863"], ["updated_at", "2023-02-17 19:43:04.140863"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 11], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.141531"], ["updated_at", "2023-02-17 19:43:04.141531"]]
LikertScaleAnswer Create (0.1ms)  INSERT INTO "likert_scale_answers" ("answer", "likert_scale_question_id", "question_answer_id", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)  [["answer", 3], ["likert_scale_question_id", 12], ["question_answer_id", 18], ["created_at", "2023-02-17 19:43:04.142212"], ["updated_at", "2023-02-17 19:43:04.142212"]]
TRANSACTION (0.0ms)  RELEASE SAVEPOINT active_record_1

Started GET “/subjects/1” for 127.0.0.1 at 2023-02-17 16:43:04 -0300 Processing by SubjectsController#show as HTML

Parameters: {"id"=>"1"}
Subject Load (0.1ms)  SELECT "subjects".* FROM "subjects" WHERE "subjects"."id" = ? LIMIT ?  [["id", 1], ["LIMIT", 1]]

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.1ms | Allocations: 364)

TRANSACTION (0.2ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys” for 127.0.0.1 at 2023-02-17 16:43:04 -0300 Processing by SurveysController#index as JSON

Parameters: {"survey"=>{}}
Survey Load (0.2ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.2ms | Allocations: 212)

TRANSACTION (0.1ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction

Started GET “/surveys/open” for 127.0.0.1 at 2023-02-17 16:43:04 -0300 Processing by SurveysController#open as JSON

Parameters: {"survey"=>{}}
Survey Load (0.1ms)  SELECT "surveys".* FROM "surveys"

Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms | Allocations: 180)

Survey Load (0.0ms)  SELECT "surveys".* FROM "surveys"
TRANSACTION (0.0ms)  rollback transaction
TRANSACTION (0.0ms)  begin transaction
TRANSACTION (0.1ms)  rollback transaction
 (1.0ms)  SELECT sqlite_version(*)
ActiveRecord::InternalMetadata Pluck (0.2ms)  SELECT "ar_internal_metadata"."value" FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ?  [["key", "schema_sha1"], ["LIMIT", 1]]
 (0.1ms)  SELECT sqlite_version(*)
ActiveRecord::SchemaMigration Pluck (0.1ms)  SELECT "schema_migrations"."version" FROM "schema_migrations" ORDER BY "schema_migrations"."version" ASC